diff --git a/Proposal.txt b/Proposal.txt new file mode 100644 index 0000000..803ce02 --- /dev/null +++ b/Proposal.txt @@ -0,0 +1,24 @@ +Sean Kee +Final Project Proposal + +For my final project, I want to try and make an old school type game. As a stretch goal, I would like to try and implement a GUI. If all else fails, I will attempt to make it with ascii text. The game will be sort of like a recreation of asteroids, where the goal is to destroy the asteroids in a little space ship. Would also like to try to have enemy AI instead of just asteroids. + +**Will be trying to use SDL library for graphical interface. + +Variables/data types, obviously to store different game information and data. Will probably need to use structs to code say the asteroids. + +Input/Output, one way or another, I am going to have to try and use unbuffered input. Whether it be GUI or ASCII, I need a way for the program to detect arrow key movements and whatnot. + +Conditional statements, will use these to test if the asteroid hit the ship, etc. + +Arrays/Strings, Will need to use strings to display various texts, using pointers to send variables over by reference. + +Advanced Data Types, as stated before, will probably need to use structs to code certain pieces of the game that would require a "form." I do not believe I will have a use fo enums. + + +I have multiple reasons for picking this project. +a) I have always been interested in game design. +b) I really want to test and see how far I can go with pretty much only 2 weeks of actual coding classes, not scratch and dingy "self taught" python. +c) As for the AI, I've been interested in AI for things such as Unmanned Aerial Vehicals. This also includes things such as machine learning. + + diff --git a/README.md b/README.md index b77846e..057b792 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,78 @@ -# Final Project +# Astroshark +## Sean Kee -## Objectives -To review and implement concepts learned from class in a self-designed program. +### Instructions -### Description -You will design, propose, and implement a project of your own choosing. Your project must implement or include each of the following concepts: - - Variables/data types - - Input/output - - Conditional statements - - Loops - - Functions - - Arrays/strings (either directly or as a pointer) - - Advanced data types (structures and enumerated lists)
+Clone entire repository -- MUST HAVE ALL FILES -- + - git clone https://github.com/MrSkee/FinalProject.git -Your program must be well-commented and provide the user with information on how to use your program. Interaction with the program should be specified within the program as well as within a readme.txt document. Rules for games should also be included in the readme.txt document. -Additionally, your code must be written efficiently and handle invalid user input appropriately. This means that if you have the user enter a number, and the user enters a string or a character, your program should not crash, go into an infinite loop, or produce anything outside of the expected functionality. +Must install SDL and SDL_tff. + - Go into SDL Directory + - type the command './configure; make; make install' -Examples of projects include (but are not limited to): game simulators (board games, battle arena, other games), text adventure games, artificial intelligence applications, etc. +sudo apt-get install these: + - libsdl2-2.0-0 + - libsdl2-dbg + - libsdl2-dev + - libsdl2-image-2.0.0 + - libsdl2-image-dbg + - libsdl2-image-dev -Note: There may be functionality you wish to include in your project that we have not gone over yet in class. You can check with your instructor (me) or your TA (Lesley) to see if we intend to go over it or if it is possible. You may wish to temporarily hardcode data, functionality, etc. until we go over it. Your final code for those sections should not be hardcoded. +If opening code, use sublime or a text editor that's NOT vim. -### Part 1: Proposal -You must submit a proposal that details the following: - - Descriptive overview of project (what it does, what game it implements/simulates, etc). This should be long enough to explain what your program is and what it does/does not do. - - Detailed examples of concept implementation (an example each of how you will use functions, loops, etc.). You do not need to explain how you will use variables or input/output unless it is not inherently obvious. - - Your reasons for picking this project (you are interested in game design and wanted to create a game, you think the application is interesting and why, etc.). +Compile command: +gcc astroshark.c -o astroshark -lm -l SDL2 -l SDL2_image -### Part 2: Project Implementation -You must implement the project as described in your proposal and conforming to the expectations in the Description section. +### How to play +W - Move Forward +A - Strafe Left +S - Reverse +D - Strafe Right +SPACE - Shoot +Left Arrow - Rotate Left +Right Arrow - Rotate Right -Functions and large code blocks should be documented (have comments briefly explaining their purpose, as well as any parameters or return values, if applicable). +DO NOT CLOSE GAME FROM COMMAND PROMPT. EXIT GAME PROPERLY BY HITTING THE "X" ADJACENT TO THE WINDOW TITLE. -You must include a readme.txt detailing how to run your project, a brief overview of what it does, and a brief explanation of interaction with the program (e.g. “You may enter commands at the >> prompt. For help/suggestions of commands to enter at any time, type ‘help’.” for a text adventure game). If your project is a game or game simulator, you should also include any rules as applicable (e.g. “Go Fish is a game of matching cards. If you suggest a card your opponent has, he/she must give you that card. Likewise, if the opponent asks for a card you have, you must give him/her that card. If no card matches, player draws from the pile. Otherwise, players continue asking for cards until they ask for a card no one has.”). +### Main Goals + ~~- Create operational window~~ + ~~* Operating close window button~~ + ~~*Create boundaries~~ + ~~- Create functional space ship~~ + ~~* Movement with WASD and rotation with arrow keys~~ +~~- Create asteroids to shoot at, using random generation~~ + ~~* Random asteroid spawn location, with random velocity~~ +~~* Gets destroyed when hit by laser~~ + ~~- Create bullets/lasers~~ -### Deliverables -Your proposal should be submitted by 10am on Monday, July 11, 2016. It will either be approved or modification requested by Monday night. Note that if you submit your proposal early, it will likely be evaluated early, and you will be able to begin work on your project as soon as it is approved. Your proposal should be in a .doc, .pdf, or .txt document. +### Secondary Goals + - Create separate sprites for different things + - Enemy AI + - Create menu system + * Main menu + * Pause menu + * Options + - Realistic control system simulating actual space flight (acceleration etc.) + * Fix rotation center + * Add acceleration and "realistic" motion + * Mouse functionality + - Powerups + * Ultimate Shark mode(god) + * Double shoot + - Clean Up + * Audio (SFX) + * Better sprites + ~~- Create Scoring System~~ -Your project is due Friday, July 15, 2016 at 4pm. Please submit ALL files (source code, external libraries, data files, and executable). +### Additional Comments +Even though we did not go over any GUI, I chose this project mainly to see if I could actually do it. With really no "real" prior programming, I completely underestimated the amount of time and work it would take to accomplish such a project. That being said, all the goals I did not reach were essentially due to the lack of time. The only real resource I was able to find to help me was the wiki on SDL. Other than that, everyone else on the internet seemed to think it was a good idea to completely drop C and use C++, so essentially there were few possible sources. All the algorithms used in my program to calculate different things were not taken from any source, and were created by me. Anything related to SDL in terms of general usage, I referred to the wiki. + + +Note: Any large chunks of code that are commented out are additional features that are either not complete or do not yet fully work. The core mechanics of the game work just fine. + + +### References +https://wiki.libsdl.org/ +http://www.cplusplus.com/reference/cmath/sin/ diff --git a/SDL/.hg/00changelog.i b/SDL/.hg/00changelog.i new file mode 100644 index 0000000..d3a8311 Binary files /dev/null and b/SDL/.hg/00changelog.i differ diff --git a/SDL/.hg/branch b/SDL/.hg/branch new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/SDL/.hg/branch @@ -0,0 +1 @@ +default diff --git a/SDL/.hg/cache/branchheads-served b/SDL/.hg/cache/branchheads-served new file mode 100644 index 0000000..b110a68 --- /dev/null +++ b/SDL/.hg/cache/branchheads-served @@ -0,0 +1,19 @@ +4c5c73f91e49f68162b7eea0d50de9dbfc015311 10191 +e49caa693be528cbd200b3868392c9d2d83c03e4 SDL-1.2 +2e253188dcd2148f595b30a52abdf53e56e3aa39 SDL-1.2-olpc +06be4b33029d9e4012380084dd37dc1730062921 SDL-1.3 +2bf2dee62ea78891c2d412d7bbabfd6c37782216 SDL-ryan-multiple-audio-device +43b742ab3deb3724784e2346a8619357f1a9a4ef apk +f2d8e0b59ccac6688e7a5c89399f7c842507968e default +9b97d5eabe551ae3d9afd73669ea5c812d4d4ad3 default +4c5c73f91e49f68162b7eea0d50de9dbfc015311 default +b95bb58b703af987349d3603a7d008e11a061d7a experimental +14a08e45a4d36b93c8db8f850f483316c2f3ae25 gsoc2008_audio_resampling +119b676a2600d56045c30dd8123e66ad102649f9 gsoc2008_force_feedback +6f025b97c55c675b335c708414de782ee7347fec gsoc2008_iphone +c62835c40174a087d0082bf6e52103d6d6f02c27 gsoc2008_manymouse +e2188009f029855da921a041bbcf95303ca509cc gsoc2008_nds +21196203ffa418741817dbea53ad8913edd68784 gsoc2009_IME +ab53c78e0f3bb72ddeacb70e2183153e18bbb8c0 gsoc2009_ps3 +c5616d36b2ac4723906170b4608a0ad49f1f98d9 gsoc2009_unit_tests +618662dc9e82a2127db37539fe7c1bb90efebd45 iOS-improvements diff --git a/SDL/.hg/dirstate b/SDL/.hg/dirstate new file mode 100644 index 0000000..c0daba4 Binary files /dev/null and b/SDL/.hg/dirstate differ diff --git a/SDL/.hg/hgrc b/SDL/.hg/hgrc new file mode 100644 index 0000000..9c1ee6c --- /dev/null +++ b/SDL/.hg/hgrc @@ -0,0 +1,2 @@ +[paths] +default = https://hg.libsdl.org/SDL diff --git a/SDL/.hg/requires b/SDL/.hg/requires new file mode 100644 index 0000000..f634f66 --- /dev/null +++ b/SDL/.hg/requires @@ -0,0 +1,4 @@ +dotencode +fncache +revlogv1 +store diff --git a/SDL/.hg/store/00changelog.d b/SDL/.hg/store/00changelog.d new file mode 100644 index 0000000..b3e1345 Binary files /dev/null and b/SDL/.hg/store/00changelog.d differ diff --git a/SDL/.hg/store/00changelog.i b/SDL/.hg/store/00changelog.i new file mode 100644 index 0000000..d51b304 Binary files /dev/null and b/SDL/.hg/store/00changelog.i differ diff --git a/SDL/.hg/store/00manifest.d b/SDL/.hg/store/00manifest.d new file mode 100644 index 0000000..6e6e492 Binary files /dev/null and b/SDL/.hg/store/00manifest.d differ diff --git a/SDL/.hg/store/00manifest.i b/SDL/.hg/store/00manifest.i new file mode 100644 index 0000000..362e1c1 Binary files /dev/null and b/SDL/.hg/store/00manifest.i differ diff --git a/SDL/.hg/store/data/_android.mk.i b/SDL/.hg/store/data/_android.mk.i new file mode 100644 index 0000000..dc7340f Binary files /dev/null and b/SDL/.hg/store/data/_android.mk.i differ diff --git a/SDL/.hg/store/data/_b_u_g_s.i b/SDL/.hg/store/data/_b_u_g_s.i new file mode 100644 index 0000000..c54a1e0 Binary files /dev/null and b/SDL/.hg/store/data/_b_u_g_s.i differ diff --git a/SDL/.hg/store/data/_b_u_g_s.txt.i b/SDL/.hg/store/data/_b_u_g_s.txt.i new file mode 100644 index 0000000..46576fa Binary files /dev/null and b/SDL/.hg/store/data/_b_u_g_s.txt.i differ diff --git a/SDL/.hg/store/data/_borland.html.i b/SDL/.hg/store/data/_borland.html.i new file mode 100644 index 0000000..8e8fe9d Binary files /dev/null and b/SDL/.hg/store/data/_borland.html.i differ diff --git a/SDL/.hg/store/data/_borland.zip.d b/SDL/.hg/store/data/_borland.zip.d new file mode 100644 index 0000000..b6a4002 Binary files /dev/null and b/SDL/.hg/store/data/_borland.zip.d differ diff --git a/SDL/.hg/store/data/_borland.zip.i b/SDL/.hg/store/data/_borland.zip.i new file mode 100644 index 0000000..44b7fea Binary files /dev/null and b/SDL/.hg/store/data/_borland.zip.i differ diff --git a/SDL/.hg/store/data/_borland_c.html.i b/SDL/.hg/store/data/_borland_c.html.i new file mode 100644 index 0000000..22a3f22 Binary files /dev/null and b/SDL/.hg/store/data/_borland_c.html.i differ diff --git a/SDL/.hg/store/data/_c_make_lists.txt.i b/SDL/.hg/store/data/_c_make_lists.txt.i new file mode 100644 index 0000000..503c00b Binary files /dev/null and b/SDL/.hg/store/data/_c_make_lists.txt.i differ diff --git a/SDL/.hg/store/data/_c_o_p_y_i_n_g.i b/SDL/.hg/store/data/_c_o_p_y_i_n_g.i new file mode 100644 index 0000000..f3f7a9d Binary files /dev/null and b/SDL/.hg/store/data/_c_o_p_y_i_n_g.i differ diff --git a/SDL/.hg/store/data/_c_o_p_y_i_n_g.txt.i b/SDL/.hg/store/data/_c_o_p_y_i_n_g.txt.i new file mode 100644 index 0000000..55efa7d Binary files /dev/null and b/SDL/.hg/store/data/_c_o_p_y_i_n_g.txt.i differ diff --git a/SDL/.hg/store/data/_c_r_e_d_i_t_s.i b/SDL/.hg/store/data/_c_r_e_d_i_t_s.i new file mode 100644 index 0000000..1cc4227 Binary files /dev/null and b/SDL/.hg/store/data/_c_r_e_d_i_t_s.i differ diff --git a/SDL/.hg/store/data/_c_r_e_d_i_t_s.txt.i b/SDL/.hg/store/data/_c_r_e_d_i_t_s.txt.i new file mode 100644 index 0000000..64c9f82 Binary files /dev/null and b/SDL/.hg/store/data/_c_r_e_d_i_t_s.txt.i differ diff --git a/SDL/.hg/store/data/_c_wprojects.sea.bin.d b/SDL/.hg/store/data/_c_wprojects.sea.bin.d new file mode 100644 index 0000000..c589087 Binary files /dev/null and b/SDL/.hg/store/data/_c_wprojects.sea.bin.d differ diff --git a/SDL/.hg/store/data/_c_wprojects.sea.bin.i b/SDL/.hg/store/data/_c_wprojects.sea.bin.i new file mode 100644 index 0000000..92eee5e Binary files /dev/null and b/SDL/.hg/store/data/_c_wprojects.sea.bin.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/_g_l_i_m_m.sln.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/_g_l_i_m_m.sln.i new file mode 100644 index 0000000..51cbda5 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/_g_l_i_m_m.sln.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/_g_l_i_m_m.vcproj.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/_g_l_i_m_m.vcproj.i new file mode 100644 index 0000000..5035d0f Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/_g_l_i_m_m.vcproj.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_app.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_app.hpp.i new file mode 100644 index 0000000..f62fd81 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_app.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_i_m_m.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_i_m_m.hpp.i new file mode 100644 index 0000000..8cbad0c Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_i_m_m.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_video___mode.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_video___mode.hpp.i new file mode 100644 index 0000000..89a011a Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_video___mode.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_window.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_window.hpp.i new file mode 100644 index 0000000..57e632a Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_window.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_window___listener.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_window___listener.hpp.i new file mode 100644 index 0000000..7552573 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/include/_window___listener.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_app.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_app.cpp.i new file mode 100644 index 0000000..918e0b6 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_app.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_i_m_m.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_i_m_m.cpp.i new file mode 100644 index 0000000..381eeba Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_i_m_m.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_main.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_main.cpp.i new file mode 100644 index 0000000..17b69d8 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_main.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_video___mode.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_video___mode.cpp.i new file mode 100644 index 0000000..f24cde8 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_video___mode.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_window.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_window.cpp.i new file mode 100644 index 0000000..edcc618 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_i_m_m/src/_window.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.sln.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.sln.i new file mode 100644 index 0000000..f092359 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.sln.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcproj.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcproj.i new file mode 100644 index 0000000..7068cc3 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcproj.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcxproj.filters.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcxproj.filters.i new file mode 100644 index 0000000..1c54543 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcxproj.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcxproj.i new file mode 100644 index 0000000..e666e8a Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f.vcxproj.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f__vs2008.sln.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f__vs2008.sln.i new file mode 100644 index 0000000..b71882f Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/_g_l_t_s_f__vs2008.sln.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_app.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_app.hpp.i new file mode 100644 index 0000000..eba2fb4 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_app.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_t_s_f.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_t_s_f.hpp.i new file mode 100644 index 0000000..870b40b Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_t_s_f.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_video___mode.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_video___mode.hpp.i new file mode 100644 index 0000000..bf7a646 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_video___mode.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_window.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_window.hpp.i new file mode 100644 index 0000000..cb36b06 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_window.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_window___listener.hpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_window___listener.hpp.i new file mode 100644 index 0000000..5426a66 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/include/_window___listener.hpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_app.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_app.cpp.i new file mode 100644 index 0000000..0c5ec7a Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_app.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_main.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_main.cpp.i new file mode 100644 index 0000000..b3def1c Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_main.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_t_s_f.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_t_s_f.cpp.i new file mode 100644 index 0000000..ed9279a Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_t_s_f.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_video___mode.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_video___mode.cpp.i new file mode 100644 index 0000000..9656993 Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_video___mode.cpp.i differ diff --git a/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_window.cpp.i b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_window.cpp.i new file mode 100644 index 0000000..75f66bc Binary files /dev/null and b/SDL/.hg/store/data/_e_x_c_l_u_d_e/_g_l_t_s_f/src/_window.cpp.i differ diff --git a/SDL/.hg/store/data/_epoc_build_files.zip.i b/SDL/.hg/store/data/_epoc_build_files.zip.i new file mode 100644 index 0000000..3a37f0c Binary files /dev/null and b/SDL/.hg/store/data/_epoc_build_files.zip.i differ diff --git a/SDL/.hg/store/data/_i_n_s_t_a_l_l.i b/SDL/.hg/store/data/_i_n_s_t_a_l_l.i new file mode 100644 index 0000000..36e2341 Binary files /dev/null and b/SDL/.hg/store/data/_i_n_s_t_a_l_l.i differ diff --git a/SDL/.hg/store/data/_i_n_s_t_a_l_l.txt.i b/SDL/.hg/store/data/_i_n_s_t_a_l_l.txt.i new file mode 100644 index 0000000..77b92af Binary files /dev/null and b/SDL/.hg/store/data/_i_n_s_t_a_l_l.txt.i differ diff --git a/SDL/.hg/store/data/_m_p_wmake.sea.bin.i b/SDL/.hg/store/data/_m_p_wmake.sea.bin.i new file mode 100644 index 0000000..d32f564 Binary files /dev/null and b/SDL/.hg/store/data/_m_p_wmake.sea.bin.i differ diff --git a/SDL/.hg/store/data/_makefile.am.i b/SDL/.hg/store/data/_makefile.am.i new file mode 100644 index 0000000..e9097e9 Binary files /dev/null and b/SDL/.hg/store/data/_makefile.am.i differ diff --git a/SDL/.hg/store/data/_makefile.android.i b/SDL/.hg/store/data/_makefile.android.i new file mode 100644 index 0000000..7722d63 Binary files /dev/null and b/SDL/.hg/store/data/_makefile.android.i differ diff --git a/SDL/.hg/store/data/_makefile.dc.i b/SDL/.hg/store/data/_makefile.dc.i new file mode 100644 index 0000000..0925047 Binary files /dev/null and b/SDL/.hg/store/data/_makefile.dc.i differ diff --git a/SDL/.hg/store/data/_makefile.ds.i b/SDL/.hg/store/data/_makefile.ds.i new file mode 100644 index 0000000..199705f Binary files /dev/null and b/SDL/.hg/store/data/_makefile.ds.i differ diff --git a/SDL/.hg/store/data/_makefile.in.i b/SDL/.hg/store/data/_makefile.in.i new file mode 100644 index 0000000..f4a2928 Binary files /dev/null and b/SDL/.hg/store/data/_makefile.in.i differ diff --git a/SDL/.hg/store/data/_makefile.minimal.i b/SDL/.hg/store/data/_makefile.minimal.i new file mode 100644 index 0000000..7c73eca Binary files /dev/null and b/SDL/.hg/store/data/_makefile.minimal.i differ diff --git a/SDL/.hg/store/data/_makefile.pandora.i b/SDL/.hg/store/data/_makefile.pandora.i new file mode 100644 index 0000000..b536cb2 Binary files /dev/null and b/SDL/.hg/store/data/_makefile.pandora.i differ diff --git a/SDL/.hg/store/data/_makefile.psp.i b/SDL/.hg/store/data/_makefile.psp.i new file mode 100644 index 0000000..67bb25c Binary files /dev/null and b/SDL/.hg/store/data/_makefile.psp.i differ diff --git a/SDL/.hg/store/data/_makefile.wiz.i b/SDL/.hg/store/data/_makefile.wiz.i new file mode 100644 index 0000000..0ec5b40 Binary files /dev/null and b/SDL/.hg/store/data/_makefile.wiz.i differ diff --git a/SDL/.hg/store/data/_n_o_t_e_s.i b/SDL/.hg/store/data/_n_o_t_e_s.i new file mode 100644 index 0000000..28b6274 Binary files /dev/null and b/SDL/.hg/store/data/_n_o_t_e_s.i differ diff --git a/SDL/.hg/store/data/_p_b_projects.tar.gz.d b/SDL/.hg/store/data/_p_b_projects.tar.gz.d new file mode 100644 index 0000000..689004c Binary files /dev/null and b/SDL/.hg/store/data/_p_b_projects.tar.gz.d differ diff --git a/SDL/.hg/store/data/_p_b_projects.tar.gz.i b/SDL/.hg/store/data/_p_b_projects.tar.gz.i new file mode 100644 index 0000000..9dd283e Binary files /dev/null and b/SDL/.hg/store/data/_p_b_projects.tar.gz.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-_s_d_l.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-_s_d_l.txt.i new file mode 100644 index 0000000..bbd30f2 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-_s_d_l.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-android.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-android.txt.i new file mode 100644 index 0000000..5d8fa07 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-android.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-cmake.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-cmake.txt.i new file mode 100644 index 0000000..c311a27 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-cmake.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-directfb.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-directfb.txt.i new file mode 100644 index 0000000..d900b93 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-directfb.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-dynapi.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-dynapi.txt.i new file mode 100644 index 0000000..8b5b3e7 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-dynapi.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-gesture.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-gesture.txt.i new file mode 100644 index 0000000..84af438 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-gesture.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-hg.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-hg.txt.i new file mode 100644 index 0000000..61634ae Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-hg.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-ios.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-ios.txt.i new file mode 100644 index 0000000..1eda548 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-ios.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-linux.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-linux.txt.i new file mode 100644 index 0000000..395523e Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-linux.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-macosx.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-macosx.txt.i new file mode 100644 index 0000000..cff2cf4 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-macosx.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-nacl.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-nacl.txt.i new file mode 100644 index 0000000..d4200ff Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-nacl.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-pandora.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-pandora.txt.i new file mode 100644 index 0000000..418e74f Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-pandora.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-platforms.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-platforms.txt.i new file mode 100644 index 0000000..51433a4 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-platforms.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-porting.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-porting.txt.i new file mode 100644 index 0000000..6c9c9e5 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-porting.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-psp.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-psp.txt.i new file mode 100644 index 0000000..a93dd89 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-psp.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-raspberrypi.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-raspberrypi.txt.i new file mode 100644 index 0000000..4397a66 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-raspberrypi.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-touch.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-touch.txt.i new file mode 100644 index 0000000..d32fb98 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-touch.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-wince.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-wince.txt.i new file mode 100644 index 0000000..ef70855 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-wince.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-windows.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-windows.txt.i new file mode 100644 index 0000000..15ca5c9 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-windows.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e-winrt.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e-winrt.txt.i new file mode 100644 index 0000000..78a0e06 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e-winrt.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._amiga_o_s.i b/SDL/.hg/store/data/_r_e_a_d_m_e._amiga_o_s.i new file mode 100644 index 0000000..6538e19 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._amiga_o_s.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._be_o_s.i b/SDL/.hg/store/data/_r_e_a_d_m_e._be_o_s.i new file mode 100644 index 0000000..9914d50 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._be_o_s.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._c_v_s.i b/SDL/.hg/store/data/_r_e_a_d_m_e._c_v_s.i new file mode 100644 index 0000000..c682834 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._c_v_s.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._d_c.i b/SDL/.hg/store/data/_r_e_a_d_m_e._d_c.i new file mode 100644 index 0000000..620bf2a Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._d_c.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._direct_f_b.i b/SDL/.hg/store/data/_r_e_a_d_m_e._direct_f_b.i new file mode 100644 index 0000000..547e15d Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._direct_f_b.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._epoc.i b/SDL/.hg/store/data/_r_e_a_d_m_e._epoc.i new file mode 100644 index 0000000..bbb5f5c Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._epoc.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._h_g.i b/SDL/.hg/store/data/_r_e_a_d_m_e._h_g.i new file mode 100644 index 0000000..e4120a4 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._h_g.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._mac_o_s.i b/SDL/.hg/store/data/_r_e_a_d_m_e._mac_o_s.i new file mode 100644 index 0000000..cc7619e Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._mac_o_s.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._mac_o_s_x.i b/SDL/.hg/store/data/_r_e_a_d_m_e._mac_o_s_x.i new file mode 100644 index 0000000..5f4c24e Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._mac_o_s_x.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._mi_n_t.i b/SDL/.hg/store/data/_r_e_a_d_m_e._mi_n_t.i new file mode 100644 index 0000000..888098f Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._mi_n_t.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._n_d_s.i b/SDL/.hg/store/data/_r_e_a_d_m_e._n_d_s.i new file mode 100644 index 0000000..498b077 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._n_d_s.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._nano_x.i b/SDL/.hg/store/data/_r_e_a_d_m_e._nano_x.i new file mode 100644 index 0000000..3cc433d Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._nano_x.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._o_s2.i b/SDL/.hg/store/data/_r_e_a_d_m_e._o_s2.i new file mode 100644 index 0000000..9cbf843 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._o_s2.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._open_b_s_d.i b/SDL/.hg/store/data/_r_e_a_d_m_e._open_b_s_d.i new file mode 100644 index 0000000..fe7a92d Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._open_b_s_d.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._p_s3.i b/SDL/.hg/store/data/_r_e_a_d_m_e._p_s3.i new file mode 100644 index 0000000..207eb12 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._p_s3.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._pico_g_u_i.i b/SDL/.hg/store/data/_r_e_a_d_m_e._pico_g_u_i.i new file mode 100644 index 0000000..9bacd0b Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._pico_g_u_i.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._platforms.i b/SDL/.hg/store/data/_r_e_a_d_m_e._platforms.i new file mode 100644 index 0000000..f089f14 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._platforms.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._porting.i b/SDL/.hg/store/data/_r_e_a_d_m_e._porting.i new file mode 100644 index 0000000..50740d2 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._porting.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._q_n_x.i b/SDL/.hg/store/data/_r_e_a_d_m_e._q_n_x.i new file mode 100644 index 0000000..e49c552 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._q_n_x.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._qtopia.i b/SDL/.hg/store/data/_r_e_a_d_m_e._qtopia.i new file mode 100644 index 0000000..aa55299 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._qtopia.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._r_i_s_c_o_s.i b/SDL/.hg/store/data/_r_e_a_d_m_e._r_i_s_c_o_s.i new file mode 100644 index 0000000..ddd8d69 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._r_i_s_c_o_s.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._s_v_n.i b/SDL/.hg/store/data/_r_e_a_d_m_e._s_v_n.i new file mode 100644 index 0000000..7e3e72e Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._s_v_n.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._symbian.i b/SDL/.hg/store/data/_r_e_a_d_m_e._symbian.i new file mode 100644 index 0000000..12b9af9 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._symbian.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._watcom.i b/SDL/.hg/store/data/_r_e_a_d_m_e._watcom.i new file mode 100644 index 0000000..1058dc1 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._watcom.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._win32.i b/SDL/.hg/store/data/_r_e_a_d_m_e._win32.i new file mode 100644 index 0000000..796aa5d Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._win32.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e._win_c_e.i b/SDL/.hg/store/data/_r_e_a_d_m_e._win_c_e.i new file mode 100644 index 0000000..b9ad833 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e._win_c_e.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.android.i b/SDL/.hg/store/data/_r_e_a_d_m_e.android.i new file mode 100644 index 0000000..356c73f Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.android.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.cmake.i b/SDL/.hg/store/data/_r_e_a_d_m_e.cmake.i new file mode 100644 index 0000000..3f3b23d Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.cmake.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.ds.i b/SDL/.hg/store/data/_r_e_a_d_m_e.ds.i new file mode 100644 index 0000000..9a82d72 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.ds.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.gesture.i b/SDL/.hg/store/data/_r_e_a_d_m_e.gesture.i new file mode 100644 index 0000000..f0f8cb3 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.gesture.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_r_e_a_d_m_e.i new file mode 100644 index 0000000..f10cdfe Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.i_o_s.i b/SDL/.hg/store/data/_r_e_a_d_m_e.i_o_s.i new file mode 100644 index 0000000..cc6b5c8 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.i_o_s.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.iphoneos.i b/SDL/.hg/store/data/_r_e_a_d_m_e.iphoneos.i new file mode 100644 index 0000000..e342bbd Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.iphoneos.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.pandora.i b/SDL/.hg/store/data/_r_e_a_d_m_e.pandora.i new file mode 100644 index 0000000..103cd07 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.pandora.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.psp.i b/SDL/.hg/store/data/_r_e_a_d_m_e.psp.i new file mode 100644 index 0000000..11da95d Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.psp.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.touch.i b/SDL/.hg/store/data/_r_e_a_d_m_e.touch.i new file mode 100644 index 0000000..1ac1622 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.touch.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.txt.i b/SDL/.hg/store/data/_r_e_a_d_m_e.txt.i new file mode 100644 index 0000000..4556fc5 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.txt.i differ diff --git a/SDL/.hg/store/data/_r_e_a_d_m_e.wscons.i b/SDL/.hg/store/data/_r_e_a_d_m_e.wscons.i new file mode 100644 index 0000000..e72cdf7 Binary files /dev/null and b/SDL/.hg/store/data/_r_e_a_d_m_e.wscons.i differ diff --git a/SDL/.hg/store/data/_s_d_l.qpg.in.i b/SDL/.hg/store/data/_s_d_l.qpg.in.i new file mode 100644 index 0000000..772342a Binary files /dev/null and b/SDL/.hg/store/data/_s_d_l.qpg.in.i differ diff --git a/SDL/.hg/store/data/_s_d_l.spec.in.i b/SDL/.hg/store/data/_s_d_l.spec.in.i new file mode 100644 index 0000000..095cf43 Binary files /dev/null and b/SDL/.hg/store/data/_s_d_l.spec.in.i differ diff --git a/SDL/.hg/store/data/_s_d_l2.spec.in.i b/SDL/.hg/store/data/_s_d_l2.spec.in.i new file mode 100644 index 0000000..4e154ad Binary files /dev/null and b/SDL/.hg/store/data/_s_d_l2.spec.in.i differ diff --git a/SDL/.hg/store/data/_t_e_s_t5.txt.i b/SDL/.hg/store/data/_t_e_s_t5.txt.i new file mode 100644 index 0000000..a3a402a Binary files /dev/null and b/SDL/.hg/store/data/_t_e_s_t5.txt.i differ diff --git a/SDL/.hg/store/data/_t_e_s_t6.txt.i b/SDL/.hg/store/data/_t_e_s_t6.txt.i new file mode 100644 index 0000000..038769b Binary files /dev/null and b/SDL/.hg/store/data/_t_e_s_t6.txt.i differ diff --git a/SDL/.hg/store/data/_t_o_d_o.i b/SDL/.hg/store/data/_t_o_d_o.i new file mode 100644 index 0000000..3b06702 Binary files /dev/null and b/SDL/.hg/store/data/_t_o_d_o.i differ diff --git a/SDL/.hg/store/data/_t_o_d_o.txt.i b/SDL/.hg/store/data/_t_o_d_o.txt.i new file mode 100644 index 0000000..308d421 Binary files /dev/null and b/SDL/.hg/store/data/_t_o_d_o.txt.i differ diff --git a/SDL/.hg/store/data/_u_n_d_e_r___c_o_n_s_t_r_u_c_t_i_o_n.txt.i b/SDL/.hg/store/data/_u_n_d_e_r___c_o_n_s_t_r_u_c_t_i_o_n.txt.i new file mode 100644 index 0000000..6d40cd4 Binary files /dev/null and b/SDL/.hg/store/data/_u_n_d_e_r___c_o_n_s_t_r_u_c_t_i_o_n.txt.i differ diff --git a/SDL/.hg/store/data/_v_s2012.patch.i b/SDL/.hg/store/data/_v_s2012.patch.i new file mode 100644 index 0000000..7ce02cb Binary files /dev/null and b/SDL/.hg/store/data/_v_s2012.patch.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l-_win_phone___v_s2012.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l-_win_phone___v_s2012.vcxproj.filters.i new file mode 100644 index 0000000..71e216a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l-_win_phone___v_s2012.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l-_win_phone___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l-_win_phone___v_s2012.vcxproj.i new file mode 100644 index 0000000..26207e4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l-_win_phone___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l___v_s2012-_win_phone.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l___v_s2012-_win_phone.vcxproj.filters.i new file mode 100644 index 0000000..293f6cb Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l___v_s2012-_win_phone.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l___v_s2012-_win_phone.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l___v_s2012-_win_phone.vcxproj.i new file mode 100644 index 0000000..6bfc368 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_phone/_s_d_l/_s_d_l___v_s2012-_win_phone.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l-_win_r_t___v_s2012.sln.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l-_win_r_t___v_s2012.sln.i new file mode 100644 index 0000000..15d12ec Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l-_win_r_t___v_s2012.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l-_win_r_t___v_s2012.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l-_win_r_t___v_s2012.vcxproj.filters.i new file mode 100644 index 0000000..ced8bc4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l-_win_r_t___v_s2012.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l-_win_r_t___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l-_win_r_t___v_s2012.vcxproj.i new file mode 100644 index 0000000..00ad889 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l-_win_r_t___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012-_win_r_t.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012-_win_r_t.vcxproj.filters.i new file mode 100644 index 0000000..5da975d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012-_win_r_t.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012-_win_r_t.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012-_win_r_t.vcxproj.i new file mode 100644 index 0000000..dfbbfae Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012-_win_r_t.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012.vcxproj.filters.i new file mode 100644 index 0000000..4e50957 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012.vcxproj.i new file mode 100644 index 0000000..185425a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l/_s_d_l___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2-_win_r_t.nuspec.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2-_win_r_t.nuspec.i new file mode 100644 index 0000000..97724d4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2-_win_r_t.nuspec.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2-_win_r_t.targets.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2-_win_r_t.targets.i new file mode 100644 index 0000000..3ef6897 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2-_win_r_t.targets.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_core_window.nuspec.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_core_window.nuspec.i new file mode 100644 index 0000000..d5bd31c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_core_window.nuspec.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_core_window.targets.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_core_window.targets.i new file mode 100644 index 0000000..ba6f8a0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_core_window.targets.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_non_x_a_m_l.nuspec.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_non_x_a_m_l.nuspec.i new file mode 100644 index 0000000..50f26e5 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_non_x_a_m_l.nuspec.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_non_x_a_m_l.targets.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_non_x_a_m_l.targets.i new file mode 100644 index 0000000..f2f765f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l2main-_win_r_t-_non_x_a_m_l.targets.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l___v_s2012-_win_r_t.sln.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l___v_s2012-_win_r_t.sln.i new file mode 100644 index 0000000..d5fc380 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l___v_s2012-_win_r_t.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l___v_s2012.sln.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l___v_s2012.sln.i new file mode 100644 index 0000000..ac93e4b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_s_d_l___v_s2012.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_u_w_p___v_s2015/_s_d_l-_u_w_p.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_u_w_p___v_s2015/_s_d_l-_u_w_p.vcxproj.filters.i new file mode 100644 index 0000000..a806eab Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_u_w_p___v_s2015/_s_d_l-_u_w_p.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_u_w_p___v_s2015/_s_d_l-_u_w_p.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_u_w_p___v_s2015/_s_d_l-_u_w_p.vcxproj.i new file mode 100644 index 0000000..cfa0e44 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_u_w_p___v_s2015/_s_d_l-_u_w_p.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone80___v_s2012/_s_d_l-_win_phone80.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone80___v_s2012/_s_d_l-_win_phone80.vcxproj.filters.i new file mode 100644 index 0000000..1d8c268 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone80___v_s2012/_s_d_l-_win_phone80.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone80___v_s2012/_s_d_l-_win_phone80.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone80___v_s2012/_s_d_l-_win_phone80.vcxproj.i new file mode 100644 index 0000000..6877753 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone80___v_s2012/_s_d_l-_win_phone80.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone81___v_s2013/_s_d_l-_win_phone81.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone81___v_s2013/_s_d_l-_win_phone81.vcxproj.filters.i new file mode 100644 index 0000000..ce46fd6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone81___v_s2013/_s_d_l-_win_phone81.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone81___v_s2013/_s_d_l-_win_phone81.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone81___v_s2013/_s_d_l-_win_phone81.vcxproj.i new file mode 100644 index 0000000..a51d522 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_phone81___v_s2013/_s_d_l-_win_phone81.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.sln.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.sln.i new file mode 100644 index 0000000..d2b5a9c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.vcxproj.filters.i new file mode 100644 index 0000000..b2e6a47 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.vcxproj.i new file mode 100644 index 0000000..7bc07ff Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t80___v_s2012/_s_d_l-_win_r_t80.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._shared.vcxitems.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._shared.vcxitems.filters.i new file mode 100644 index 0000000..a57e9b3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._shared.vcxitems.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._shared.vcxitems.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._shared.vcxitems.i new file mode 100644 index 0000000..be1649c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._shared.vcxitems.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows.vcxproj.filters.i new file mode 100644 index 0000000..9d1280a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows.vcxproj.i new file mode 100644 index 0000000..e787778 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows_phone.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows_phone.vcxproj.filters.i new file mode 100644 index 0000000..16b9b32 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows_phone.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows_phone.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows_phone.vcxproj.i new file mode 100644 index 0000000..3799d2e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81._windows_phone.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81.vcxproj.filters.i new file mode 100644 index 0000000..5abfb08 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81.vcxproj.i new file mode 100644 index 0000000..7feb9c5 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/_win_r_t81___v_s2013/_s_d_l-_win_r_t81.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_logo.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_logo.png.i new file mode 100644 index 0000000..be7699f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_small_logo.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_small_logo.png.i new file mode 100644 index 0000000..8eca67c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_small_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_splash_screen.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_splash_screen.png.i new file mode 100644 index 0000000..9994859 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_splash_screen.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_store_logo.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_store_logo.png.i new file mode 100644 index 0000000..06b8f30 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_assets/_store_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_package.appxmanifest.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_package.appxmanifest.i new file mode 100644 index 0000000..2bfbcb3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/_package.appxmanifest.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/loopwave___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/loopwave___v_s2012.vcxproj.i new file mode 100644 index 0000000..b02ea84 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/loopwave___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/loopwave___v_s2012___temporary_key.pfx.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/loopwave___v_s2012___temporary_key.pfx.i new file mode 100644 index 0000000..5794a37 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/loopwave/loopwave___v_s2012___temporary_key.pfx.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_logo.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_logo.png.i new file mode 100644 index 0000000..dc95902 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_small_logo.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_small_logo.png.i new file mode 100644 index 0000000..374b63f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_small_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_splash_screen.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_splash_screen.png.i new file mode 100644 index 0000000..c1a49e7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_splash_screen.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_store_logo.png.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_store_logo.png.i new file mode 100644 index 0000000..52ba2ae Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_assets/_store_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_package.appxmanifest.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_package.appxmanifest.i new file mode 100644 index 0000000..6f34335 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/_package.appxmanifest.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/testthread___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/testthread___v_s2012.vcxproj.i new file mode 100644 index 0000000..66de7f0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/testthread___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/testthread___v_s2012___temporary_key.pfx.i b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/testthread___v_s2012___temporary_key.pfx.i new file mode 100644 index 0000000..1b71df3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c-_win_r_t/tests/testthread/testthread___v_s2012___temporary_key.pfx.i differ diff --git a/SDL/.hg/store/data/_visual_c.html.i b/SDL/.hg/store/data/_visual_c.html.i new file mode 100644 index 0000000..718cbdf Binary files /dev/null and b/SDL/.hg/store/data/_visual_c.html.i differ diff --git a/SDL/.hg/store/data/_visual_c.zip.d b/SDL/.hg/store/data/_visual_c.zip.d new file mode 100644 index 0000000..a713f57 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c.zip.d differ diff --git a/SDL/.hg/store/data/_visual_c.zip.i b/SDL/.hg/store/data/_visual_c.zip.i new file mode 100644 index 0000000..c400654 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c.zip.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l.dsw.i b/SDL/.hg/store/data/_visual_c/_s_d_l.dsw.i new file mode 100644 index 0000000..7985503 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l.dsw.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l.sln.i new file mode 100644 index 0000000..168cc8b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.dsp.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.dsp.i new file mode 100644 index 0000000..cec5762 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcproj.i new file mode 100644 index 0000000..0f6684b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcxproj.filters.i new file mode 100644 index 0000000..b2b4c09 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcxproj.i new file mode 100644 index 0000000..7da29f9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2005.vcproj.i new file mode 100644 index 0000000..64e5b02 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2008.vcproj.i new file mode 100644 index 0000000..76dc94b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2010.vcxproj.i new file mode 100644 index 0000000..7088283 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2010.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2010.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2010.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012.vcxproj.i new file mode 100644 index 0000000..ce85095 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012___win_r_t.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012___win_r_t.vcxproj.filters.i new file mode 100644 index 0000000..dc65f24 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012___win_r_t.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012___win_r_t.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012___win_r_t.vcxproj.i new file mode 100644 index 0000000..0446dd6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2012___win_r_t.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2013.vcxproj.i new file mode 100644 index 0000000..5b88e2c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_s_d_l___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/_version.rc.i b/SDL/.hg/store/data/_visual_c/_s_d_l/_version.rc.i new file mode 100644 index 0000000..c2b6fa5 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/_version.rc.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l/resource.h.i b/SDL/.hg/store/data/_visual_c/_s_d_l/resource.h.i new file mode 100644 index 0000000..f77141c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l/resource.h.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2005.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2005.sln.i new file mode 100644 index 0000000..e495007 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2005.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2008.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2008.sln.i new file mode 100644 index 0000000..4329965 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2008.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sdf.d b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sdf.d new file mode 100644 index 0000000..b290d90 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sdf.d differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sdf.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sdf.i new file mode 100644 index 0000000..ef5046d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sdf.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sln.i new file mode 100644 index 0000000..fa22f31 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010_e_e.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010_e_e.sln.i new file mode 100644 index 0000000..60834a5 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2010_e_e.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012.sln.i new file mode 100644 index 0000000..eedc3d6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012___win_r_t.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012___win_r_t.sln.i new file mode 100644 index 0000000..281c0c1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012___win_r_t.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012_e_e.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012_e_e.sln.i new file mode 100644 index 0000000..4a82d8c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2012_e_e.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2013.sln.i b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2013.sln.i new file mode 100644 index 0000000..46ceff4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_l___v_s2013.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.dsp.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.dsp.i new file mode 100644 index 0000000..a9ed799 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.vcproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.vcproj.i new file mode 100644 index 0000000..5cce35c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.vcxproj.i new file mode 100644 index 0000000..0658c1d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2005.vcproj.i new file mode 100644 index 0000000..e7408e8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2008.vcproj.i new file mode 100644 index 0000000..6064294 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2010.vcxproj.i new file mode 100644 index 0000000..14119c1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2010.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2010.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2010.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2012.vcxproj.i new file mode 100644 index 0000000..4715c6a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2012___win_r_t.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2012___win_r_t.vcxproj.i new file mode 100644 index 0000000..19bacf6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2012___win_r_t.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2013.vcxproj.i new file mode 100644 index 0000000..5ce9e94 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_lmain/_s_d_lmain___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest.vcxproj.i new file mode 100644 index 0000000..e6cf58f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2008.vcproj.i new file mode 100644 index 0000000..95c4f03 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2010.vcxproj.i new file mode 100644 index 0000000..e3ca3e3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2012.vcxproj.i new file mode 100644 index 0000000..81942c7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2013.vcxproj.i new file mode 100644 index 0000000..e000e81 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/_s_d_ltest/_s_d_ltest___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/clean.sh.i b/SDL/.hg/store/data/_visual_c/clean.sh.i new file mode 100644 index 0000000..2f02ab4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/clean.sh.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcproj.i new file mode 100644 index 0000000..fea7109 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.filters.i b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.filters.i new file mode 100644 index 0000000..491f48c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.i new file mode 100644 index 0000000..d34e402 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/automated/automated.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2008.vcproj.i new file mode 100644 index 0000000..6a7dbdd Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2010.vcxproj.i new file mode 100644 index 0000000..b744686 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2012.vcxproj.i new file mode 100644 index 0000000..8294d80 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/automated/automated___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.dsp.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.dsp.i new file mode 100644 index 0000000..e604da5 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcproj.i new file mode 100644 index 0000000..f1d6f1f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcxproj.i new file mode 100644 index 0000000..863a95c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2005.vcproj.i new file mode 100644 index 0000000..39aadb3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2008.vcproj.i new file mode 100644 index 0000000..67ceabf Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2010.vcxproj.i new file mode 100644 index 0000000..e115165 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2012.vcxproj.i new file mode 100644 index 0000000..21d9ec6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2013.vcxproj.i new file mode 100644 index 0000000..54a63cb Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/checkkeys/checkkeys___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/controllermap/controllermap.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/controllermap/controllermap.vcxproj.i new file mode 100644 index 0000000..4c355d8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/controllermap/controllermap.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/controllermap/controllermap___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/controllermap/controllermap___v_s2008.vcproj.i new file mode 100644 index 0000000..c1f747a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/controllermap/controllermap___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.dsp.i b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.dsp.i new file mode 100644 index 0000000..ede7298 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcproj.i new file mode 100644 index 0000000..20e7879 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcxproj.i new file mode 100644 index 0000000..cd7571e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2005.vcproj.i new file mode 100644 index 0000000..6ac6145 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2008.vcproj.i new file mode 100644 index 0000000..38512f4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2010.vcxproj.i new file mode 100644 index 0000000..2c2c731 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/graywin/graywin___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_logo.png.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_logo.png.i new file mode 100644 index 0000000..a50c90f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_small_logo.png.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_small_logo.png.i new file mode 100644 index 0000000..59588c6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_small_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_splash_screen.png.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_splash_screen.png.i new file mode 100644 index 0000000..484f5f7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_splash_screen.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_store_logo.png.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_store_logo.png.i new file mode 100644 index 0000000..9b7b76e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_assets/_store_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_package.appxmanifest.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_package.appxmanifest.i new file mode 100644 index 0000000..544e8be Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/_package.appxmanifest.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/loopwave___v_s2012___win_r_t.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/loopwave___v_s2012___win_r_t.vcxproj.i new file mode 100644 index 0000000..adcdbb9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/loopwave___v_s2012___win_r_t.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/loopwave___v_s2012___win_r_t___temporary_key.pfx.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/loopwave___v_s2012___win_r_t___temporary_key.pfx.i new file mode 100644 index 0000000..9ce6dc7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/_win_r_t/loopwave___v_s2012___win_r_t___temporary_key.pfx.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.dsp.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.dsp.i new file mode 100644 index 0000000..b52157a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcproj.i new file mode 100644 index 0000000..c94001f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcxproj.i new file mode 100644 index 0000000..1a8f222 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2005.vcproj.i new file mode 100644 index 0000000..5318d7d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2008.vcproj.i new file mode 100644 index 0000000..47780b6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2010.vcxproj.i new file mode 100644 index 0000000..9979088 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2012.vcxproj.i new file mode 100644 index 0000000..f364cca Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2013.vcxproj.i new file mode 100644 index 0000000..5b0ebf8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/loopwave/loopwave___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.dsp.i new file mode 100644 index 0000000..e620334 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcproj.i new file mode 100644 index 0000000..1f75076 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcxproj.i new file mode 100644 index 0000000..3811004 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2005.vcproj.i new file mode 100644 index 0000000..5e079cb Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2008.vcproj.i new file mode 100644 index 0000000..1fad18d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2010.vcxproj.i new file mode 100644 index 0000000..4743e4e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testalpha/testalpha___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic.vcxproj.i new file mode 100644 index 0000000..7ab94e6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2005.vcproj.i new file mode 100644 index 0000000..e37452a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2008.vcproj.i new file mode 100644 index 0000000..c0fe574 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2010.vcxproj.i new file mode 100644 index 0000000..19af8ad Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2012.vcxproj.i new file mode 100644 index 0000000..c686a49 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2013.vcxproj.i new file mode 100644 index 0000000..cef7a15 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testatomic/testatomic___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation.vcxproj.i new file mode 100644 index 0000000..991eeca Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation___v_s2008.vcproj.i new file mode 100644 index 0000000..7cdf053 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2010.vcxproj.i new file mode 100644 index 0000000..463d1ca Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2012.vcxproj.i new file mode 100644 index 0000000..951b605 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2013.vcxproj.i new file mode 100644 index 0000000..eba6c6a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testautomation/testautomation__vs2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2005.vcproj.i new file mode 100644 index 0000000..2852c6f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2008.vcproj.i new file mode 100644 index 0000000..0572568 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2010.vcxproj.i new file mode 100644 index 0000000..0bc22f9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testcursor/testcursor___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcproj.i new file mode 100644 index 0000000..cde913d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcxproj.i new file mode 100644 index 0000000..fae166d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2005.vcproj.i new file mode 100644 index 0000000..ba5c844 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2008.vcproj.i new file mode 100644 index 0000000..f5d1437 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2010.vcxproj.i new file mode 100644 index 0000000..2e8ff19 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2012.vcxproj.i new file mode 100644 index 0000000..92958e1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2013.vcxproj.i new file mode 100644 index 0000000..f7a0dd4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testdraw2/testdraw2___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.dsp.i new file mode 100644 index 0000000..b673bb9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcproj.i new file mode 100644 index 0000000..065eb2f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcxproj.i new file mode 100644 index 0000000..2b006c0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2005.vcproj.i new file mode 100644 index 0000000..add9184 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2008.vcproj.i new file mode 100644 index 0000000..63e5eac Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2010.vcxproj.i new file mode 100644 index 0000000..7d38da2 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2012.vcxproj.i new file mode 100644 index 0000000..116c36a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2013.vcxproj.i new file mode 100644 index 0000000..b31d9b8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testfile/testfile___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller.vcxproj.i new file mode 100644 index 0000000..98ecd76 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2008.vcproj.i new file mode 100644 index 0000000..3c858e0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2010.vcxproj.i new file mode 100644 index 0000000..8f6a9d8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2012.vcxproj.i new file mode 100644 index 0000000..5a85470 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2013.vcxproj.i new file mode 100644 index 0000000..49f8314 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamecontroller/testgamecontroller___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.dsp.i new file mode 100644 index 0000000..89e93b3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcproj.i new file mode 100644 index 0000000..5b43ea1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcxproj.i new file mode 100644 index 0000000..6cc766d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2005.vcproj.i new file mode 100644 index 0000000..dcfe57f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2008.vcproj.i new file mode 100644 index 0000000..ae54384 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2010.vcxproj.i new file mode 100644 index 0000000..d2e7913 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgamma/testgamma___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture.vcxproj.i new file mode 100644 index 0000000..c9123cc Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2005.vcproj.i new file mode 100644 index 0000000..244efa0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2008.vcproj.i new file mode 100644 index 0000000..37be227 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2010.vcxproj.i new file mode 100644 index 0000000..8feb51b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2012.vcxproj.i new file mode 100644 index 0000000..d66603f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2013.vcxproj.i new file mode 100644 index 0000000..9f02145 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgesture/testgesture___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.dsp.i new file mode 100644 index 0000000..1fa4b14 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcproj.i new file mode 100644 index 0000000..94fb98d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcxproj.i new file mode 100644 index 0000000..62889d5 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2005.vcproj.i new file mode 100644 index 0000000..9133b12 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2008.vcproj.i new file mode 100644 index 0000000..de502b4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2010.vcxproj.i new file mode 100644 index 0000000..c3978f1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl/testgl___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.dsp.i new file mode 100644 index 0000000..393966c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcproj.i new file mode 100644 index 0000000..ad52ecc Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcxproj.i new file mode 100644 index 0000000..f7a875f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2005.vcproj.i new file mode 100644 index 0000000..6ab461e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2008.vcproj.i new file mode 100644 index 0000000..1c50e00 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2010.vcxproj.i new file mode 100644 index 0000000..83a1cef Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2012.vcxproj.i new file mode 100644 index 0000000..1279071 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2013.vcxproj.i new file mode 100644 index 0000000..bfd42a8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgl2/testgl2___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2.vcxproj.i new file mode 100644 index 0000000..0b37779 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2008.vcproj.i new file mode 100644 index 0000000..92cb2b6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2010.vcxproj.i new file mode 100644 index 0000000..7df68f0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2012.vcxproj.i new file mode 100644 index 0000000..a19d588 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2013.vcxproj.i new file mode 100644 index 0000000..0e0f9b7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testgles2/testgles2___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.dsp.i new file mode 100644 index 0000000..a704559 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcproj.i new file mode 100644 index 0000000..14eb5fa Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcxproj.i new file mode 100644 index 0000000..65d6585 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2005.vcproj.i new file mode 100644 index 0000000..c836233 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2008.vcproj.i new file mode 100644 index 0000000..a9fdd95 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2010.vcxproj.i new file mode 100644 index 0000000..22222d2 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2012.vcxproj.i new file mode 100644 index 0000000..d951700 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2013.vcxproj.i new file mode 100644 index 0000000..41c7951 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testjoystick/testjoystick___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.dsp.i new file mode 100644 index 0000000..d77f9ea Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcproj.i new file mode 100644 index 0000000..8ccffd5 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcxproj.i new file mode 100644 index 0000000..7ed06a2 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2005.vcproj.i new file mode 100644 index 0000000..0ee4e6c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2008.vcproj.i new file mode 100644 index 0000000..385d0ea Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2010.vcxproj.i new file mode 100644 index 0000000..e0d96e8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay/testoverlay___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.dsp.i new file mode 100644 index 0000000..dc08a8c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcproj.i new file mode 100644 index 0000000..0233063 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcxproj.i new file mode 100644 index 0000000..21b341c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2005.vcproj.i new file mode 100644 index 0000000..23fcb67 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2008.vcproj.i new file mode 100644 index 0000000..8e2a50e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2010.vcxproj.i new file mode 100644 index 0000000..9cbbb65 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2012.vcxproj.i new file mode 100644 index 0000000..65b4eb3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2013.vcxproj.i new file mode 100644 index 0000000..053019d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testoverlay2/testoverlay2___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.dsp.i new file mode 100644 index 0000000..ae916e6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcproj.i new file mode 100644 index 0000000..29608d0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcxproj.i new file mode 100644 index 0000000..16c66a9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2005.vcproj.i new file mode 100644 index 0000000..573456f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2008.vcproj.i new file mode 100644 index 0000000..32e68ab Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2010.vcxproj.i new file mode 100644 index 0000000..7bbb205 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpalette/testpalette___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.dsp.i new file mode 100644 index 0000000..7c12b14 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcproj.i new file mode 100644 index 0000000..be74bba Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcxproj.i new file mode 100644 index 0000000..86a606a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2005.vcproj.i new file mode 100644 index 0000000..6ddd1fa Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2008.vcproj.i new file mode 100644 index 0000000..c4e03ad Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2010.vcxproj.i new file mode 100644 index 0000000..ae3aa66 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2012.vcxproj.i new file mode 100644 index 0000000..f14f111 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2013.vcxproj.i new file mode 100644 index 0000000..39e0939 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testplatform/testplatform___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcproj.i new file mode 100644 index 0000000..deb662b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcxproj.i new file mode 100644 index 0000000..0d04721 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2005.vcproj.i new file mode 100644 index 0000000..45ccbda Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2008.vcproj.i new file mode 100644 index 0000000..56eecff Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2010.vcxproj.i new file mode 100644 index 0000000..3bfc1d1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2012.vcxproj.i new file mode 100644 index 0000000..c5d60ab Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2013.vcxproj.i new file mode 100644 index 0000000..b6d45ca Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testpower/testpower___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget.vcxproj.i new file mode 100644 index 0000000..9dff2db Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2008.vcproj.i new file mode 100644 index 0000000..59c7ee9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2010.vcxproj.i new file mode 100644 index 0000000..685c479 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2012.vcxproj.i new file mode 100644 index 0000000..22f382a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2013.vcxproj.i new file mode 100644 index 0000000..bd34dff Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrendertarget/testrendertarget___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble.vcxproj.i new file mode 100644 index 0000000..52d2cf2 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2008.vcproj.i new file mode 100644 index 0000000..7431b68 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2010.vcxproj.i new file mode 100644 index 0000000..5408402 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2012.vcxproj.i new file mode 100644 index 0000000..9f8ee15 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2013.vcxproj.i new file mode 100644 index 0000000..f5cd6c4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testrumble/testrumble___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/tests.dsw.i b/SDL/.hg/store/data/_visual_c/tests/tests.dsw.i new file mode 100644 index 0000000..9812b56 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/tests.dsw.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/tests.sdf.d b/SDL/.hg/store/data/_visual_c/tests/tests.sdf.d new file mode 100644 index 0000000..273e4d1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/tests.sdf.d differ diff --git a/SDL/.hg/store/data/_visual_c/tests/tests.sdf.i b/SDL/.hg/store/data/_visual_c/tests/tests.sdf.i new file mode 100644 index 0000000..d428cff Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/tests.sdf.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/tests.sln.i b/SDL/.hg/store/data/_visual_c/tests/tests.sln.i new file mode 100644 index 0000000..96d43b7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/tests.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testscale/testscale.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale.vcxproj.i new file mode 100644 index 0000000..e24c7ad Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2005.vcproj.i new file mode 100644 index 0000000..4d5f770 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2008.vcproj.i new file mode 100644 index 0000000..daa1bb0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2010.vcxproj.i new file mode 100644 index 0000000..d31141d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2012.vcxproj.i new file mode 100644 index 0000000..35e4566 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2013.vcxproj.i new file mode 100644 index 0000000..cd355c6 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testscale/testscale___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcproj.i new file mode 100644 index 0000000..91eb6e9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcxproj.i new file mode 100644 index 0000000..e3340c3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcxproj.user.i new file mode 100644 index 0000000..a8eaef8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2008.vcproj.i new file mode 100644 index 0000000..f22d756 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2010.vcxproj.i new file mode 100644 index 0000000..9fd183c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2012.vcxproj.i new file mode 100644 index 0000000..cdc5f52 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2013.vcxproj.i new file mode 100644 index 0000000..1143c79 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testshape/testshape___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.dsp.i new file mode 100644 index 0000000..913124a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcproj.i new file mode 100644 index 0000000..ced4d29 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcxproj.i new file mode 100644 index 0000000..b16f7e4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2005.vcproj.i new file mode 100644 index 0000000..2946f08 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2008.vcproj.i new file mode 100644 index 0000000..d921c1c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2010.vcxproj.i new file mode 100644 index 0000000..cd5da08 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite/testsprite___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.dsp.i new file mode 100644 index 0000000..1758790 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcproj.i new file mode 100644 index 0000000..9997e6b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcxproj.i new file mode 100644 index 0000000..b7d37c3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2005.vcproj.i new file mode 100644 index 0000000..8a2d1bf Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2008.vcproj.i new file mode 100644 index 0000000..1e04675 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2010.vcxproj.i new file mode 100644 index 0000000..a44316c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2012.vcxproj.i new file mode 100644 index 0000000..78f720f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2013.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2013.vcxproj.i new file mode 100644 index 0000000..594424b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testsprite2/testsprite2___v_s2013.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_logo.png.i b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_logo.png.i new file mode 100644 index 0000000..c4de793 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_small_logo.png.i b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_small_logo.png.i new file mode 100644 index 0000000..1c853d3 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_small_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_splash_screen.png.i b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_splash_screen.png.i new file mode 100644 index 0000000..b5873ac Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_splash_screen.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_store_logo.png.i b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_store_logo.png.i new file mode 100644 index 0000000..8afcfd9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_assets/_store_logo.png.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_package.appxmanifest.i b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_package.appxmanifest.i new file mode 100644 index 0000000..67b4fec Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/_package.appxmanifest.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/testthread___v_s2012___win_r_t.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/testthread___v_s2012___win_r_t.vcxproj.i new file mode 100644 index 0000000..e439d33 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/testthread___v_s2012___win_r_t.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/testthread___v_s2012___win_r_t___temporary_key.pfx.i b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/testthread___v_s2012___win_r_t___temporary_key.pfx.i new file mode 100644 index 0000000..f7b3abc Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testthread/_win_r_t/testthread___v_s2012___win_r_t___temporary_key.pfx.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.dsp.i new file mode 100644 index 0000000..01f3388 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcproj.i new file mode 100644 index 0000000..0f69f2b Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcxproj.i new file mode 100644 index 0000000..0f57a66 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2005.vcproj.i new file mode 100644 index 0000000..85b3c9c Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2008.vcproj.i new file mode 100644 index 0000000..e42e46f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2010.vcxproj.i new file mode 100644 index 0000000..05021c2 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testvidinfo/testvidinfo___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.dsp.i new file mode 100644 index 0000000..13cd891 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcproj.i new file mode 100644 index 0000000..78ccd3e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcxproj.i new file mode 100644 index 0000000..8937e56 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2005.vcproj.i new file mode 100644 index 0000000..150c054 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2008.vcproj.i new file mode 100644 index 0000000..e68dbf4 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2010.vcxproj.i new file mode 100644 index 0000000..997c3cc Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwin/testwin___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.dsp.i b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.dsp.i new file mode 100644 index 0000000..1fc540f Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.dsp.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcproj.i new file mode 100644 index 0000000..4a50a9e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcxproj.i new file mode 100644 index 0000000..6c4b5f8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcxproj.user.i b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcxproj.user.i new file mode 100644 index 0000000..12ec9a7 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm.vcxproj.user.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2005.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2005.vcproj.i new file mode 100644 index 0000000..5827397 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2005.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2008.vcproj.i b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2008.vcproj.i new file mode 100644 index 0000000..2dcdc20 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2008.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2010.vcxproj.i b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2010.vcxproj.i new file mode 100644 index 0000000..d1fb0f8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/tests/testwm/testwm___v_s2010.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/visualtest/unittest/testquit/testquit___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/visualtest/unittest/testquit/testquit___v_s2012.vcxproj.i new file mode 100644 index 0000000..58befb8 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/visualtest/unittest/testquit/testquit___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c/visualtest/visualtest___v_s2012.vcxproj.i b/SDL/.hg/store/data/_visual_c/visualtest/visualtest___v_s2012.vcxproj.i new file mode 100644 index 0000000..1a735ba Binary files /dev/null and b/SDL/.hg/store/data/_visual_c/visualtest/visualtest___v_s2012.vcxproj.i differ diff --git a/SDL/.hg/store/data/_visual_c7.zip.i b/SDL/.hg/store/data/_visual_c7.zip.i new file mode 100644 index 0000000..e842bb2 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c7.zip.i differ diff --git a/SDL/.hg/store/data/_visual_c_e.zip.d b/SDL/.hg/store/data/_visual_c_e.zip.d new file mode 100644 index 0000000..028bdf0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e.zip.d differ diff --git a/SDL/.hg/store/data/_visual_c_e.zip.i b/SDL/.hg/store/data/_visual_c_e.zip.i new file mode 100644 index 0000000..368eef0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e.zip.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/_s_d_l.sln.i b/SDL/.hg/store/data/_visual_c_e/_s_d_l.sln.i new file mode 100644 index 0000000..78ba67e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/_s_d_l.sln.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/_s_d_l.vcw.i b/SDL/.hg/store/data/_visual_c_e/_s_d_l.vcw.i new file mode 100644 index 0000000..a219673 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/_s_d_l.vcw.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/_s_d_l/_s_d_l.vcp.i b/SDL/.hg/store/data/_visual_c_e/_s_d_l/_s_d_l.vcp.i new file mode 100644 index 0000000..d4b7019 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/_s_d_l/_s_d_l.vcp.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/_s_d_l/_s_d_l.vcproj.i b/SDL/.hg/store/data/_visual_c_e/_s_d_l/_s_d_l.vcproj.i new file mode 100644 index 0000000..558386a Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/_s_d_l/_s_d_l.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/_s_d_l_main/_s_d_lmain.vcp.i b/SDL/.hg/store/data/_visual_c_e/_s_d_l_main/_s_d_lmain.vcp.i new file mode 100644 index 0000000..6d8e67e Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/_s_d_l_main/_s_d_lmain.vcp.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/_s_d_l_main/_s_d_lmain.vcproj.i b/SDL/.hg/store/data/_visual_c_e/_s_d_l_main/_s_d_lmain.vcproj.i new file mode 100644 index 0000000..66662a9 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/_s_d_l_main/_s_d_lmain.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/loopwave/loopwave.vcp.i b/SDL/.hg/store/data/_visual_c_e/loopwave/loopwave.vcp.i new file mode 100644 index 0000000..995cef2 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/loopwave/loopwave.vcp.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/loopwave/loopwave.vcproj.i b/SDL/.hg/store/data/_visual_c_e/loopwave/loopwave.vcproj.i new file mode 100644 index 0000000..c85d0c1 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/loopwave/loopwave.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/testalpha/testalpha.vcp.i b/SDL/.hg/store/data/_visual_c_e/testalpha/testalpha.vcp.i new file mode 100644 index 0000000..cf6f25d Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/testalpha/testalpha.vcp.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/testalpha/testalpha.vcproj.i b/SDL/.hg/store/data/_visual_c_e/testalpha/testalpha.vcproj.i new file mode 100644 index 0000000..35a2e81 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/testalpha/testalpha.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/testtimer/testtimer.vcp.i b/SDL/.hg/store/data/_visual_c_e/testtimer/testtimer.vcp.i new file mode 100644 index 0000000..55937a0 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/testtimer/testtimer.vcp.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/testtimer/testtimer.vcproj.i b/SDL/.hg/store/data/_visual_c_e/testtimer/testtimer.vcproj.i new file mode 100644 index 0000000..7eae931 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/testtimer/testtimer.vcproj.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/testwin/testwin.vcp.i b/SDL/.hg/store/data/_visual_c_e/testwin/testwin.vcp.i new file mode 100644 index 0000000..a80fd54 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/testwin/testwin.vcp.i differ diff --git a/SDL/.hg/store/data/_visual_c_e/testwin/testwin.vcproj.i b/SDL/.hg/store/data/_visual_c_e/testwin/testwin.vcproj.i new file mode 100644 index 0000000..1bbb731 Binary files /dev/null and b/SDL/.hg/store/data/_visual_c_e/testwin/testwin.vcproj.i differ diff --git a/SDL/.hg/store/data/_watcom-_o_s2.zip.i b/SDL/.hg/store/data/_watcom-_o_s2.zip.i new file mode 100644 index 0000000..fe7fffd Binary files /dev/null and b/SDL/.hg/store/data/_watcom-_o_s2.zip.i differ diff --git a/SDL/.hg/store/data/_watcom-_win32.zip.i b/SDL/.hg/store/data/_watcom-_win32.zip.i new file mode 100644 index 0000000..2ae1c06 Binary files /dev/null and b/SDL/.hg/store/data/_watcom-_win32.zip.i differ diff --git a/SDL/.hg/store/data/_watcom.mif.i b/SDL/.hg/store/data/_watcom.mif.i new file mode 100644 index 0000000..8a01803 Binary files /dev/null and b/SDL/.hg/store/data/_watcom.mif.i differ diff --git a/SDL/.hg/store/data/_whats_new.i b/SDL/.hg/store/data/_whats_new.i new file mode 100644 index 0000000..d0c1d6f Binary files /dev/null and b/SDL/.hg/store/data/_whats_new.i differ diff --git a/SDL/.hg/store/data/_whats_new.txt.i b/SDL/.hg/store/data/_whats_new.txt.i new file mode 100644 index 0000000..a583e85 Binary files /dev/null and b/SDL/.hg/store/data/_whats_new.txt.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_default.png.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_default.png.i new file mode 100644 index 0000000..d384508 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_default.png.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..0288dee Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..6c885bd Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..f3b3144 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_icon.png.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_icon.png.i new file mode 100644 index 0000000..20bdca6 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_icon.png.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_info.plist.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_info.plist.i new file mode 100644 index 0000000..f14238c Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_info.plist.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_r_e_a_d_m_e.i new file mode 100644 index 0000000..e3dbc00 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i new file mode 100644 index 0000000..6f77477 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/bitmapfont/license.txt.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/bitmapfont/license.txt.i new file mode 100644 index 0000000..0ab5eae Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/bitmapfont/license.txt.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__brush__snare.wav.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__brush__snare.wav.i new file mode 100644 index 0000000..90d7205 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__brush__snare.wav.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__china.wav.d b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__china.wav.d new file mode 100644 index 0000000..1197fa0 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__china.wav.d differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__china.wav.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__china.wav.i new file mode 100644 index 0000000..b13c8a8 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__china.wav.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.d b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.d new file mode 100644 index 0000000..7c8db51 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.d differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.i new file mode 100644 index 0000000..7b851d7 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i new file mode 100644 index 0000000..592adae Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/icon.bmp.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/icon.bmp.i new file mode 100644 index 0000000..a59f502 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/icon.bmp.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/ship.bmp.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/ship.bmp.i new file mode 100644 index 0000000..0549d89 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/ship.bmp.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/space.bmp.d b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/space.bmp.d new file mode 100644 index 0000000..0aee384 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/space.bmp.d differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/space.bmp.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/space.bmp.i new file mode 100644 index 0000000..efead80 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/space.bmp.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/stroke.bmp.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/stroke.bmp.i new file mode 100644 index 0000000..6c72a91 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/data/stroke.bmp.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/accelerometer.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/accelerometer.c.i new file mode 100644 index 0000000..690a427 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/accelerometer.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/common.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/common.c.i new file mode 100644 index 0000000..bb9259a Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/common.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/common.h.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/common.h.i new file mode 100644 index 0000000..595f874 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/common.h.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/fireworks.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/fireworks.c.i new file mode 100644 index 0000000..ab8a2f0 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/fireworks.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/happy.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/happy.c.i new file mode 100644 index 0000000..d50a796 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/happy.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/keyboard.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/keyboard.c.i new file mode 100644 index 0000000..a52c7d8 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/keyboard.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/mixer.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/mixer.c.i new file mode 100644 index 0000000..33219d4 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/mixer.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/rectangles.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/rectangles.c.i new file mode 100644 index 0000000..2d9f5a3 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/rectangles.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/touch.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/touch.c.i new file mode 100644 index 0000000..4585b4c Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_demos/src/touch.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_r_e_a_d_m_e.i new file mode 100644 index 0000000..7d0f524 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_r_e_a_d_m_e.txt.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_r_e_a_d_m_e.txt.i new file mode 100644 index 0000000..2688a3b Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_r_e_a_d_m_e.txt.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..f346fdf Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..b5db666 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..93b1aca Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..e47ab89 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..567d961 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..a0b9e03 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_s_d_li_phone_o_s/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i new file mode 100644 index 0000000..d438778 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..787b773 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..8c8522a Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..5024281 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_default.png.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_default.png.i new file mode 100644 index 0000000..7dc26d3 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_default.png.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_icon.png.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_icon.png.i new file mode 100644 index 0000000..3b7a200 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_icon.png.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_info.plist.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_info.plist.i new file mode 100644 index 0000000..3c71965 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/main.c.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/main.c.i new file mode 100644 index 0000000..1a3ebcd Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_template/_s_d_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_info.plist.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_info.plist.i new file mode 100644 index 0000000..92a68ab Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_info.plist.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_r_e_a_d_m_e.i new file mode 100644 index 0000000..7be78f2 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..4f58bd9 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..1bf4c25 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..5941f00 Binary files /dev/null and b/SDL/.hg/store/data/_x_codei_phone_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/_default.png.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_default.png.i new file mode 100644 index 0000000..2b1bca9 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_default.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/_demos.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_demos.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..2daf006 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_demos.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/_icon.png.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_icon.png.i new file mode 100644 index 0000000..dce17b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_icon.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/_info.plist.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_info.plist.i new file mode 100644 index 0000000..daeaf3e Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_r_e_a_d_m_e.i new file mode 100644 index 0000000..e48e1d0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i new file mode 100644 index 0000000..6f0bfc1 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/bitmapfont/license.txt.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/bitmapfont/license.txt.i new file mode 100644 index 0000000..4374b3e Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/bitmapfont/license.txt.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__brush__snare.wav.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__brush__snare.wav.i new file mode 100644 index 0000000..acdcf94 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__brush__snare.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__china.wav.d b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__china.wav.d new file mode 100644 index 0000000..a63bc4c Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__china.wav.d differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__china.wav.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__china.wav.i new file mode 100644 index 0000000..72de811 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__china.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__kick__big__amb.wav.d b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__kick__big__amb.wav.d new file mode 100644 index 0000000..a1a4d1c Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__kick__big__amb.wav.d differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__kick__big__amb.wav.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__kick__big__amb.wav.i new file mode 100644 index 0000000..b64b18a Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__kick__big__amb.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i new file mode 100644 index 0000000..d53a53f Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/icon.bmp.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/icon.bmp.i new file mode 100644 index 0000000..535e3aa Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/icon.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/ship.bmp.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/ship.bmp.i new file mode 100644 index 0000000..9cf6799 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/ship.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/space.bmp.d b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/space.bmp.d new file mode 100644 index 0000000..10824d9 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/space.bmp.d differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/space.bmp.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/space.bmp.i new file mode 100644 index 0000000..23b42ff Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/space.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/stroke.bmp.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/stroke.bmp.i new file mode 100644 index 0000000..6c6d564 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/data/stroke.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/accelerometer.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/accelerometer.c.i new file mode 100644 index 0000000..a63e508 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/accelerometer.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/common.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/common.c.i new file mode 100644 index 0000000..45f9bea Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/common.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/common.h.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/common.h.i new file mode 100644 index 0000000..7bb212c Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/common.h.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/fireworks.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/fireworks.c.i new file mode 100644 index 0000000..f59d194 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/fireworks.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/happy.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/happy.c.i new file mode 100644 index 0000000..4f763f9 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/happy.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/keyboard.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/keyboard.c.i new file mode 100644 index 0000000..b0ee72d Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/keyboard.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/mixer.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/mixer.c.i new file mode 100644 index 0000000..d5cf020 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/mixer.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/rectangles.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/rectangles.c.i new file mode 100644 index 0000000..15b68c0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/rectangles.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/touch.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/touch.c.i new file mode 100644 index 0000000..79a4ca7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_demos/src/touch.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_o_s/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6b30aac Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_s_d_l/testsdl-_info.plist.i b/SDL/.hg/store/data/_xcode-i_o_s/_s_d_l/testsdl-_info.plist.i new file mode 100644 index 0000000..a5ccd1a Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_s_d_l/testsdl-_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_s_d_ltest/_s_d_l2test.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_o_s/_s_d_ltest/_s_d_l2test.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..b6726e7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_s_d_ltest/_s_d_l2test.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i new file mode 100644 index 0000000..38f9d92 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..2cc0e60 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_default-568h@2x.png.i b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_default-568h@2x.png.i new file mode 100644 index 0000000..b8dcfb5 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_default-568h@2x.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_default.png.i b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_default.png.i new file mode 100644 index 0000000..7fd460f Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_default.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_icon.png.i b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_icon.png.i new file mode 100644 index 0000000..6a30981 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_icon.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_info.plist.i b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_info.plist.i new file mode 100644 index 0000000..58819bc Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/main.c.i b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/main.c.i new file mode 100644 index 0000000..81636c3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_template/_s_d_l i_o_s _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_test/_info.plist.i b/SDL/.hg/store/data/_xcode-i_o_s/_test/_info.plist.i new file mode 100644 index 0000000..370a30b Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_test/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_test/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_xcode-i_o_s/_test/_r_e_a_d_m_e.i new file mode 100644 index 0000000..7ac15f1 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_test/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_xcode-i_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6415985 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_default.png.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_default.png.i new file mode 100644 index 0000000..f4eca67 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_default.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..392ae4c Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..1c32a42 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..ee5d9fb Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_demosi_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_icon.png.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_icon.png.i new file mode 100644 index 0000000..51e24e6 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_icon.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_info.plist.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_info.plist.i new file mode 100644 index 0000000..536a108 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_r_e_a_d_m_e.i new file mode 100644 index 0000000..800d8ac Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i new file mode 100644 index 0000000..58b9aa3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/bitmapfont/kromasky__16x16.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/bitmapfont/license.txt.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/bitmapfont/license.txt.i new file mode 100644 index 0000000..9ed824e Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/bitmapfont/license.txt.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__brush__snare.wav.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__brush__snare.wav.i new file mode 100644 index 0000000..8bc2c16 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__brush__snare.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__china.wav.d b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__china.wav.d new file mode 100644 index 0000000..1197fa0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__china.wav.d differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__china.wav.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__china.wav.i new file mode 100644 index 0000000..8f7a507 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__china.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.d b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.d new file mode 100644 index 0000000..7c8db51 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.d differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.i new file mode 100644 index 0000000..4fef2da Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__kick__big__amb.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i new file mode 100644 index 0000000..25606e3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/drums/ds__loose__skin__mute.wav.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/icon.bmp.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/icon.bmp.i new file mode 100644 index 0000000..e5c6491 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/icon.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/ship.bmp.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/ship.bmp.i new file mode 100644 index 0000000..4c85cd7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/ship.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/space.bmp.d b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/space.bmp.d new file mode 100644 index 0000000..0aee384 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/space.bmp.d differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/space.bmp.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/space.bmp.i new file mode 100644 index 0000000..1914b0a Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/space.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/stroke.bmp.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/stroke.bmp.i new file mode 100644 index 0000000..01e4d52 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/data/stroke.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/accelerometer.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/accelerometer.c.i new file mode 100644 index 0000000..1b29df1 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/accelerometer.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/common.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/common.c.i new file mode 100644 index 0000000..908b4e7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/common.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/common.h.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/common.h.i new file mode 100644 index 0000000..592c35b Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/common.h.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/fireworks.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/fireworks.c.i new file mode 100644 index 0000000..a956ad8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/fireworks.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/happy.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/happy.c.i new file mode 100644 index 0000000..8c53695 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/happy.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/keyboard.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/keyboard.c.i new file mode 100644 index 0000000..c03a22c Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/keyboard.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/mixer.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/mixer.c.i new file mode 100644 index 0000000..451a9f2 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/mixer.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/rectangles.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/rectangles.c.i new file mode 100644 index 0000000..77cb633 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/rectangles.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/touch.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/touch.c.i new file mode 100644 index 0000000..15f8cbd Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_demos/src/touch.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..b620c00 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..d343886 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6256736 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/_s_d_li_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/testsdl-_info.plist.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/testsdl-_info.plist.i new file mode 100644 index 0000000..c294d63 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_s_d_l/testsdl-_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i new file mode 100644 index 0000000..17427ce Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/_template_icon.icns.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.mode1v3.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.mode1v3.i new file mode 100644 index 0000000..53868c3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.mode1v3.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.pbxuser.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.pbxuser.i new file mode 100644 index 0000000..35d9040 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/hfutrell.pbxuser.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..37fcea3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_______p_r_o_j_e_c_t_n_a_m_e______.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_default.png.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_default.png.i new file mode 100644 index 0000000..f4eca67 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_default.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_icon.png.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_icon.png.i new file mode 100644 index 0000000..51e24e6 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_icon.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_info.plist.i new file mode 100644 index 0000000..b2bc0b6 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/main.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/main.c.i new file mode 100644 index 0000000..6173116 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_default.png.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_default.png.i new file mode 100644 index 0000000..d8f4b4a Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_default.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_icon.png.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_icon.png.i new file mode 100644 index 0000000..d4d7bcd Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_icon.png.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_info.plist.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_info.plist.i new file mode 100644 index 0000000..ec07f68 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/main.c.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/main.c.i new file mode 100644 index 0000000..634abb3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_template/_s_d_l i_o_s _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_info.plist.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_info.plist.i new file mode 100644 index 0000000..536a108 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_r_e_a_d_m_e.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_r_e_a_d_m_e.i new file mode 100644 index 0000000..e506ccf Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e66d2e3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/_test/_testi_phone_o_s.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode-i_phone_o_s/rakefile.i b/SDL/.hg/store/data/_xcode-i_phone_o_s/rakefile.i new file mode 100644 index 0000000..096ac40 Binary files /dev/null and b/SDL/.hg/store/data/_xcode-i_phone_o_s/rakefile.i differ diff --git a/SDL/.hg/store/data/_xcode.tar.gz.d b/SDL/.hg/store/data/_xcode.tar.gz.d new file mode 100644 index 0000000..69f8490 Binary files /dev/null and b/SDL/.hg/store/data/_xcode.tar.gz.d differ diff --git a/SDL/.hg/store/data/_xcode.tar.gz.i b/SDL/.hg/store/data/_xcode.tar.gz.i new file mode 100644 index 0000000..de30e65 Binary files /dev/null and b/SDL/.hg/store/data/_xcode.tar.gz.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/_info-_framework.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l/_info-_framework.plist.i new file mode 100644 index 0000000..b16b0a2 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/_info-_framework.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/_info-_framework_no_x11.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l/_info-_framework_no_x11.plist.i new file mode 100644 index 0000000..fcfebd4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/_info-_framework_no_x11.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.d b/SDL/.hg/store/data/_xcode/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.d new file mode 100644 index 0000000..a58e995 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.d differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..136740f Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/_s_d_l.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_readme _s_d_l _developer.txt.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_readme _s_d_l _developer.txt.i new file mode 100644 index 0000000..f78b5de Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_readme _s_d_l _developer.txt.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_s_d_l-devel.info.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_s_d_l-devel.info.i new file mode 100644 index 0000000..ea496cd Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_s_d_l-devel.info.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_s_d_l.info.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_s_d_l.info.i new file mode 100644 index 0000000..e786d49 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/_s_d_l.info.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/codesign-frameworks.sh.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/codesign-frameworks.sh.i new file mode 100644 index 0000000..a7046ff Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/codesign-frameworks.sh.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/_read_me.txt.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/_read_me.txt.i new file mode 100644 index 0000000..d451208 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/_read_me.txt.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/_welcome.txt.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/_welcome.txt.i new file mode 100644 index 0000000..0939571 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/_welcome.txt.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/install.sh.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/install.sh.i new file mode 100644 index 0000000..dce7892 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/devel-resources/install.sh.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_license.rtf.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_license.rtf.i new file mode 100644 index 0000000..eeaec0c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_license.rtf.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_license.txt.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_license.txt.i new file mode 100644 index 0000000..92eb945 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_license.txt.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_read_me.txt.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_read_me.txt.i new file mode 100644 index 0000000..787c538 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_read_me.txt.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_read_me_dev_lite.txt.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_read_me_dev_lite.txt.i new file mode 100644 index 0000000..7af4c00 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_read_me_dev_lite.txt.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_s_d_l___d_s___store.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_s_d_l___d_s___store.i new file mode 100644 index 0000000..7958712 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_s_d_l___d_s___store.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_universal_binary_notes.rtf.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_universal_binary_notes.rtf.i new file mode 100644 index 0000000..2bf224e Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/resources/_universal_binary_notes.rtf.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/sdl__logo.pdf.d b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/sdl__logo.pdf.d new file mode 100644 index 0000000..7cad17f Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/sdl__logo.pdf.d differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/sdl__logo.pdf.i b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/sdl__logo.pdf.i new file mode 100644 index 0000000..deb868b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/pkg-support/sdl__logo.pdf.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l/testsdl-_info.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l/testsdl-_info.plist.i new file mode 100644 index 0000000..644e6aa Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l/testsdl-_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-checkkeys_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-checkkeys_____upgraded__.plist.i new file mode 100644 index 0000000..7c72ad3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-checkkeys_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-graywin_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-graywin_____upgraded__.plist.i new file mode 100644 index 0000000..5c4bc1b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-graywin_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-loopwave_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-loopwave_____upgraded__.plist.i new file mode 100644 index 0000000..dda8812 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-loopwave_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-test.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-test.plist.i new file mode 100644 index 0000000..3ccb3c9 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-test.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testalpha_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testalpha_____upgraded__.plist.i new file mode 100644 index 0000000..4bfecc4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testalpha_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testatomic.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testatomic.plist.i new file mode 100644 index 0000000..460e371 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testatomic.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testaudioinfo.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testaudioinfo.plist.i new file mode 100644 index 0000000..96b8255 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testaudioinfo.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testbitmap_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testbitmap_____upgraded__.plist.i new file mode 100644 index 0000000..c257fbe Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testbitmap_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testblitspeed.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testblitspeed.plist.i new file mode 100644 index 0000000..c3d1394 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testblitspeed.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testcdrom_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testcdrom_____upgraded__.plist.i new file mode 100644 index 0000000..4596dfa Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testcdrom_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testcursor.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testcursor.plist.i new file mode 100644 index 0000000..481d5fe Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testcursor.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testdraw2.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testdraw2.plist.i new file mode 100644 index 0000000..b03b37c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testdraw2.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testdyngl.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testdyngl.plist.i new file mode 100644 index 0000000..4568d2b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testdyngl.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testerror_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testerror_____upgraded__.plist.i new file mode 100644 index 0000000..6ade95a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testerror_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testfile.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testfile.plist.i new file mode 100644 index 0000000..4454b8a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testfile.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgamma_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgamma_____upgraded__.plist.i new file mode 100644 index 0000000..5409269 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgamma_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgl2.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgl2.plist.i new file mode 100644 index 0000000..5b0695a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgl2.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgl_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgl_____upgraded__.plist.i new file mode 100644 index 0000000..8f6c48d Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testgl_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testhaptic.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testhaptic.plist.i new file mode 100644 index 0000000..730c768 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testhaptic.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testiconv.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testiconv.plist.i new file mode 100644 index 0000000..2af6257 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testiconv.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testime.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testime.plist.i new file mode 100644 index 0000000..be60c2e Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testime.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testintersections.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testintersections.plist.i new file mode 100644 index 0000000..40a06e2 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testintersections.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testjoystick_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testjoystick_____upgraded__.plist.i new file mode 100644 index 0000000..9e36085 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testjoystick_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testkeys_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testkeys_____upgraded__.plist.i new file mode 100644 index 0000000..dce2619 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testkeys_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testloadso.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testloadso.plist.i new file mode 100644 index 0000000..a895795 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testloadso.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testlock_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testlock_____upgraded__.plist.i new file mode 100644 index 0000000..f3e0a11 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testlock_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testmousetablet.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testmousetablet.plist.i new file mode 100644 index 0000000..90c1354 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testmousetablet.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testmultiaudio.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testmultiaudio.plist.i new file mode 100644 index 0000000..263af47 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testmultiaudio.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testnativecocoa.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testnativecocoa.plist.i new file mode 100644 index 0000000..a19bac1 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testnativecocoa.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testnativex11.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testnativex11.plist.i new file mode 100644 index 0000000..eb2ffde Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testnativex11.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testoverlay2.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testoverlay2.plist.i new file mode 100644 index 0000000..b5533bf Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testoverlay2.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testoverlay_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testoverlay_____upgraded__.plist.i new file mode 100644 index 0000000..82e31d1 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testoverlay_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testpalette_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testpalette_____upgraded__.plist.i new file mode 100644 index 0000000..9903dea Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testpalette_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testplatform.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testplatform.plist.i new file mode 100644 index 0000000..dbc5689 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testplatform.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testpower.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testpower.plist.i new file mode 100644 index 0000000..cb402e7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testpower.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testresample.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testresample.plist.i new file mode 100644 index 0000000..c687088 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testresample.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsem_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsem_____upgraded__.plist.i new file mode 100644 index 0000000..5a905eb Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsem_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsprite2.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsprite2.plist.i new file mode 100644 index 0000000..2ed22c0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsprite2.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsprite_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsprite_____upgraded__.plist.i new file mode 100644 index 0000000..dc18af6 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testsprite_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testthread_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testthread_____upgraded__.plist.i new file mode 100644 index 0000000..8920213 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testthread_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testtimer_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testtimer_____upgraded__.plist.i new file mode 100644 index 0000000..b9038fe Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testtimer_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testtypes_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testtypes_____upgraded__.plist.i new file mode 100644 index 0000000..e95e16e Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testtypes_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testversion_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testversion_____upgraded__.plist.i new file mode 100644 index 0000000..e85d647 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testversion_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testvidinfo_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testvidinfo_____upgraded__.plist.i new file mode 100644 index 0000000..cc4f613 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testvidinfo_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwin_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwin_____upgraded__.plist.i new file mode 100644 index 0000000..b7e5882 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwin_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwm2.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwm2.plist.i new file mode 100644 index 0000000..b728b6a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwm2.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwm_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwm_____upgraded__.plist.i new file mode 100644 index 0000000..075e920 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-testwm_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-threadwin_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-threadwin_____upgraded__.plist.i new file mode 100644 index 0000000..f7ef757 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-threadwin_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-torturethread_____upgraded__.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-torturethread_____upgraded__.plist.i new file mode 100644 index 0000000..f9fa783 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_info-torturethread_____upgraded__.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_s_d_l_test.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_s_d_l_test.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..a716130 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_s_d_l_test.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/_test_drop_file-_info.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/_test_drop_file-_info.plist.i new file mode 100644 index 0000000..fbbecb2 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/_test_drop_file-_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/libsdlmain__prefix.h.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/libsdlmain__prefix.h.i new file mode 100644 index 0000000..1b4a6d3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/libsdlmain__prefix.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/sdlcommon__prefix.h.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/sdlcommon__prefix.h.i new file mode 100644 index 0000000..5377936 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/sdlcommon__prefix.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_s_d_l_test/testgamecontroller-_info.plist.i b/SDL/.hg/store/data/_xcode/_s_d_l_test/testgamecontroller-_info.plist.i new file mode 100644 index 0000000..e8ebacd Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_s_d_l_test/testgamecontroller-_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_application.trgttmpl.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_application.trgttmpl.i new file mode 100644 index 0000000..020df86 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_application.trgttmpl.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l _app.pbproj/_template_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l _app.pbproj/_template_info.plist.i new file mode 100644 index 0000000..c4c86c8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l _app.pbproj/_template_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l _app.pbproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l _app.pbproj/project.pbxproj.i new file mode 100644 index 0000000..f701a99 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l _app.pbproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..a47af5c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..e8f5d1b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/main.c.i new file mode 100644 index 0000000..514117b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l _cocoa _app.pbproj/_template_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l _cocoa _app.pbproj/_template_info.plist.i new file mode 100644 index 0000000..8ff84ec Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l _cocoa _app.pbproj/_template_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l _cocoa _app.pbproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l _cocoa _app.pbproj/project.pbxproj.i new file mode 100644 index 0000000..c5cf913 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l _cocoa _app.pbproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.h.i new file mode 100644 index 0000000..4eb00dc Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.m.i new file mode 100644 index 0000000..82111b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..7e4f2de Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..d5181bc Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..182a750 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/main.c.i new file mode 100644 index 0000000..514117b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _cocoa _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_controller.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_controller.h.i new file mode 100644 index 0000000..987cebc Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_controller.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_controller.m.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_controller.m.i new file mode 100644 index 0000000..1122521 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_controller.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_view.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_view.h.i new file mode 100644 index 0000000..baabb7d Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_view.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_view.m.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_view.m.i new file mode 100644 index 0000000..41539c4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_view.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_window.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_window.h.i new file mode 100644 index 0000000..b853524 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_window.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_window.m.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_window.m.i new file mode 100644 index 0000000..20ea227 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_my_custom_window.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.h.i new file mode 100644 index 0000000..b820979 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.m.i new file mode 100644 index 0000000..02ab9d0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..916af09 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..4a4f047 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..61d4b15 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/icon.bmp.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/icon.bmp.i new file mode 100644 index 0000000..2372b57 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/icon.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/prefix.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/prefix.h.i new file mode 100644 index 0000000..4a5692f Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _custom _cocoa _application/prefix.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l _open_g_l _app.pbproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l _open_g_l _app.pbproj/project.pbxproj.i new file mode 100644 index 0000000..34be633 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l _open_g_l _app.pbproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..a47af5c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..e8f5d1b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/atlantis.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/atlantis.c.i new file mode 100644 index 0000000..5c75860 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/atlantis.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/atlantis.h.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/atlantis.h.i new file mode 100644 index 0000000..7c596a5 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/atlantis.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/dolphin.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/dolphin.c.i new file mode 100644 index 0000000..6b2f0d8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/dolphin.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/shark.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/shark.c.i new file mode 100644 index 0000000..ec51957 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/shark.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/swim.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/swim.c.i new file mode 100644 index 0000000..359ab12 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/swim.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/whale.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/whale.c.i new file mode 100644 index 0000000..5bc0fe6 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/atlantis/whale.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/main.c.i new file mode 100644 index 0000000..c1ee456 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_project_builder/_s_d_l _open_g_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_info.plist.i new file mode 100644 index 0000000..f7c1451 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app.xcodeproj/_template_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app.xcodeproj/_template_info.plist.i new file mode 100644 index 0000000..fa84efd Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app.xcodeproj/_template_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..cb15e8a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..5aea276 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..a47af5c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..e8f5d1b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/main.c.i new file mode 100644 index 0000000..514117b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..7e4f2de Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..d5181bc Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..182a750 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_info.plist.i new file mode 100644 index 0000000..f7c1451 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..5aea276 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/_template_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/_template_info.plist.i new file mode 100644 index 0000000..e050a54 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/_template_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..7171062 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_main.h.i new file mode 100644 index 0000000..4eb00dc Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_main.m.i new file mode 100644 index 0000000..82111b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/main.c.i new file mode 100644 index 0000000..514117b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _cocoa _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..916af09 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..5cba7d7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..e9adca6 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_info.plist.i new file mode 100644 index 0000000..f7c1451 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_controller.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_controller.h.i new file mode 100644 index 0000000..987cebc Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_controller.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_controller.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_controller.m.i new file mode 100644 index 0000000..1122521 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_controller.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_view.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_view.h.i new file mode 100644 index 0000000..baabb7d Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_view.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_view.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_view.m.i new file mode 100644 index 0000000..41539c4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_view.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_window.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_window.h.i new file mode 100644 index 0000000..b853524 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_window.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_window.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_window.m.i new file mode 100644 index 0000000..20ea227 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_my_custom_window.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..5aea276 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_custom_cocoa_app.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_custom_cocoa_app.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..3492866 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_custom_cocoa_app.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_main.h.i new file mode 100644 index 0000000..b820979 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_main.m.i new file mode 100644 index 0000000..02ab9d0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/icon.bmp.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/icon.bmp.i new file mode 100644 index 0000000..2372b57 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _custom _cocoa _application/icon.bmp.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..b9df5b4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_info.plist.i new file mode 100644 index 0000000..f7c1451 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..5aea276 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..a47af5c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..e8f5d1b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/_template_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/_template_info.plist.i new file mode 100644 index 0000000..c97a805 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/_template_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..f8f59db Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/atlantis.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/atlantis.c.i new file mode 100644 index 0000000..5c75860 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/atlantis.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/atlantis.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/atlantis.h.i new file mode 100644 index 0000000..7c596a5 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/atlantis.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/dolphin.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/dolphin.c.i new file mode 100644 index 0000000..6b2f0d8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/dolphin.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/shark.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/shark.c.i new file mode 100644 index 0000000..ec51957 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/shark.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/swim.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/swim.c.i new file mode 100644 index 0000000..359ab12 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/swim.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/whale.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/whale.c.i new file mode 100644 index 0000000..5bc0fe6 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/atlantis/whale.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/main.c.i new file mode 100644 index 0000000..c1ee456 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode/_s_d_l _open_g_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..10ee17a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_info.plist.i new file mode 100644 index 0000000..9f71aff Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..1fbc4fb Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..5397544 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..08e0fe0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/main.c.i new file mode 100644 index 0000000..de0d774 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..10ee17a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..392dbe5 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..c079c6c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..ece46e8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_info.plist.i new file mode 100644 index 0000000..ebfe495 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..1fbc4fb Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_main.h.i new file mode 100644 index 0000000..5397544 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_main.m.i new file mode 100644 index 0000000..08e0fe0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/main.c.i new file mode 100644 index 0000000..de0d774 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _cocoa _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..10ee17a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_info.plist.i new file mode 100644 index 0000000..c82d036 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..1fbc4fb Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..5397544 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..08e0fe0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.c.i new file mode 100644 index 0000000..cb2d26a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.h.i new file mode 100644 index 0000000..a161e4d Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/dolphin.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/dolphin.c.i new file mode 100644 index 0000000..6aa60da Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/dolphin.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/shark.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/shark.c.i new file mode 100644 index 0000000..2580bce Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/shark.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/swim.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/swim.c.i new file mode 100644 index 0000000..fb8deb8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/swim.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/whale.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/whale.c.i new file mode 100644 index 0000000..b814fe1 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/atlantis/whale.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/main.c.i new file mode 100644 index 0000000..4dfb891 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_leopard/_s_d_l _open_g_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..10ee17a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_info.plist.i new file mode 100644 index 0000000..9f71aff Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..1fbc4fb Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..5397544 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..08e0fe0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/main.c.i new file mode 100644 index 0000000..de0d774 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..10ee17a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..392dbe5 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..c079c6c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..ece46e8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_info.plist.i new file mode 100644 index 0000000..ebfe495 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..1fbc4fb Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_main.h.i new file mode 100644 index 0000000..5397544 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_main.m.i new file mode 100644 index 0000000..08e0fe0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/main.c.i new file mode 100644 index 0000000..de0d774 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _cocoa _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..10ee17a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_info.plist.i new file mode 100644 index 0000000..c82d036 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..1fbc4fb Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..5397544 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..08e0fe0 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.c.i new file mode 100644 index 0000000..cb2d26a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.h.i new file mode 100644 index 0000000..a161e4d Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/atlantis.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/dolphin.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/dolphin.c.i new file mode 100644 index 0000000..6aa60da Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/dolphin.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/shark.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/shark.c.i new file mode 100644 index 0000000..2580bce Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/shark.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/swim.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/swim.c.i new file mode 100644 index 0000000..fb8deb8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/swim.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/whale.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/whale.c.i new file mode 100644 index 0000000..b814fe1 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/atlantis/whale.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/main.c.i new file mode 100644 index 0000000..7685573 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_snow_leopard/_s_d_l _open_g_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..8cee4a7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_info.plist.i new file mode 100644 index 0000000..12cd23a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app.xcodeproj/_template_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app.xcodeproj/_template_info.plist.i new file mode 100644 index 0000000..43163ef Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app.xcodeproj/_template_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..71c5e0f Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..57d9260 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..9bfc75c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..14d8862 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/main.c.i new file mode 100644 index 0000000..b456571 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..8cee4a7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..cc814f9 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..161190b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..ca2c7e2 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_english.lproj/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_info.plist.i new file mode 100644 index 0000000..12cd23a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..57d9260 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/_template_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/_template_info.plist.i new file mode 100644 index 0000000..0d57c3c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/_template_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..f3c6b42 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_cocoa_app.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_main.h.i new file mode 100644 index 0000000..9bfc75c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_main.m.i new file mode 100644 index 0000000..14d8862 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/main.c.i new file mode 100644 index 0000000..b456571 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _cocoa _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i new file mode 100644 index 0000000..8cee4a7 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_english.lproj/_info_plist.strings.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_info.plist.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_info.plist.i new file mode 100644 index 0000000..12cd23a Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_info.plist.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i new file mode 100644 index 0000000..57d9260 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_app___prefix.pch.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_main.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_main.h.i new file mode 100644 index 0000000..9bfc75c Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_main.m.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_main.m.i new file mode 100644 index 0000000..14d8862 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..f42c9cd Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/_s_d_l_open_g_l_app.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/atlantis.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/atlantis.c.i new file mode 100644 index 0000000..0e8593d Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/atlantis.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/atlantis.h.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/atlantis.h.i new file mode 100644 index 0000000..dd59fe8 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/atlantis.h.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/dolphin.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/dolphin.c.i new file mode 100644 index 0000000..ca60505 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/dolphin.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/shark.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/shark.c.i new file mode 100644 index 0000000..866465b Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/shark.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/swim.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/swim.c.i new file mode 100644 index 0000000..f471f84 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/swim.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/whale.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/whale.c.i new file mode 100644 index 0000000..26b3c78 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/atlantis/whale.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/main.c.i b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/main.c.i new file mode 100644 index 0000000..8a28ca3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_templates_for_xcode_tiger/_s_d_l _open_g_l _application/main.c.i differ diff --git a/SDL/.hg/store/data/_xcode/_xcode_doc_set/_doxyfile.i b/SDL/.hg/store/data/_xcode/_xcode_doc_set/_doxyfile.i new file mode 100644 index 0000000..05849e2 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/_xcode_doc_set/_doxyfile.i differ diff --git a/SDL/.hg/store/data/_xcode/mkxcode.csh.i b/SDL/.hg/store/data/_xcode/mkxcode.csh.i new file mode 100644 index 0000000..a7e6404 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/mkxcode.csh.i differ diff --git a/SDL/.hg/store/data/_xcode/package.i b/SDL/.hg/store/data/_xcode/package.i new file mode 100644 index 0000000..2c191d4 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/package.i differ diff --git a/SDL/.hg/store/data/_xcode/stationary.csh.i b/SDL/.hg/store/data/_xcode/stationary.csh.i new file mode 100644 index 0000000..252c9f3 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/stationary.csh.i differ diff --git a/SDL/.hg/store/data/_xcode/uninstall.csh.i b/SDL/.hg/store/data/_xcode/uninstall.csh.i new file mode 100644 index 0000000..3684e70 Binary files /dev/null and b/SDL/.hg/store/data/_xcode/uninstall.csh.i differ diff --git a/SDL/.hg/store/data/acinclude.m4.d b/SDL/.hg/store/data/acinclude.m4.d new file mode 100644 index 0000000..f8d7fb2 Binary files /dev/null and b/SDL/.hg/store/data/acinclude.m4.d differ diff --git a/SDL/.hg/store/data/acinclude.m4.i b/SDL/.hg/store/data/acinclude.m4.i new file mode 100644 index 0000000..0b6bbd3 Binary files /dev/null and b/SDL/.hg/store/data/acinclude.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ac__check__define.m4.i b/SDL/.hg/store/data/acinclude/ac__check__define.m4.i new file mode 100644 index 0000000..09b49a8 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ac__check__define.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/alsa.m4.i b/SDL/.hg/store/data/acinclude/alsa.m4.i new file mode 100644 index 0000000..364c361 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/alsa.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ax__check__compiler__flags.m4.i b/SDL/.hg/store/data/acinclude/ax__check__compiler__flags.m4.i new file mode 100644 index 0000000..fe5a12f Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ax__check__compiler__flags.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ax__gcc__archflag.m4.i b/SDL/.hg/store/data/acinclude/ax__gcc__archflag.m4.i new file mode 100644 index 0000000..1f0cf90 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ax__gcc__archflag.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ax__gcc__x86__cpuid.m4.htm.i b/SDL/.hg/store/data/acinclude/ax__gcc__x86__cpuid.m4.htm.i new file mode 100644 index 0000000..c81a03a Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ax__gcc__x86__cpuid.m4.htm.i differ diff --git a/SDL/.hg/store/data/acinclude/c.m4.i b/SDL/.hg/store/data/acinclude/c.m4.i new file mode 100644 index 0000000..c5e85b2 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/c.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/esd.m4.i b/SDL/.hg/store/data/acinclude/esd.m4.i new file mode 100644 index 0000000..b5c2c83 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/esd.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/libtool.m4.d b/SDL/.hg/store/data/acinclude/libtool.m4.d new file mode 100644 index 0000000..272eb97 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/libtool.m4.d differ diff --git a/SDL/.hg/store/data/acinclude/libtool.m4.i b/SDL/.hg/store/data/acinclude/libtool.m4.i new file mode 100644 index 0000000..a07180a Binary files /dev/null and b/SDL/.hg/store/data/acinclude/libtool.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ltdl.m4.i b/SDL/.hg/store/data/acinclude/ltdl.m4.i new file mode 100644 index 0000000..864c1fa Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ltdl.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ltoptions.m4.i b/SDL/.hg/store/data/acinclude/ltoptions.m4.i new file mode 100644 index 0000000..0ba7405 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ltoptions.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ltsugar.m4.i b/SDL/.hg/store/data/acinclude/ltsugar.m4.i new file mode 100644 index 0000000..6d4402b Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ltsugar.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/ltversion.m4.i b/SDL/.hg/store/data/acinclude/ltversion.m4.i new file mode 100644 index 0000000..ec5323b Binary files /dev/null and b/SDL/.hg/store/data/acinclude/ltversion.m4.i differ diff --git a/SDL/.hg/store/data/acinclude/lt~7eobsolete.m4.i b/SDL/.hg/store/data/acinclude/lt~7eobsolete.m4.i new file mode 100644 index 0000000..c666048 Binary files /dev/null and b/SDL/.hg/store/data/acinclude/lt~7eobsolete.m4.i differ diff --git a/SDL/.hg/store/data/aclocal.m4.i b/SDL/.hg/store/data/aclocal.m4.i new file mode 100644 index 0000000..365e338 Binary files /dev/null and b/SDL/.hg/store/data/aclocal.m4.i differ diff --git a/SDL/.hg/store/data/android-project/_android_manifest.xml.i b/SDL/.hg/store/data/android-project/_android_manifest.xml.i new file mode 100644 index 0000000..be2b104 Binary files /dev/null and b/SDL/.hg/store/data/android-project/_android_manifest.xml.i differ diff --git a/SDL/.hg/store/data/android-project/ant.properties.i b/SDL/.hg/store/data/android-project/ant.properties.i new file mode 100644 index 0000000..7b6e233 Binary files /dev/null and b/SDL/.hg/store/data/android-project/ant.properties.i differ diff --git a/SDL/.hg/store/data/android-project/build.properties.i b/SDL/.hg/store/data/android-project/build.properties.i new file mode 100644 index 0000000..8bdc0d0 Binary files /dev/null and b/SDL/.hg/store/data/android-project/build.properties.i differ diff --git a/SDL/.hg/store/data/android-project/build.xml.i b/SDL/.hg/store/data/android-project/build.xml.i new file mode 100644 index 0000000..4dbd5ab Binary files /dev/null and b/SDL/.hg/store/data/android-project/build.xml.i differ diff --git a/SDL/.hg/store/data/android-project/default.properties.i b/SDL/.hg/store/data/android-project/default.properties.i new file mode 100644 index 0000000..db07c60 Binary files /dev/null and b/SDL/.hg/store/data/android-project/default.properties.i differ diff --git a/SDL/.hg/store/data/android-project/jni/_android.mk.i b/SDL/.hg/store/data/android-project/jni/_android.mk.i new file mode 100644 index 0000000..99d0c16 Binary files /dev/null and b/SDL/.hg/store/data/android-project/jni/_android.mk.i differ diff --git a/SDL/.hg/store/data/android-project/jni/_application.mk.i b/SDL/.hg/store/data/android-project/jni/_application.mk.i new file mode 100644 index 0000000..96a114c Binary files /dev/null and b/SDL/.hg/store/data/android-project/jni/_application.mk.i differ diff --git a/SDL/.hg/store/data/android-project/jni/src/_android.mk.i b/SDL/.hg/store/data/android-project/jni/src/_android.mk.i new file mode 100644 index 0000000..6f11847 Binary files /dev/null and b/SDL/.hg/store/data/android-project/jni/src/_android.mk.i differ diff --git a/SDL/.hg/store/data/android-project/jni/src/_android__static.mk.i b/SDL/.hg/store/data/android-project/jni/src/_android__static.mk.i new file mode 100644 index 0000000..606667a Binary files /dev/null and b/SDL/.hg/store/data/android-project/jni/src/_android__static.mk.i differ diff --git a/SDL/.hg/store/data/android-project/local.properties.i b/SDL/.hg/store/data/android-project/local.properties.i new file mode 100644 index 0000000..03de0a5 Binary files /dev/null and b/SDL/.hg/store/data/android-project/local.properties.i differ diff --git a/SDL/.hg/store/data/android-project/proguard-project.txt.i b/SDL/.hg/store/data/android-project/proguard-project.txt.i new file mode 100644 index 0000000..e7635ba Binary files /dev/null and b/SDL/.hg/store/data/android-project/proguard-project.txt.i differ diff --git a/SDL/.hg/store/data/android-project/project.properties.i b/SDL/.hg/store/data/android-project/project.properties.i new file mode 100644 index 0000000..b7aea3a Binary files /dev/null and b/SDL/.hg/store/data/android-project/project.properties.i differ diff --git a/SDL/.hg/store/data/android-project/res/drawable-hdpi/ic__launcher.png.i b/SDL/.hg/store/data/android-project/res/drawable-hdpi/ic__launcher.png.i new file mode 100644 index 0000000..a74078a Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/drawable-hdpi/ic__launcher.png.i differ diff --git a/SDL/.hg/store/data/android-project/res/drawable-hdpi/icon.png.i b/SDL/.hg/store/data/android-project/res/drawable-hdpi/icon.png.i new file mode 100644 index 0000000..0f76383 Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/drawable-hdpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android-project/res/drawable-ldpi/icon.png.i b/SDL/.hg/store/data/android-project/res/drawable-ldpi/icon.png.i new file mode 100644 index 0000000..9c23927 Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/drawable-ldpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android-project/res/drawable-mdpi/ic__launcher.png.i b/SDL/.hg/store/data/android-project/res/drawable-mdpi/ic__launcher.png.i new file mode 100644 index 0000000..a6f04d2 Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/drawable-mdpi/ic__launcher.png.i differ diff --git a/SDL/.hg/store/data/android-project/res/drawable-mdpi/icon.png.i b/SDL/.hg/store/data/android-project/res/drawable-mdpi/icon.png.i new file mode 100644 index 0000000..095aa61 Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/drawable-mdpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android-project/res/drawable-xhdpi/ic__launcher.png.i b/SDL/.hg/store/data/android-project/res/drawable-xhdpi/ic__launcher.png.i new file mode 100644 index 0000000..dc228ba Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/drawable-xhdpi/ic__launcher.png.i differ diff --git a/SDL/.hg/store/data/android-project/res/drawable-xxhdpi/ic__launcher.png.i b/SDL/.hg/store/data/android-project/res/drawable-xxhdpi/ic__launcher.png.i new file mode 100644 index 0000000..6b5dbc2 Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/drawable-xxhdpi/ic__launcher.png.i differ diff --git a/SDL/.hg/store/data/android-project/res/layout/main.xml.i b/SDL/.hg/store/data/android-project/res/layout/main.xml.i new file mode 100644 index 0000000..2544763 Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/layout/main.xml.i differ diff --git a/SDL/.hg/store/data/android-project/res/values/strings.xml.i b/SDL/.hg/store/data/android-project/res/values/strings.xml.i new file mode 100644 index 0000000..3f8befc Binary files /dev/null and b/SDL/.hg/store/data/android-project/res/values/strings.xml.i differ diff --git a/SDL/.hg/store/data/android-project/src/org/libsdl/app/_s_d_l_activity.java.i b/SDL/.hg/store/data/android-project/src/org/libsdl/app/_s_d_l_activity.java.i new file mode 100644 index 0000000..1d380c4 Binary files /dev/null and b/SDL/.hg/store/data/android-project/src/org/libsdl/app/_s_d_l_activity.java.i differ diff --git a/SDL/.hg/store/data/android/config.cfg.example.i b/SDL/.hg/store/data/android/config.cfg.example.i new file mode 100644 index 0000000..e1f07ad Binary files /dev/null and b/SDL/.hg/store/data/android/config.cfg.example.i differ diff --git a/SDL/.hg/store/data/android/config.cfg.i b/SDL/.hg/store/data/android/config.cfg.i new file mode 100644 index 0000000..3947fc7 Binary files /dev/null and b/SDL/.hg/store/data/android/config.cfg.i differ diff --git a/SDL/.hg/store/data/android/project/_android_manifest.xml.i b/SDL/.hg/store/data/android/project/_android_manifest.xml.i new file mode 100644 index 0000000..77a543f Binary files /dev/null and b/SDL/.hg/store/data/android/project/_android_manifest.xml.i differ diff --git a/SDL/.hg/store/data/android/project/build.properties.i b/SDL/.hg/store/data/android/project/build.properties.i new file mode 100644 index 0000000..cdb2be5 Binary files /dev/null and b/SDL/.hg/store/data/android/project/build.properties.i differ diff --git a/SDL/.hg/store/data/android/project/build.xml.i b/SDL/.hg/store/data/android/project/build.xml.i new file mode 100644 index 0000000..c2f0830 Binary files /dev/null and b/SDL/.hg/store/data/android/project/build.xml.i differ diff --git a/SDL/.hg/store/data/android/project/default.properties.i b/SDL/.hg/store/data/android/project/default.properties.i new file mode 100644 index 0000000..d79d7df Binary files /dev/null and b/SDL/.hg/store/data/android/project/default.properties.i differ diff --git a/SDL/.hg/store/data/android/project/jni/_android.mk.i b/SDL/.hg/store/data/android/project/jni/_android.mk.i new file mode 100644 index 0000000..253dd22 Binary files /dev/null and b/SDL/.hg/store/data/android/project/jni/_android.mk.i differ diff --git a/SDL/.hg/store/data/android/project/jni/android-support.cpp.i b/SDL/.hg/store/data/android/project/jni/android-support.cpp.i new file mode 100644 index 0000000..0f0d2e3 Binary files /dev/null and b/SDL/.hg/store/data/android/project/jni/android-support.cpp.i differ diff --git a/SDL/.hg/store/data/android/project/jni/lesson05.c.i b/SDL/.hg/store/data/android/project/jni/lesson05.c.i new file mode 100644 index 0000000..84f7472 Binary files /dev/null and b/SDL/.hg/store/data/android/project/jni/lesson05.c.i differ diff --git a/SDL/.hg/store/data/android/project/local.properties.i b/SDL/.hg/store/data/android/project/local.properties.i new file mode 100644 index 0000000..e022bd2 Binary files /dev/null and b/SDL/.hg/store/data/android/project/local.properties.i differ diff --git a/SDL/.hg/store/data/android/project/res/drawable-hdpi/icon.png.i b/SDL/.hg/store/data/android/project/res/drawable-hdpi/icon.png.i new file mode 100644 index 0000000..b6e331b Binary files /dev/null and b/SDL/.hg/store/data/android/project/res/drawable-hdpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android/project/res/drawable-ldpi/icon.png.i b/SDL/.hg/store/data/android/project/res/drawable-ldpi/icon.png.i new file mode 100644 index 0000000..b3cf009 Binary files /dev/null and b/SDL/.hg/store/data/android/project/res/drawable-ldpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android/project/res/drawable-mdpi/icon.png.i b/SDL/.hg/store/data/android/project/res/drawable-mdpi/icon.png.i new file mode 100644 index 0000000..3956218 Binary files /dev/null and b/SDL/.hg/store/data/android/project/res/drawable-mdpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android/project/res/layout/main.xml.i b/SDL/.hg/store/data/android/project/res/layout/main.xml.i new file mode 100644 index 0000000..5d89b50 Binary files /dev/null and b/SDL/.hg/store/data/android/project/res/layout/main.xml.i differ diff --git a/SDL/.hg/store/data/android/project/res/values/strings.xml.i b/SDL/.hg/store/data/android/project/res/values/strings.xml.i new file mode 100644 index 0000000..d087445 Binary files /dev/null and b/SDL/.hg/store/data/android/project/res/values/strings.xml.i differ diff --git a/SDL/.hg/store/data/android/project/src/org/libsdl/app/_s_d_l_activity.java.i b/SDL/.hg/store/data/android/project/src/org/libsdl/app/_s_d_l_activity.java.i new file mode 100644 index 0000000..4fef9f0 Binary files /dev/null and b/SDL/.hg/store/data/android/project/src/org/libsdl/app/_s_d_l_activity.java.i differ diff --git a/SDL/.hg/store/data/android/scripts/acc.sh.i b/SDL/.hg/store/data/android/scripts/acc.sh.i new file mode 100644 index 0000000..1b66c4f Binary files /dev/null and b/SDL/.hg/store/data/android/scripts/acc.sh.i differ diff --git a/SDL/.hg/store/data/android/scripts/ald.sh.i b/SDL/.hg/store/data/android/scripts/ald.sh.i new file mode 100644 index 0000000..201a568 Binary files /dev/null and b/SDL/.hg/store/data/android/scripts/ald.sh.i differ diff --git a/SDL/.hg/store/data/android/testproject/_android_manifest.xml.i b/SDL/.hg/store/data/android/testproject/_android_manifest.xml.i new file mode 100644 index 0000000..8471b85 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/_android_manifest.xml.i differ diff --git a/SDL/.hg/store/data/android/testproject/build.properties.i b/SDL/.hg/store/data/android/testproject/build.properties.i new file mode 100644 index 0000000..4878a2b Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/build.properties.i differ diff --git a/SDL/.hg/store/data/android/testproject/build.xml.i b/SDL/.hg/store/data/android/testproject/build.xml.i new file mode 100644 index 0000000..09f774b Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/build.xml.i differ diff --git a/SDL/.hg/store/data/android/testproject/default.properties.i b/SDL/.hg/store/data/android/testproject/default.properties.i new file mode 100644 index 0000000..13bb4e7 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/default.properties.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/_android.mk.i b/SDL/.hg/store/data/android/testproject/jni/_android.mk.i new file mode 100644 index 0000000..ec0d011 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/_android.mk.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/app-android.c.i b/SDL/.hg/store/data/android/testproject/jni/app-android.c.i new file mode 100644 index 0000000..ede9e64 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/app-android.c.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/app-android.cpp.i b/SDL/.hg/store/data/android/testproject/jni/app-android.cpp.i new file mode 100644 index 0000000..209a343 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/app-android.cpp.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/egl.h.i b/SDL/.hg/store/data/android/testproject/jni/egl.h.i new file mode 100644 index 0000000..9a1ff7a Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/egl.h.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/eglnatives.h.i b/SDL/.hg/store/data/android/testproject/jni/eglnatives.h.i new file mode 100644 index 0000000..419d1d4 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/eglnatives.h.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/egltypes.h.i b/SDL/.hg/store/data/android/testproject/jni/egltypes.h.i new file mode 100644 index 0000000..8d2aa1d Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/egltypes.h.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/importgl.c.i b/SDL/.hg/store/data/android/testproject/jni/importgl.c.i new file mode 100644 index 0000000..d3f71fd Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/importgl.c.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/importgl.cpp.i b/SDL/.hg/store/data/android/testproject/jni/importgl.cpp.i new file mode 100644 index 0000000..085ebc9 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/importgl.cpp.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/importgl.h.i b/SDL/.hg/store/data/android/testproject/jni/importgl.h.i new file mode 100644 index 0000000..4a8773e Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/importgl.h.i differ diff --git a/SDL/.hg/store/data/android/testproject/jni/lesson05.c.i b/SDL/.hg/store/data/android/testproject/jni/lesson05.c.i new file mode 100644 index 0000000..247aaa8 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/jni/lesson05.c.i differ diff --git a/SDL/.hg/store/data/android/testproject/libs/armeabi/libsanangeles.so.i b/SDL/.hg/store/data/android/testproject/libs/armeabi/libsanangeles.so.i new file mode 100644 index 0000000..d3ce161 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/libs/armeabi/libsanangeles.so.i differ diff --git a/SDL/.hg/store/data/android/testproject/local.properties.i b/SDL/.hg/store/data/android/testproject/local.properties.i new file mode 100644 index 0000000..2c92963 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/local.properties.i differ diff --git a/SDL/.hg/store/data/android/testproject/res/drawable-hdpi/icon.png.i b/SDL/.hg/store/data/android/testproject/res/drawable-hdpi/icon.png.i new file mode 100644 index 0000000..6447a22 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/res/drawable-hdpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android/testproject/res/drawable-ldpi/icon.png.i b/SDL/.hg/store/data/android/testproject/res/drawable-ldpi/icon.png.i new file mode 100644 index 0000000..1bdd2db Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/res/drawable-ldpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android/testproject/res/drawable-mdpi/icon.png.i b/SDL/.hg/store/data/android/testproject/res/drawable-mdpi/icon.png.i new file mode 100644 index 0000000..c9851ab Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/res/drawable-mdpi/icon.png.i differ diff --git a/SDL/.hg/store/data/android/testproject/res/layout/main.xml.i b/SDL/.hg/store/data/android/testproject/res/layout/main.xml.i new file mode 100644 index 0000000..7a3f135 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/res/layout/main.xml.i differ diff --git a/SDL/.hg/store/data/android/testproject/res/values/strings.xml.i b/SDL/.hg/store/data/android/testproject/res/values/strings.xml.i new file mode 100644 index 0000000..21b266b Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/res/values/strings.xml.i differ diff --git a/SDL/.hg/store/data/android/testproject/src/org/libsdl/android/_s_d_l_activity.java.i b/SDL/.hg/store/data/android/testproject/src/org/libsdl/android/_s_d_l_activity.java.i new file mode 100644 index 0000000..1703845 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/src/org/libsdl/android/_s_d_l_activity.java.i differ diff --git a/SDL/.hg/store/data/android/testproject/src/org/libsdl/android/_test_activity.java.i b/SDL/.hg/store/data/android/testproject/src/org/libsdl/android/_test_activity.java.i new file mode 100644 index 0000000..c89b9c8 Binary files /dev/null and b/SDL/.hg/store/data/android/testproject/src/org/libsdl/android/_test_activity.java.i differ diff --git a/SDL/.hg/store/data/autogen.sh.i b/SDL/.hg/store/data/autogen.sh.i new file mode 100644 index 0000000..1447730 Binary files /dev/null and b/SDL/.hg/store/data/autogen.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/acc.sh.i b/SDL/.hg/store/data/build-scripts/acc.sh.i new file mode 100644 index 0000000..dfef690 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/acc.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/ald.sh.i b/SDL/.hg/store/data/build-scripts/ald.sh.i new file mode 100644 index 0000000..38f155b Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/ald.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/android__libs/lib_e_g_l.so.i b/SDL/.hg/store/data/build-scripts/android__libs/lib_e_g_l.so.i new file mode 100644 index 0000000..d39b089 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/android__libs/lib_e_g_l.so.i differ diff --git a/SDL/.hg/store/data/build-scripts/android__libs/libcutils.so.i b/SDL/.hg/store/data/build-scripts/android__libs/libcutils.so.i new file mode 100644 index 0000000..aafa496 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/android__libs/libcutils.so.i differ diff --git a/SDL/.hg/store/data/build-scripts/android__libs/libutils.so.i b/SDL/.hg/store/data/build-scripts/android__libs/libutils.so.i new file mode 100644 index 0000000..60c7fd8 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/android__libs/libutils.so.i differ diff --git a/SDL/.hg/store/data/build-scripts/androidbuild.sh.i b/SDL/.hg/store/data/build-scripts/androidbuild.sh.i new file mode 100644 index 0000000..3b80902 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/androidbuild.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/checker-buildbot.sh.i b/SDL/.hg/store/data/build-scripts/checker-buildbot.sh.i new file mode 100644 index 0000000..a55c8ed Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/checker-buildbot.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/config.guess.i b/SDL/.hg/store/data/build-scripts/config.guess.i new file mode 100644 index 0000000..62a0a65 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/config.guess.i differ diff --git a/SDL/.hg/store/data/build-scripts/config.sub.i b/SDL/.hg/store/data/build-scripts/config.sub.i new file mode 100644 index 0000000..64dfdaf Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/config.sub.i differ diff --git a/SDL/.hg/store/data/build-scripts/emscripten-buildbot.sh.i b/SDL/.hg/store/data/build-scripts/emscripten-buildbot.sh.i new file mode 100644 index 0000000..e2b5505 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/emscripten-buildbot.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/fatbuild.sh.i b/SDL/.hg/store/data/build-scripts/fatbuild.sh.i new file mode 100644 index 0000000..70f50a1 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/fatbuild.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/g++-fat.sh.i b/SDL/.hg/store/data/build-scripts/g++-fat.sh.i new file mode 100644 index 0000000..dc87629 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/g++-fat.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/gcc-fat.sh.i b/SDL/.hg/store/data/build-scripts/gcc-fat.sh.i new file mode 100644 index 0000000..fc68873 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/gcc-fat.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/install-sh.i b/SDL/.hg/store/data/build-scripts/install-sh.i new file mode 100644 index 0000000..8c6ae3f Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/install-sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/iosbuild.sh.i b/SDL/.hg/store/data/build-scripts/iosbuild.sh.i new file mode 100644 index 0000000..1cc3298 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/iosbuild.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/ltmain.sh.d b/SDL/.hg/store/data/build-scripts/ltmain.sh.d new file mode 100644 index 0000000..e403da2 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/ltmain.sh.d differ diff --git a/SDL/.hg/store/data/build-scripts/ltmain.sh.i b/SDL/.hg/store/data/build-scripts/ltmain.sh.i new file mode 100644 index 0000000..305c24b Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/ltmain.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/makedep.sh.i b/SDL/.hg/store/data/build-scripts/makedep.sh.i new file mode 100644 index 0000000..0f8011e Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/makedep.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/mkinstalldirs.i b/SDL/.hg/store/data/build-scripts/mkinstalldirs.i new file mode 100644 index 0000000..e97a44a Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/mkinstalldirs.i differ diff --git a/SDL/.hg/store/data/build-scripts/nacl-buildbot.sh.i b/SDL/.hg/store/data/build-scripts/nacl-buildbot.sh.i new file mode 100644 index 0000000..d99363c Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/nacl-buildbot.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/naclbuild.sh.i b/SDL/.hg/store/data/build-scripts/naclbuild.sh.i new file mode 100644 index 0000000..c62fd8e Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/naclbuild.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/raspberrypi-buildbot.sh.i b/SDL/.hg/store/data/build-scripts/raspberrypi-buildbot.sh.i new file mode 100644 index 0000000..b7dff8d Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/raspberrypi-buildbot.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/showrev.sh.i b/SDL/.hg/store/data/build-scripts/showrev.sh.i new file mode 100644 index 0000000..f30f4a3 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/showrev.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/snapshot.sh.i b/SDL/.hg/store/data/build-scripts/snapshot.sh.i new file mode 100644 index 0000000..ef9f181 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/snapshot.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/strip__f_p_i_c.sh.i b/SDL/.hg/store/data/build-scripts/strip__f_p_i_c.sh.i new file mode 100644 index 0000000..850dc39 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/strip__f_p_i_c.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/update-copyright.sh.i b/SDL/.hg/store/data/build-scripts/update-copyright.sh.i new file mode 100644 index 0000000..a26053e Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/update-copyright.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/updaterev.sh.i b/SDL/.hg/store/data/build-scripts/updaterev.sh.i new file mode 100644 index 0000000..4a29430 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/updaterev.sh.i differ diff --git a/SDL/.hg/store/data/build-scripts/windows-buildbot-zipper.bat.i b/SDL/.hg/store/data/build-scripts/windows-buildbot-zipper.bat.i new file mode 100644 index 0000000..798bb3c Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/windows-buildbot-zipper.bat.i differ diff --git a/SDL/.hg/store/data/build-scripts/winrt-build.bat.i b/SDL/.hg/store/data/build-scripts/winrt-build.bat.i new file mode 100644 index 0000000..88ee53d Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/winrt-build.bat.i differ diff --git a/SDL/.hg/store/data/build-scripts/winrt-build.ps1.i b/SDL/.hg/store/data/build-scripts/winrt-build.ps1.i new file mode 100644 index 0000000..940bcb8 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/winrt-build.ps1.i differ diff --git a/SDL/.hg/store/data/build-scripts/winrtbuild.bat.i b/SDL/.hg/store/data/build-scripts/winrtbuild.bat.i new file mode 100644 index 0000000..62b3ca3 Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/winrtbuild.bat.i differ diff --git a/SDL/.hg/store/data/build-scripts/winrtbuild.ps1.i b/SDL/.hg/store/data/build-scripts/winrtbuild.ps1.i new file mode 100644 index 0000000..95ab2aa Binary files /dev/null and b/SDL/.hg/store/data/build-scripts/winrtbuild.ps1.i differ diff --git a/SDL/.hg/store/data/cmake/macros.cmake.i b/SDL/.hg/store/data/cmake/macros.cmake.i new file mode 100644 index 0000000..d502abd Binary files /dev/null and b/SDL/.hg/store/data/cmake/macros.cmake.i differ diff --git a/SDL/.hg/store/data/cmake/sdlchecks.cmake.i b/SDL/.hg/store/data/cmake/sdlchecks.cmake.i new file mode 100644 index 0000000..ce06744 Binary files /dev/null and b/SDL/.hg/store/data/cmake/sdlchecks.cmake.i differ diff --git a/SDL/.hg/store/data/cmake__uninstall.cmake.in.i b/SDL/.hg/store/data/cmake__uninstall.cmake.in.i new file mode 100644 index 0000000..59e8a78 Binary files /dev/null and b/SDL/.hg/store/data/cmake__uninstall.cmake.in.i differ diff --git a/SDL/.hg/store/data/config.guess.i b/SDL/.hg/store/data/config.guess.i new file mode 100644 index 0000000..35b1536 Binary files /dev/null and b/SDL/.hg/store/data/config.guess.i differ diff --git a/SDL/.hg/store/data/config.sub.i b/SDL/.hg/store/data/config.sub.i new file mode 100644 index 0000000..5c598b7 Binary files /dev/null and b/SDL/.hg/store/data/config.sub.i differ diff --git a/SDL/.hg/store/data/configure.d b/SDL/.hg/store/data/configure.d new file mode 100644 index 0000000..9535d77 Binary files /dev/null and b/SDL/.hg/store/data/configure.d differ diff --git a/SDL/.hg/store/data/configure.i b/SDL/.hg/store/data/configure.i new file mode 100644 index 0000000..f2d5b41 Binary files /dev/null and b/SDL/.hg/store/data/configure.i differ diff --git a/SDL/.hg/store/data/configure.in.d b/SDL/.hg/store/data/configure.in.d new file mode 100644 index 0000000..06b6647 Binary files /dev/null and b/SDL/.hg/store/data/configure.in.d differ diff --git a/SDL/.hg/store/data/configure.in.i b/SDL/.hg/store/data/configure.in.i new file mode 100644 index 0000000..29c6836 Binary files /dev/null and b/SDL/.hg/store/data/configure.in.i differ diff --git a/SDL/.hg/store/data/debian/changelog.i b/SDL/.hg/store/data/debian/changelog.i new file mode 100644 index 0000000..b41794f Binary files /dev/null and b/SDL/.hg/store/data/debian/changelog.i differ diff --git a/SDL/.hg/store/data/debian/compat.i b/SDL/.hg/store/data/debian/compat.i new file mode 100644 index 0000000..a5bc2b9 Binary files /dev/null and b/SDL/.hg/store/data/debian/compat.i differ diff --git a/SDL/.hg/store/data/debian/control.i b/SDL/.hg/store/data/debian/control.i new file mode 100644 index 0000000..076fc52 Binary files /dev/null and b/SDL/.hg/store/data/debian/control.i differ diff --git a/SDL/.hg/store/data/debian/copyright.i b/SDL/.hg/store/data/debian/copyright.i new file mode 100644 index 0000000..c7ab6ac Binary files /dev/null and b/SDL/.hg/store/data/debian/copyright.i differ diff --git a/SDL/.hg/store/data/debian/docs.i b/SDL/.hg/store/data/debian/docs.i new file mode 100644 index 0000000..059d5e2 Binary files /dev/null and b/SDL/.hg/store/data/debian/docs.i differ diff --git a/SDL/.hg/store/data/debian/libsdl2-dev.install.i b/SDL/.hg/store/data/debian/libsdl2-dev.install.i new file mode 100644 index 0000000..ca9d022 Binary files /dev/null and b/SDL/.hg/store/data/debian/libsdl2-dev.install.i differ diff --git a/SDL/.hg/store/data/debian/libsdl2-dev.manpages.i b/SDL/.hg/store/data/debian/libsdl2-dev.manpages.i new file mode 100644 index 0000000..d12366e Binary files /dev/null and b/SDL/.hg/store/data/debian/libsdl2-dev.manpages.i differ diff --git a/SDL/.hg/store/data/debian/libsdl2.install.i b/SDL/.hg/store/data/debian/libsdl2.install.i new file mode 100644 index 0000000..6a5372a Binary files /dev/null and b/SDL/.hg/store/data/debian/libsdl2.install.i differ diff --git a/SDL/.hg/store/data/debian/rules.i b/SDL/.hg/store/data/debian/rules.i new file mode 100644 index 0000000..8905a5e Binary files /dev/null and b/SDL/.hg/store/data/debian/rules.i differ diff --git a/SDL/.hg/store/data/debian/sdl2-config.1.i b/SDL/.hg/store/data/debian/sdl2-config.1.i new file mode 100644 index 0000000..ce9045b Binary files /dev/null and b/SDL/.hg/store/data/debian/sdl2-config.1.i differ diff --git a/SDL/.hg/store/data/debian/source/format.i b/SDL/.hg/store/data/debian/source/format.i new file mode 100644 index 0000000..68a667c Binary files /dev/null and b/SDL/.hg/store/data/debian/source/format.i differ diff --git a/SDL/.hg/store/data/debian/watch.i b/SDL/.hg/store/data/debian/watch.i new file mode 100644 index 0000000..288649c Binary files /dev/null and b/SDL/.hg/store/data/debian/watch.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-_s_d_l.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-_s_d_l.md.i new file mode 100644 index 0000000..89cf0f1 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-_s_d_l.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-android.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-android.md.i new file mode 100644 index 0000000..aaf2854 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-android.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-cmake.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-cmake.md.i new file mode 100644 index 0000000..71765de Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-cmake.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-directfb.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-directfb.md.i new file mode 100644 index 0000000..eb3b7e1 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-directfb.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-dynapi.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-dynapi.md.i new file mode 100644 index 0000000..106153b Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-dynapi.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-gesture.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-gesture.md.i new file mode 100644 index 0000000..05797b0 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-gesture.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-hg.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-hg.md.i new file mode 100644 index 0000000..69665bb Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-hg.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-ios.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-ios.md.i new file mode 100644 index 0000000..efa0371 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-ios.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-linux.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-linux.md.i new file mode 100644 index 0000000..e47246c Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-linux.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-macosx.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-macosx.md.i new file mode 100644 index 0000000..c3a4c39 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-macosx.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-nacl.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-nacl.md.i new file mode 100644 index 0000000..d35e7fc Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-nacl.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-pandora.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-pandora.md.i new file mode 100644 index 0000000..441210c Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-pandora.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-platforms.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-platforms.md.i new file mode 100644 index 0000000..5d7bec5 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-platforms.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-porting.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-porting.md.i new file mode 100644 index 0000000..9ff8eed Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-porting.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-psp.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-psp.md.i new file mode 100644 index 0000000..2673400 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-psp.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-raspberrypi.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-raspberrypi.md.i new file mode 100644 index 0000000..4a365d8 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-raspberrypi.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-touch.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-touch.md.i new file mode 100644 index 0000000..bbfe3a4 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-touch.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-wince.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-wince.md.i new file mode 100644 index 0000000..3f2a784 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-wince.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-windows.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-windows.md.i new file mode 100644 index 0000000..67b3685 Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-windows.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e-winrt.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-winrt.md.i new file mode 100644 index 0000000..6abda3a Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e-winrt.md.i differ diff --git a/SDL/.hg/store/data/doc/_r_e_a_d_m_e.md.i b/SDL/.hg/store/data/doc/_r_e_a_d_m_e.md.i new file mode 100644 index 0000000..b23174b Binary files /dev/null and b/SDL/.hg/store/data/doc/_r_e_a_d_m_e.md.i differ diff --git a/SDL/.hg/store/data/doc/doxyfile.i b/SDL/.hg/store/data/doc/doxyfile.i new file mode 100644 index 0000000..6b8a473 Binary files /dev/null and b/SDL/.hg/store/data/doc/doxyfile.i differ diff --git a/SDL/.hg/store/data/docs.html.i b/SDL/.hg/store/data/docs.html.i new file mode 100644 index 0000000..e8dfbcd Binary files /dev/null and b/SDL/.hg/store/data/docs.html.i differ diff --git a/SDL/.hg/store/data/docs/_makefile.am.i b/SDL/.hg/store/data/docs/_makefile.am.i new file mode 100644 index 0000000..ca52371 Binary files /dev/null and b/SDL/.hg/store/data/docs/_makefile.am.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-android.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-android.md.i new file mode 100644 index 0000000..a373f0b Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-android.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-cmake.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-cmake.md.i new file mode 100644 index 0000000..a939133 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-cmake.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-directfb.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-directfb.md.i new file mode 100644 index 0000000..c7e9359 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-directfb.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-dynapi.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-dynapi.md.i new file mode 100644 index 0000000..5bc114d Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-dynapi.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-emscripten.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-emscripten.md.i new file mode 100644 index 0000000..8ea9f08 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-emscripten.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-emscripten.txt.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-emscripten.txt.i new file mode 100644 index 0000000..66514c3 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-emscripten.txt.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-gesture.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-gesture.md.i new file mode 100644 index 0000000..8d24225 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-gesture.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-hg.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-hg.md.i new file mode 100644 index 0000000..8d4d6d1 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-hg.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-ios.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-ios.md.i new file mode 100644 index 0000000..cfb33b2 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-ios.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-linux.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-linux.md.i new file mode 100644 index 0000000..f9ef7af Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-linux.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-macosx.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-macosx.md.i new file mode 100644 index 0000000..bf6ee09 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-macosx.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-nacl.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-nacl.md.i new file mode 100644 index 0000000..1ca2f40 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-nacl.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-pandora.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-pandora.md.i new file mode 100644 index 0000000..c7f1bde Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-pandora.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-platforms.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-platforms.md.i new file mode 100644 index 0000000..7d47aa2 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-platforms.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-porting.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-porting.md.i new file mode 100644 index 0000000..1b2f30e Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-porting.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-psp.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-psp.md.i new file mode 100644 index 0000000..4315ece Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-psp.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-raspberrypi.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-raspberrypi.md.i new file mode 100644 index 0000000..40ee939 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-raspberrypi.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-touch.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-touch.md.i new file mode 100644 index 0000000..784d77c Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-touch.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-wince.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-wince.md.i new file mode 100644 index 0000000..33f00d9 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-wince.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-windows.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-windows.md.i new file mode 100644 index 0000000..6c64a33 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-windows.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e-winrt.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-winrt.md.i new file mode 100644 index 0000000..5f873c9 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e-winrt.md.i differ diff --git a/SDL/.hg/store/data/docs/_r_e_a_d_m_e.md.i b/SDL/.hg/store/data/docs/_r_e_a_d_m_e.md.i new file mode 100644 index 0000000..f36f8a9 Binary files /dev/null and b/SDL/.hg/store/data/docs/_r_e_a_d_m_e.md.i differ diff --git a/SDL/.hg/store/data/docs/doxyfile.i b/SDL/.hg/store/data/docs/doxyfile.i new file mode 100644 index 0000000..b84f288 Binary files /dev/null and b/SDL/.hg/store/data/docs/doxyfile.i differ diff --git a/SDL/.hg/store/data/docs/html/_makefile.am.i b/SDL/.hg/store/data/docs/html/_makefile.am.i new file mode 100644 index 0000000..c79d265 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/_makefile.am.i differ diff --git a/SDL/.hg/store/data/docs/html/audio.html.i b/SDL/.hg/store/data/docs/html/audio.html.i new file mode 100644 index 0000000..ace4557 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/audio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/cdrom.html.i b/SDL/.hg/store/data/docs/html/cdrom.html.i new file mode 100644 index 0000000..360a7c1 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/cdrom.html.i differ diff --git a/SDL/.hg/store/data/docs/html/event.html.i b/SDL/.hg/store/data/docs/html/event.html.i new file mode 100644 index 0000000..6c487a8 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/event.html.i differ diff --git a/SDL/.hg/store/data/docs/html/eventfunctions.html.i b/SDL/.hg/store/data/docs/html/eventfunctions.html.i new file mode 100644 index 0000000..da672fd Binary files /dev/null and b/SDL/.hg/store/data/docs/html/eventfunctions.html.i differ diff --git a/SDL/.hg/store/data/docs/html/eventstructures.html.i b/SDL/.hg/store/data/docs/html/eventstructures.html.i new file mode 100644 index 0000000..31a4b9d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/eventstructures.html.i differ diff --git a/SDL/.hg/store/data/docs/html/general.html.i b/SDL/.hg/store/data/docs/html/general.html.i new file mode 100644 index 0000000..fd30c56 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/general.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guide.html.i b/SDL/.hg/store/data/docs/html/guide.html.i new file mode 100644 index 0000000..427f1db Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guide.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guideaboutsdldoc.html.i b/SDL/.hg/store/data/docs/html/guideaboutsdldoc.html.i new file mode 100644 index 0000000..279a079 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guideaboutsdldoc.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guideaudioexamples.html.i b/SDL/.hg/store/data/docs/html/guideaudioexamples.html.i new file mode 100644 index 0000000..abdd50e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guideaudioexamples.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidebasicsinit.html.i b/SDL/.hg/store/data/docs/html/guidebasicsinit.html.i new file mode 100644 index 0000000..80a57d7 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidebasicsinit.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidecdromexamples.html.i b/SDL/.hg/store/data/docs/html/guidecdromexamples.html.i new file mode 100644 index 0000000..e375e86 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidecdromexamples.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidecredits.html.i b/SDL/.hg/store/data/docs/html/guidecredits.html.i new file mode 100644 index 0000000..50f6a19 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidecredits.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guideeventexamples.html.i b/SDL/.hg/store/data/docs/html/guideeventexamples.html.i new file mode 100644 index 0000000..6622277 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guideeventexamples.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guideexamples.html.i b/SDL/.hg/store/data/docs/html/guideexamples.html.i new file mode 100644 index 0000000..414a4f9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guideexamples.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guideinput.html.i b/SDL/.hg/store/data/docs/html/guideinput.html.i new file mode 100644 index 0000000..ff337e9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guideinput.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guideinputkeyboard.html.i b/SDL/.hg/store/data/docs/html/guideinputkeyboard.html.i new file mode 100644 index 0000000..88d89a5 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guideinputkeyboard.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidepreface.html.i b/SDL/.hg/store/data/docs/html/guidepreface.html.i new file mode 100644 index 0000000..d7abcfe Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidepreface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidethebasics.html.i b/SDL/.hg/store/data/docs/html/guidethebasics.html.i new file mode 100644 index 0000000..934fb8a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidethebasics.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidetimeexamples.html.i b/SDL/.hg/store/data/docs/html/guidetimeexamples.html.i new file mode 100644 index 0000000..99f0ae9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidetimeexamples.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidevideo.html.i b/SDL/.hg/store/data/docs/html/guidevideo.html.i new file mode 100644 index 0000000..b97e63e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidevideo.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidevideoexamples.html.i b/SDL/.hg/store/data/docs/html/guidevideoexamples.html.i new file mode 100644 index 0000000..555e0bf Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidevideoexamples.html.i differ diff --git a/SDL/.hg/store/data/docs/html/guidevideoopengl.html.i b/SDL/.hg/store/data/docs/html/guidevideoopengl.html.i new file mode 100644 index 0000000..6534195 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/guidevideoopengl.html.i differ diff --git a/SDL/.hg/store/data/docs/html/index.html.i b/SDL/.hg/store/data/docs/html/index.html.i new file mode 100644 index 0000000..639826a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/index.html.i differ diff --git a/SDL/.hg/store/data/docs/html/joystick.html.i b/SDL/.hg/store/data/docs/html/joystick.html.i new file mode 100644 index 0000000..63d2619 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/joystick.html.i differ diff --git a/SDL/.hg/store/data/docs/html/reference.html.i b/SDL/.hg/store/data/docs/html/reference.html.i new file mode 100644 index 0000000..7e3213b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/reference.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlactiveevent.html.i b/SDL/.hg/store/data/docs/html/sdlactiveevent.html.i new file mode 100644 index 0000000..9627a05 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlactiveevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdladdtimer.html.i b/SDL/.hg/store/data/docs/html/sdladdtimer.html.i new file mode 100644 index 0000000..aa0a706 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdladdtimer.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlaudiocvt.html.i b/SDL/.hg/store/data/docs/html/sdlaudiocvt.html.i new file mode 100644 index 0000000..1bd886f Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlaudiocvt.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlaudiospec.html.i b/SDL/.hg/store/data/docs/html/sdlaudiospec.html.i new file mode 100644 index 0000000..29a8203 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlaudiospec.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlblitsurface.html.i b/SDL/.hg/store/data/docs/html/sdlblitsurface.html.i new file mode 100644 index 0000000..9b3766d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlblitsurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlbuildaudiocvt.html.i b/SDL/.hg/store/data/docs/html/sdlbuildaudiocvt.html.i new file mode 100644 index 0000000..3d37821 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlbuildaudiocvt.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcd.html.i b/SDL/.hg/store/data/docs/html/sdlcd.html.i new file mode 100644 index 0000000..1775550 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcd.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdclose.html.i b/SDL/.hg/store/data/docs/html/sdlcdclose.html.i new file mode 100644 index 0000000..40ae30b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdclose.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdeject.html.i b/SDL/.hg/store/data/docs/html/sdlcdeject.html.i new file mode 100644 index 0000000..ddea5ae Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdeject.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdname.html.i b/SDL/.hg/store/data/docs/html/sdlcdname.html.i new file mode 100644 index 0000000..3ed0303 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdname.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdnumdrives.html.i b/SDL/.hg/store/data/docs/html/sdlcdnumdrives.html.i new file mode 100644 index 0000000..e9d1b5c Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdnumdrives.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdopen.html.i b/SDL/.hg/store/data/docs/html/sdlcdopen.html.i new file mode 100644 index 0000000..98215ef Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdopen.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdpause.html.i b/SDL/.hg/store/data/docs/html/sdlcdpause.html.i new file mode 100644 index 0000000..86f3943 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdpause.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdplay.html.i b/SDL/.hg/store/data/docs/html/sdlcdplay.html.i new file mode 100644 index 0000000..1139d83 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdplay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdplaytracks.html.i b/SDL/.hg/store/data/docs/html/sdlcdplaytracks.html.i new file mode 100644 index 0000000..65cb16f Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdplaytracks.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdresume.html.i b/SDL/.hg/store/data/docs/html/sdlcdresume.html.i new file mode 100644 index 0000000..1e715dc Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdresume.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdstatus.html.i b/SDL/.hg/store/data/docs/html/sdlcdstatus.html.i new file mode 100644 index 0000000..c25ebab Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdstatus.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdstop.html.i b/SDL/.hg/store/data/docs/html/sdlcdstop.html.i new file mode 100644 index 0000000..f5cf2a9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdstop.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcdtrack.html.i b/SDL/.hg/store/data/docs/html/sdlcdtrack.html.i new file mode 100644 index 0000000..09112ff Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcdtrack.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcloseaudio.html.i b/SDL/.hg/store/data/docs/html/sdlcloseaudio.html.i new file mode 100644 index 0000000..5184b23 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcloseaudio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcolor.html.i b/SDL/.hg/store/data/docs/html/sdlcolor.html.i new file mode 100644 index 0000000..71da6f9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcolor.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcondbroadcast.html.i b/SDL/.hg/store/data/docs/html/sdlcondbroadcast.html.i new file mode 100644 index 0000000..7d2ef15 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcondbroadcast.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcondsignal.html.i b/SDL/.hg/store/data/docs/html/sdlcondsignal.html.i new file mode 100644 index 0000000..5ae78e1 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcondsignal.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcondwait.html.i b/SDL/.hg/store/data/docs/html/sdlcondwait.html.i new file mode 100644 index 0000000..aa95601 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcondwait.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcondwaittimeout.html.i b/SDL/.hg/store/data/docs/html/sdlcondwaittimeout.html.i new file mode 100644 index 0000000..c88c49e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcondwaittimeout.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlconvertaudio.html.i b/SDL/.hg/store/data/docs/html/sdlconvertaudio.html.i new file mode 100644 index 0000000..ca554f6 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlconvertaudio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlconvertsurface.html.i b/SDL/.hg/store/data/docs/html/sdlconvertsurface.html.i new file mode 100644 index 0000000..4a7d18a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlconvertsurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreatecond.html.i b/SDL/.hg/store/data/docs/html/sdlcreatecond.html.i new file mode 100644 index 0000000..3c01947 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreatecond.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreatecursor.html.i b/SDL/.hg/store/data/docs/html/sdlcreatecursor.html.i new file mode 100644 index 0000000..300fa91 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreatecursor.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreatemutex.html.i b/SDL/.hg/store/data/docs/html/sdlcreatemutex.html.i new file mode 100644 index 0000000..0970a04 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreatemutex.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreatergbsurface.html.i b/SDL/.hg/store/data/docs/html/sdlcreatergbsurface.html.i new file mode 100644 index 0000000..89fd32c Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreatergbsurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreatergbsurfacefrom.html.i b/SDL/.hg/store/data/docs/html/sdlcreatergbsurfacefrom.html.i new file mode 100644 index 0000000..5ec13d8 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreatergbsurfacefrom.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreatesemaphore.html.i b/SDL/.hg/store/data/docs/html/sdlcreatesemaphore.html.i new file mode 100644 index 0000000..64831d8 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreatesemaphore.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreatethread.html.i b/SDL/.hg/store/data/docs/html/sdlcreatethread.html.i new file mode 100644 index 0000000..c7bdd36 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreatethread.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlcreateyuvoverlay.html.i b/SDL/.hg/store/data/docs/html/sdlcreateyuvoverlay.html.i new file mode 100644 index 0000000..1601579 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlcreateyuvoverlay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdldelay.html.i b/SDL/.hg/store/data/docs/html/sdldelay.html.i new file mode 100644 index 0000000..2500510 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdldelay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdldestroycond.html.i b/SDL/.hg/store/data/docs/html/sdldestroycond.html.i new file mode 100644 index 0000000..7485f44 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdldestroycond.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdldestroymutex.html.i b/SDL/.hg/store/data/docs/html/sdldestroymutex.html.i new file mode 100644 index 0000000..a1a17ee Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdldestroymutex.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdldestroysemaphore.html.i b/SDL/.hg/store/data/docs/html/sdldestroysemaphore.html.i new file mode 100644 index 0000000..86c0bf6 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdldestroysemaphore.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdldisplayformat.html.i b/SDL/.hg/store/data/docs/html/sdldisplayformat.html.i new file mode 100644 index 0000000..29501e7 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdldisplayformat.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdldisplayformatalpha.html.i b/SDL/.hg/store/data/docs/html/sdldisplayformatalpha.html.i new file mode 100644 index 0000000..ae56de9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdldisplayformatalpha.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdldisplayyuvoverlay.html.i b/SDL/.hg/store/data/docs/html/sdldisplayyuvoverlay.html.i new file mode 100644 index 0000000..45dd77f Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdldisplayyuvoverlay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlenablekeyrepeat.html.i b/SDL/.hg/store/data/docs/html/sdlenablekeyrepeat.html.i new file mode 100644 index 0000000..f6de2bb Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlenablekeyrepeat.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlenableunicode.html.i b/SDL/.hg/store/data/docs/html/sdlenableunicode.html.i new file mode 100644 index 0000000..71c79bd Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlenableunicode.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlenvvars.html.i b/SDL/.hg/store/data/docs/html/sdlenvvars.html.i new file mode 100644 index 0000000..98f256b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlenvvars.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlevent.html.i b/SDL/.hg/store/data/docs/html/sdlevent.html.i new file mode 100644 index 0000000..1fa6288 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdleventstate.html.i b/SDL/.hg/store/data/docs/html/sdleventstate.html.i new file mode 100644 index 0000000..a528d11 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdleventstate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlexposeevent.html.i b/SDL/.hg/store/data/docs/html/sdlexposeevent.html.i new file mode 100644 index 0000000..73e686d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlexposeevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlfillrect.html.i b/SDL/.hg/store/data/docs/html/sdlfillrect.html.i new file mode 100644 index 0000000..ba578fa Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlfillrect.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlflip.html.i b/SDL/.hg/store/data/docs/html/sdlflip.html.i new file mode 100644 index 0000000..98a995d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlflip.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlfreecursor.html.i b/SDL/.hg/store/data/docs/html/sdlfreecursor.html.i new file mode 100644 index 0000000..fe06cb9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlfreecursor.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlfreesurface.html.i b/SDL/.hg/store/data/docs/html/sdlfreesurface.html.i new file mode 100644 index 0000000..320fcc7 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlfreesurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlfreewav.html.i b/SDL/.hg/store/data/docs/html/sdlfreewav.html.i new file mode 100644 index 0000000..b600f93 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlfreewav.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlfreeyuvoverlay.html.i b/SDL/.hg/store/data/docs/html/sdlfreeyuvoverlay.html.i new file mode 100644 index 0000000..7b2547c Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlfreeyuvoverlay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetappstate.html.i b/SDL/.hg/store/data/docs/html/sdlgetappstate.html.i new file mode 100644 index 0000000..0666804 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetappstate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetaudiostatus.html.i b/SDL/.hg/store/data/docs/html/sdlgetaudiostatus.html.i new file mode 100644 index 0000000..5b511e8 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetaudiostatus.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetcliprect.html.i b/SDL/.hg/store/data/docs/html/sdlgetcliprect.html.i new file mode 100644 index 0000000..8c0aa9b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetcliprect.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetcursor.html.i b/SDL/.hg/store/data/docs/html/sdlgetcursor.html.i new file mode 100644 index 0000000..0b40bc7 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetcursor.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgeterror.html.i b/SDL/.hg/store/data/docs/html/sdlgeterror.html.i new file mode 100644 index 0000000..fac4301 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgeterror.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgeteventfilter.html.i b/SDL/.hg/store/data/docs/html/sdlgeteventfilter.html.i new file mode 100644 index 0000000..8c7139b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgeteventfilter.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetgammaramp.html.i b/SDL/.hg/store/data/docs/html/sdlgetgammaramp.html.i new file mode 100644 index 0000000..46197d9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetgammaramp.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetkeyname.html.i b/SDL/.hg/store/data/docs/html/sdlgetkeyname.html.i new file mode 100644 index 0000000..89cd121 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetkeyname.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetkeystate.html.i b/SDL/.hg/store/data/docs/html/sdlgetkeystate.html.i new file mode 100644 index 0000000..934c77e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetkeystate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetmodstate.html.i b/SDL/.hg/store/data/docs/html/sdlgetmodstate.html.i new file mode 100644 index 0000000..b8c0ca6 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetmodstate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetmousestate.html.i b/SDL/.hg/store/data/docs/html/sdlgetmousestate.html.i new file mode 100644 index 0000000..e2cc325 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetmousestate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetrelativemousestate.html.i b/SDL/.hg/store/data/docs/html/sdlgetrelativemousestate.html.i new file mode 100644 index 0000000..9819935 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetrelativemousestate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetrgb.html.i b/SDL/.hg/store/data/docs/html/sdlgetrgb.html.i new file mode 100644 index 0000000..2c740ab Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetrgb.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetrgba.html.i b/SDL/.hg/store/data/docs/html/sdlgetrgba.html.i new file mode 100644 index 0000000..5e7c934 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetrgba.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetthreadid.html.i b/SDL/.hg/store/data/docs/html/sdlgetthreadid.html.i new file mode 100644 index 0000000..d4e6406 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetthreadid.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetticks.html.i b/SDL/.hg/store/data/docs/html/sdlgetticks.html.i new file mode 100644 index 0000000..f2ccd1d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetticks.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetvideoinfo.html.i b/SDL/.hg/store/data/docs/html/sdlgetvideoinfo.html.i new file mode 100644 index 0000000..52ad79b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetvideoinfo.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlgetvideosurface.html.i b/SDL/.hg/store/data/docs/html/sdlgetvideosurface.html.i new file mode 100644 index 0000000..015f785 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlgetvideosurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlglattr.html.i b/SDL/.hg/store/data/docs/html/sdlglattr.html.i new file mode 100644 index 0000000..64c27f9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlglattr.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlglgetattribute.html.i b/SDL/.hg/store/data/docs/html/sdlglgetattribute.html.i new file mode 100644 index 0000000..645600d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlglgetattribute.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlglgetprocaddress.html.i b/SDL/.hg/store/data/docs/html/sdlglgetprocaddress.html.i new file mode 100644 index 0000000..a7b4831 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlglgetprocaddress.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlglloadlibrary.html.i b/SDL/.hg/store/data/docs/html/sdlglloadlibrary.html.i new file mode 100644 index 0000000..517415f Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlglloadlibrary.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlglsetattribute.html.i b/SDL/.hg/store/data/docs/html/sdlglsetattribute.html.i new file mode 100644 index 0000000..ae66633 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlglsetattribute.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlglswapbuffers.html.i b/SDL/.hg/store/data/docs/html/sdlglswapbuffers.html.i new file mode 100644 index 0000000..462e9bb Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlglswapbuffers.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlinit.html.i b/SDL/.hg/store/data/docs/html/sdlinit.html.i new file mode 100644 index 0000000..2e428ad Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlinit.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlinitsubsystem.html.i b/SDL/.hg/store/data/docs/html/sdlinitsubsystem.html.i new file mode 100644 index 0000000..885dbf2 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlinitsubsystem.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoyaxisevent.html.i b/SDL/.hg/store/data/docs/html/sdljoyaxisevent.html.i new file mode 100644 index 0000000..58a0789 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoyaxisevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoyballevent.html.i b/SDL/.hg/store/data/docs/html/sdljoyballevent.html.i new file mode 100644 index 0000000..09de6b0 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoyballevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoybuttonevent.html.i b/SDL/.hg/store/data/docs/html/sdljoybuttonevent.html.i new file mode 100644 index 0000000..4e78fda Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoybuttonevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoyhatevent.html.i b/SDL/.hg/store/data/docs/html/sdljoyhatevent.html.i new file mode 100644 index 0000000..dd664d5 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoyhatevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickclose.html.i b/SDL/.hg/store/data/docs/html/sdljoystickclose.html.i new file mode 100644 index 0000000..d9d8307 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickclose.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickeventstate.html.i b/SDL/.hg/store/data/docs/html/sdljoystickeventstate.html.i new file mode 100644 index 0000000..c5eefbb Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickeventstate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickgetaxis.html.i b/SDL/.hg/store/data/docs/html/sdljoystickgetaxis.html.i new file mode 100644 index 0000000..ee6724a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickgetaxis.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickgetball.html.i b/SDL/.hg/store/data/docs/html/sdljoystickgetball.html.i new file mode 100644 index 0000000..b3fa4b3 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickgetball.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickgetbutton.html.i b/SDL/.hg/store/data/docs/html/sdljoystickgetbutton.html.i new file mode 100644 index 0000000..2025d12 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickgetbutton.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickgethat.html.i b/SDL/.hg/store/data/docs/html/sdljoystickgethat.html.i new file mode 100644 index 0000000..194a311 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickgethat.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickindex.html.i b/SDL/.hg/store/data/docs/html/sdljoystickindex.html.i new file mode 100644 index 0000000..c801c6a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickindex.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickname.html.i b/SDL/.hg/store/data/docs/html/sdljoystickname.html.i new file mode 100644 index 0000000..e73cc01 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickname.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoysticknumaxes.html.i b/SDL/.hg/store/data/docs/html/sdljoysticknumaxes.html.i new file mode 100644 index 0000000..4343fa2 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoysticknumaxes.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoysticknumballs.html.i b/SDL/.hg/store/data/docs/html/sdljoysticknumballs.html.i new file mode 100644 index 0000000..280b179 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoysticknumballs.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoysticknumbuttons.html.i b/SDL/.hg/store/data/docs/html/sdljoysticknumbuttons.html.i new file mode 100644 index 0000000..5e845c9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoysticknumbuttons.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoysticknumhats.html.i b/SDL/.hg/store/data/docs/html/sdljoysticknumhats.html.i new file mode 100644 index 0000000..ed63d9e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoysticknumhats.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickopen.html.i b/SDL/.hg/store/data/docs/html/sdljoystickopen.html.i new file mode 100644 index 0000000..cf11df4 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickopen.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickopened.html.i b/SDL/.hg/store/data/docs/html/sdljoystickopened.html.i new file mode 100644 index 0000000..5c7f2a9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickopened.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdljoystickupdate.html.i b/SDL/.hg/store/data/docs/html/sdljoystickupdate.html.i new file mode 100644 index 0000000..6a9833a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdljoystickupdate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlkey.html.i b/SDL/.hg/store/data/docs/html/sdlkey.html.i new file mode 100644 index 0000000..4229027 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlkey.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlkeyboardevent.html.i b/SDL/.hg/store/data/docs/html/sdlkeyboardevent.html.i new file mode 100644 index 0000000..c9f13e9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlkeyboardevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlkeysym.html.i b/SDL/.hg/store/data/docs/html/sdlkeysym.html.i new file mode 100644 index 0000000..b61a466 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlkeysym.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlkillthread.html.i b/SDL/.hg/store/data/docs/html/sdlkillthread.html.i new file mode 100644 index 0000000..ffa6a65 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlkillthread.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdllistmodes.html.i b/SDL/.hg/store/data/docs/html/sdllistmodes.html.i new file mode 100644 index 0000000..8e76edb Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdllistmodes.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlloadbmp.html.i b/SDL/.hg/store/data/docs/html/sdlloadbmp.html.i new file mode 100644 index 0000000..f17675a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlloadbmp.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlloadwav.html.i b/SDL/.hg/store/data/docs/html/sdlloadwav.html.i new file mode 100644 index 0000000..99abac0 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlloadwav.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdllockaudio.html.i b/SDL/.hg/store/data/docs/html/sdllockaudio.html.i new file mode 100644 index 0000000..36b0f5f Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdllockaudio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdllocksurface.html.i b/SDL/.hg/store/data/docs/html/sdllocksurface.html.i new file mode 100644 index 0000000..c963cbe Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdllocksurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdllockyuvoverlay.html.i b/SDL/.hg/store/data/docs/html/sdllockyuvoverlay.html.i new file mode 100644 index 0000000..2d94bca Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdllockyuvoverlay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlmaprgb.html.i b/SDL/.hg/store/data/docs/html/sdlmaprgb.html.i new file mode 100644 index 0000000..fd37063 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlmaprgb.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlmaprgba.html.i b/SDL/.hg/store/data/docs/html/sdlmaprgba.html.i new file mode 100644 index 0000000..4279c07 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlmaprgba.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlmixaudio.html.i b/SDL/.hg/store/data/docs/html/sdlmixaudio.html.i new file mode 100644 index 0000000..0130556 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlmixaudio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlmousebuttonevent.html.i b/SDL/.hg/store/data/docs/html/sdlmousebuttonevent.html.i new file mode 100644 index 0000000..2a36963 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlmousebuttonevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlmousemotionevent.html.i b/SDL/.hg/store/data/docs/html/sdlmousemotionevent.html.i new file mode 100644 index 0000000..6c89917 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlmousemotionevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlmutexp.html.i b/SDL/.hg/store/data/docs/html/sdlmutexp.html.i new file mode 100644 index 0000000..20adb46 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlmutexp.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlmutexv.html.i b/SDL/.hg/store/data/docs/html/sdlmutexv.html.i new file mode 100644 index 0000000..85488db Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlmutexv.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlnumjoysticks.html.i b/SDL/.hg/store/data/docs/html/sdlnumjoysticks.html.i new file mode 100644 index 0000000..fa3d053 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlnumjoysticks.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlopenaudio.html.i b/SDL/.hg/store/data/docs/html/sdlopenaudio.html.i new file mode 100644 index 0000000..6bf99c4 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlopenaudio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdloverlay.html.i b/SDL/.hg/store/data/docs/html/sdloverlay.html.i new file mode 100644 index 0000000..640bd05 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdloverlay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlpalette.html.i b/SDL/.hg/store/data/docs/html/sdlpalette.html.i new file mode 100644 index 0000000..fc9fbb2 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlpalette.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlpauseaudio.html.i b/SDL/.hg/store/data/docs/html/sdlpauseaudio.html.i new file mode 100644 index 0000000..c0fed57 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlpauseaudio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlpeepevents.html.i b/SDL/.hg/store/data/docs/html/sdlpeepevents.html.i new file mode 100644 index 0000000..9422ef2 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlpeepevents.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlpixelformat.html.i b/SDL/.hg/store/data/docs/html/sdlpixelformat.html.i new file mode 100644 index 0000000..f0e783c Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlpixelformat.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlpollevent.html.i b/SDL/.hg/store/data/docs/html/sdlpollevent.html.i new file mode 100644 index 0000000..9d3be4d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlpollevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlpumpevents.html.i b/SDL/.hg/store/data/docs/html/sdlpumpevents.html.i new file mode 100644 index 0000000..73763fe Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlpumpevents.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlpushevent.html.i b/SDL/.hg/store/data/docs/html/sdlpushevent.html.i new file mode 100644 index 0000000..4a830f3 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlpushevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlquit.html.i b/SDL/.hg/store/data/docs/html/sdlquit.html.i new file mode 100644 index 0000000..62234a7 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlquit.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlquitevent.html.i b/SDL/.hg/store/data/docs/html/sdlquitevent.html.i new file mode 100644 index 0000000..9d6d863 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlquitevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlquitsubsystem.html.i b/SDL/.hg/store/data/docs/html/sdlquitsubsystem.html.i new file mode 100644 index 0000000..6fec996 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlquitsubsystem.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlrect.html.i b/SDL/.hg/store/data/docs/html/sdlrect.html.i new file mode 100644 index 0000000..c0b7f7c Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlrect.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlremovetimer.html.i b/SDL/.hg/store/data/docs/html/sdlremovetimer.html.i new file mode 100644 index 0000000..c198b6c Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlremovetimer.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlresizeevent.html.i b/SDL/.hg/store/data/docs/html/sdlresizeevent.html.i new file mode 100644 index 0000000..083159d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlresizeevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsavebmp.html.i b/SDL/.hg/store/data/docs/html/sdlsavebmp.html.i new file mode 100644 index 0000000..9c97835 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsavebmp.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsempost.html.i b/SDL/.hg/store/data/docs/html/sdlsempost.html.i new file mode 100644 index 0000000..2242fc2 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsempost.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsemtrywait.html.i b/SDL/.hg/store/data/docs/html/sdlsemtrywait.html.i new file mode 100644 index 0000000..4f8f557 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsemtrywait.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsemvalue.html.i b/SDL/.hg/store/data/docs/html/sdlsemvalue.html.i new file mode 100644 index 0000000..8428660 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsemvalue.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsemwait.html.i b/SDL/.hg/store/data/docs/html/sdlsemwait.html.i new file mode 100644 index 0000000..083e0e5 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsemwait.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsemwaittimeout.html.i b/SDL/.hg/store/data/docs/html/sdlsemwaittimeout.html.i new file mode 100644 index 0000000..a539e1e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsemwaittimeout.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetalpha.html.i b/SDL/.hg/store/data/docs/html/sdlsetalpha.html.i new file mode 100644 index 0000000..4f8222d Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetalpha.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetcliprect.html.i b/SDL/.hg/store/data/docs/html/sdlsetcliprect.html.i new file mode 100644 index 0000000..fd53ba4 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetcliprect.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetcolorkey.html.i b/SDL/.hg/store/data/docs/html/sdlsetcolorkey.html.i new file mode 100644 index 0000000..969cf07 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetcolorkey.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetcolors.html.i b/SDL/.hg/store/data/docs/html/sdlsetcolors.html.i new file mode 100644 index 0000000..a1e67e7 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetcolors.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetcursor.html.i b/SDL/.hg/store/data/docs/html/sdlsetcursor.html.i new file mode 100644 index 0000000..0863233 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetcursor.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlseteventfilter.html.i b/SDL/.hg/store/data/docs/html/sdlseteventfilter.html.i new file mode 100644 index 0000000..d77baed Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlseteventfilter.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetgamma.html.i b/SDL/.hg/store/data/docs/html/sdlsetgamma.html.i new file mode 100644 index 0000000..1971b9e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetgamma.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetgammaramp.html.i b/SDL/.hg/store/data/docs/html/sdlsetgammaramp.html.i new file mode 100644 index 0000000..eeab8bc Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetgammaramp.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetmodstate.html.i b/SDL/.hg/store/data/docs/html/sdlsetmodstate.html.i new file mode 100644 index 0000000..3d25b5f Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetmodstate.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetpalette.html.i b/SDL/.hg/store/data/docs/html/sdlsetpalette.html.i new file mode 100644 index 0000000..b688b1f Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetpalette.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsettimer.html.i b/SDL/.hg/store/data/docs/html/sdlsettimer.html.i new file mode 100644 index 0000000..95c1dc7 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsettimer.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsetvideomode.html.i b/SDL/.hg/store/data/docs/html/sdlsetvideomode.html.i new file mode 100644 index 0000000..f981060 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsetvideomode.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlshowcursor.html.i b/SDL/.hg/store/data/docs/html/sdlshowcursor.html.i new file mode 100644 index 0000000..9b23898 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlshowcursor.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsurface.html.i b/SDL/.hg/store/data/docs/html/sdlsurface.html.i new file mode 100644 index 0000000..ab0ff79 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlsyswmevent.html.i b/SDL/.hg/store/data/docs/html/sdlsyswmevent.html.i new file mode 100644 index 0000000..cd6882b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlsyswmevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlthreadid.html.i b/SDL/.hg/store/data/docs/html/sdlthreadid.html.i new file mode 100644 index 0000000..d4e86b6 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlthreadid.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlunlockaudio.html.i b/SDL/.hg/store/data/docs/html/sdlunlockaudio.html.i new file mode 100644 index 0000000..7f3595e Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlunlockaudio.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlunlocksurface.html.i b/SDL/.hg/store/data/docs/html/sdlunlocksurface.html.i new file mode 100644 index 0000000..a4f4465 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlunlocksurface.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlunlockyuvoverlay.html.i b/SDL/.hg/store/data/docs/html/sdlunlockyuvoverlay.html.i new file mode 100644 index 0000000..d629edd Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlunlockyuvoverlay.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlupdaterect.html.i b/SDL/.hg/store/data/docs/html/sdlupdaterect.html.i new file mode 100644 index 0000000..05a916b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlupdaterect.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlupdaterects.html.i b/SDL/.hg/store/data/docs/html/sdlupdaterects.html.i new file mode 100644 index 0000000..b111564 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlupdaterects.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdluserevent.html.i b/SDL/.hg/store/data/docs/html/sdluserevent.html.i new file mode 100644 index 0000000..0bc9744 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdluserevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlvideodrivername.html.i b/SDL/.hg/store/data/docs/html/sdlvideodrivername.html.i new file mode 100644 index 0000000..c250b2c Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlvideodrivername.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlvideoinfo.html.i b/SDL/.hg/store/data/docs/html/sdlvideoinfo.html.i new file mode 100644 index 0000000..b114591 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlvideoinfo.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlvideomodeok.html.i b/SDL/.hg/store/data/docs/html/sdlvideomodeok.html.i new file mode 100644 index 0000000..8e6546b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlvideomodeok.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwaitevent.html.i b/SDL/.hg/store/data/docs/html/sdlwaitevent.html.i new file mode 100644 index 0000000..539f3c9 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwaitevent.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwaitthread.html.i b/SDL/.hg/store/data/docs/html/sdlwaitthread.html.i new file mode 100644 index 0000000..eb27f7b Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwaitthread.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwarpmouse.html.i b/SDL/.hg/store/data/docs/html/sdlwarpmouse.html.i new file mode 100644 index 0000000..a3add77 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwarpmouse.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwasinit.html.i b/SDL/.hg/store/data/docs/html/sdlwasinit.html.i new file mode 100644 index 0000000..e469216 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwasinit.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwmgetcaption.html.i b/SDL/.hg/store/data/docs/html/sdlwmgetcaption.html.i new file mode 100644 index 0000000..055ea12 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwmgetcaption.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwmgrabinput.html.i b/SDL/.hg/store/data/docs/html/sdlwmgrabinput.html.i new file mode 100644 index 0000000..f4933b0 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwmgrabinput.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwmiconifywindow.html.i b/SDL/.hg/store/data/docs/html/sdlwmiconifywindow.html.i new file mode 100644 index 0000000..29ffcdf Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwmiconifywindow.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwmsetcaption.html.i b/SDL/.hg/store/data/docs/html/sdlwmsetcaption.html.i new file mode 100644 index 0000000..13bbc55 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwmsetcaption.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwmseticon.html.i b/SDL/.hg/store/data/docs/html/sdlwmseticon.html.i new file mode 100644 index 0000000..b0510a8 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwmseticon.html.i differ diff --git a/SDL/.hg/store/data/docs/html/sdlwmtogglefullscreen.html.i b/SDL/.hg/store/data/docs/html/sdlwmtogglefullscreen.html.i new file mode 100644 index 0000000..eff108a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/sdlwmtogglefullscreen.html.i differ diff --git a/SDL/.hg/store/data/docs/html/thread.html.i b/SDL/.hg/store/data/docs/html/thread.html.i new file mode 100644 index 0000000..7797cfe Binary files /dev/null and b/SDL/.hg/store/data/docs/html/thread.html.i differ diff --git a/SDL/.hg/store/data/docs/html/time.html.i b/SDL/.hg/store/data/docs/html/time.html.i new file mode 100644 index 0000000..7e88325 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/time.html.i differ diff --git a/SDL/.hg/store/data/docs/html/video.html.i b/SDL/.hg/store/data/docs/html/video.html.i new file mode 100644 index 0000000..2954ec8 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/video.html.i differ diff --git a/SDL/.hg/store/data/docs/html/wm.html.i b/SDL/.hg/store/data/docs/html/wm.html.i new file mode 100644 index 0000000..c20d97a Binary files /dev/null and b/SDL/.hg/store/data/docs/html/wm.html.i differ diff --git a/SDL/.hg/store/data/docs/html/~2ecvsignore.i b/SDL/.hg/store/data/docs/html/~2ecvsignore.i new file mode 100644 index 0000000..fc26095 Binary files /dev/null and b/SDL/.hg/store/data/docs/html/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/docs/images/rainbow.gif.i b/SDL/.hg/store/data/docs/images/rainbow.gif.i new file mode 100644 index 0000000..dd39fb4 Binary files /dev/null and b/SDL/.hg/store/data/docs/images/rainbow.gif.i differ diff --git a/SDL/.hg/store/data/docs/index.html.i b/SDL/.hg/store/data/docs/index.html.i new file mode 100644 index 0000000..eec0198 Binary files /dev/null and b/SDL/.hg/store/data/docs/index.html.i differ diff --git a/SDL/.hg/store/data/docs/man3/_makefile.am.i b/SDL/.hg/store/data/docs/man3/_makefile.am.i new file mode 100644 index 0000000..449eb29 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_makefile.am.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___active_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___active_event.3.i new file mode 100644 index 0000000..30fb273 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___active_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___add_timer.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___add_timer.3.i new file mode 100644 index 0000000..17a2356 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___add_timer.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___audio_c_v_t.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___audio_c_v_t.3.i new file mode 100644 index 0000000..323bbdc Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___audio_c_v_t.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___audio_spec.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___audio_spec.3.i new file mode 100644 index 0000000..615fad7 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___audio_spec.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___blit_surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___blit_surface.3.i new file mode 100644 index 0000000..8d04ed8 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___blit_surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___build_audio_c_v_t.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___build_audio_c_v_t.3.i new file mode 100644 index 0000000..dc43e46 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___build_audio_c_v_t.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d.3.i new file mode 100644 index 0000000..b3c8a73 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_close.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_close.3.i new file mode 100644 index 0000000..b9deb87 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_close.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_eject.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_eject.3.i new file mode 100644 index 0000000..450f802 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_eject.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_name.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_name.3.i new file mode 100644 index 0000000..5f39270 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_name.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_num_drives.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_num_drives.3.i new file mode 100644 index 0000000..9f6ebc5 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_num_drives.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_open.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_open.3.i new file mode 100644 index 0000000..e44271a Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_open.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_pause.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_pause.3.i new file mode 100644 index 0000000..f5e9a8e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_pause.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_play.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_play.3.i new file mode 100644 index 0000000..5fe0ea3 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_play.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_play_tracks.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_play_tracks.3.i new file mode 100644 index 0000000..2342108 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_play_tracks.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_resume.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_resume.3.i new file mode 100644 index 0000000..c87d24b Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_resume.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_status.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_status.3.i new file mode 100644 index 0000000..8ed42a3 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_status.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_stop.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_stop.3.i new file mode 100644 index 0000000..4df6532 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_d_stop.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___c_dtrack.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___c_dtrack.3.i new file mode 100644 index 0000000..4326ace Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___c_dtrack.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___close_audio.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___close_audio.3.i new file mode 100644 index 0000000..6edf04d Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___close_audio.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___color.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___color.3.i new file mode 100644 index 0000000..1d77780 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___color.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___cond_broadcast.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_broadcast.3.i new file mode 100644 index 0000000..59e4653 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_broadcast.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___cond_signal.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_signal.3.i new file mode 100644 index 0000000..c1eda06 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_signal.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___cond_wait.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_wait.3.i new file mode 100644 index 0000000..faca194 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_wait.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___cond_wait_timeout.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_wait_timeout.3.i new file mode 100644 index 0000000..262292c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___cond_wait_timeout.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___convert_audio.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___convert_audio.3.i new file mode 100644 index 0000000..dfa8206 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___convert_audio.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___convert_surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___convert_surface.3.i new file mode 100644 index 0000000..f1651db Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___convert_surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_cond.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_cond.3.i new file mode 100644 index 0000000..5102c13 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_cond.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_cursor.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_cursor.3.i new file mode 100644 index 0000000..8650704 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_cursor.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_mutex.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_mutex.3.i new file mode 100644 index 0000000..a990da7 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_mutex.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_r_g_b_surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_r_g_b_surface.3.i new file mode 100644 index 0000000..c1ae64e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_r_g_b_surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_r_g_b_surface_from.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_r_g_b_surface_from.3.i new file mode 100644 index 0000000..76fb5f9 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_r_g_b_surface_from.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_semaphore.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_semaphore.3.i new file mode 100644 index 0000000..b851a5c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_semaphore.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_thread.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_thread.3.i new file mode 100644 index 0000000..a7024f0 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_thread.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___create_y_u_v_overlay.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___create_y_u_v_overlay.3.i new file mode 100644 index 0000000..5d71990 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___create_y_u_v_overlay.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___delay.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___delay.3.i new file mode 100644 index 0000000..8e1eff7 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___delay.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_cond.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_cond.3.i new file mode 100644 index 0000000..3d0be76 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_cond.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_mutex.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_mutex.3.i new file mode 100644 index 0000000..d94cfa7 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_mutex.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_semaphore.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_semaphore.3.i new file mode 100644 index 0000000..287cdca Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___destroy_semaphore.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___display_format.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___display_format.3.i new file mode 100644 index 0000000..8596676 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___display_format.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___display_format_alpha.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___display_format_alpha.3.i new file mode 100644 index 0000000..a40100e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___display_format_alpha.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___display_y_u_v_overlay.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___display_y_u_v_overlay.3.i new file mode 100644 index 0000000..f158768 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___display_y_u_v_overlay.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___enable_key_repeat.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___enable_key_repeat.3.i new file mode 100644 index 0000000..e5ea4d1 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___enable_key_repeat.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___enable_u_n_i_c_o_d_e.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___enable_u_n_i_c_o_d_e.3.i new file mode 100644 index 0000000..2dceea1 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___enable_u_n_i_c_o_d_e.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___event.3.i new file mode 100644 index 0000000..4b9087c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___event_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___event_state.3.i new file mode 100644 index 0000000..1276ed8 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___event_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___expose_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___expose_event.3.i new file mode 100644 index 0000000..fed033b Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___expose_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___fill_rect.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___fill_rect.3.i new file mode 100644 index 0000000..a9babbb Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___fill_rect.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___flip.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___flip.3.i new file mode 100644 index 0000000..0aa966a Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___flip.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___free_cursor.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___free_cursor.3.i new file mode 100644 index 0000000..89ff588 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___free_cursor.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___free_surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___free_surface.3.i new file mode 100644 index 0000000..35faec6 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___free_surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___free_w_a_v.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___free_w_a_v.3.i new file mode 100644 index 0000000..31e4198 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___free_w_a_v.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___free_y_u_v_overlay.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___free_y_u_v_overlay.3.i new file mode 100644 index 0000000..d374515 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___free_y_u_v_overlay.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___get_attribute.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___get_attribute.3.i new file mode 100644 index 0000000..3b9f8ad Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___get_attribute.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___get_proc_address.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___get_proc_address.3.i new file mode 100644 index 0000000..1c07d7c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___get_proc_address.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___load_library.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___load_library.3.i new file mode 100644 index 0000000..9338fdc Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___load_library.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___set_attribute.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___set_attribute.3.i new file mode 100644 index 0000000..ac17756 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___set_attribute.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___swap_buffers.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___swap_buffers.3.i new file mode 100644 index 0000000..0082508 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___g_l___swap_buffers.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___g_lattr.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___g_lattr.3.i new file mode 100644 index 0000000..0899e92 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___g_lattr.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_app_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_app_state.3.i new file mode 100644 index 0000000..1006238 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_app_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_audio_status.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_audio_status.3.i new file mode 100644 index 0000000..0a04787 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_audio_status.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_clip_rect.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_clip_rect.3.i new file mode 100644 index 0000000..260606f Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_clip_rect.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_cursor.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_cursor.3.i new file mode 100644 index 0000000..a826a6c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_cursor.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_error.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_error.3.i new file mode 100644 index 0000000..011e1aa Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_error.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_event_filter.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_event_filter.3.i new file mode 100644 index 0000000..7d1ce4a Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_event_filter.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_gamma.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_gamma.3.i new file mode 100644 index 0000000..98823ab Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_gamma.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_gamma_ramp.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_gamma_ramp.3.i new file mode 100644 index 0000000..4c63f02 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_gamma_ramp.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_key_name.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_key_name.3.i new file mode 100644 index 0000000..6a2e091 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_key_name.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_key_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_key_state.3.i new file mode 100644 index 0000000..6b7847c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_key_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_mod_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_mod_state.3.i new file mode 100644 index 0000000..3dc6bdd Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_mod_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_mouse_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_mouse_state.3.i new file mode 100644 index 0000000..845ab45 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_mouse_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_r_g_b.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_r_g_b.3.i new file mode 100644 index 0000000..2a4505f Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_r_g_b.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_r_g_b_a.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_r_g_b_a.3.i new file mode 100644 index 0000000..49836aa Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_r_g_b_a.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_relative_mouse_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_relative_mouse_state.3.i new file mode 100644 index 0000000..07d5afc Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_relative_mouse_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_thread_i_d.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_thread_i_d.3.i new file mode 100644 index 0000000..df77d03 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_thread_i_d.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_ticks.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_ticks.3.i new file mode 100644 index 0000000..e1d7af4 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_ticks.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_video_info.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_video_info.3.i new file mode 100644 index 0000000..66f49b1 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_video_info.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___get_video_surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___get_video_surface.3.i new file mode 100644 index 0000000..f055fca Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___get_video_surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___init.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___init.3.i new file mode 100644 index 0000000..013169c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___init.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___init_sub_system.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___init_sub_system.3.i new file mode 100644 index 0000000..3ab0cb6 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___init_sub_system.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joy_axis_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_axis_event.3.i new file mode 100644 index 0000000..bc73555 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_axis_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joy_ball_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_ball_event.3.i new file mode 100644 index 0000000..7371c16 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_ball_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joy_button_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_button_event.3.i new file mode 100644 index 0000000..b1cbf60 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_button_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joy_hat_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_hat_event.3.i new file mode 100644 index 0000000..a1eb3d7 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joy_hat_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_close.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_close.3.i new file mode 100644 index 0000000..b169e60 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_close.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_event_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_event_state.3.i new file mode 100644 index 0000000..bed1366 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_event_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_axis.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_axis.3.i new file mode 100644 index 0000000..9aad8b0 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_axis.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_ball.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_ball.3.i new file mode 100644 index 0000000..bb5ae52 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_ball.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_button.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_button.3.i new file mode 100644 index 0000000..c51f8e5 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_button.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_hat.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_hat.3.i new file mode 100644 index 0000000..6864a03 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_get_hat.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_index.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_index.3.i new file mode 100644 index 0000000..fe5bc3d Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_index.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_name.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_name.3.i new file mode 100644 index 0000000..7db2828 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_name.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_axes.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_axes.3.i new file mode 100644 index 0000000..0525f87 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_axes.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_balls.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_balls.3.i new file mode 100644 index 0000000..60316e9 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_balls.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_buttons.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_buttons.3.i new file mode 100644 index 0000000..35f27f7 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_buttons.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_hats.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_hats.3.i new file mode 100644 index 0000000..a82ee21 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_num_hats.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_open.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_open.3.i new file mode 100644 index 0000000..cdd060b Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_open.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_opened.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_opened.3.i new file mode 100644 index 0000000..03d514e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_opened.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_update.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_update.3.i new file mode 100644 index 0000000..db03c19 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___joystick_update.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___keyboard_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___keyboard_event.3.i new file mode 100644 index 0000000..e46f565 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___keyboard_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___kill_thread.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___kill_thread.3.i new file mode 100644 index 0000000..bc7127c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___kill_thread.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___list_modes.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___list_modes.3.i new file mode 100644 index 0000000..16fab02 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___list_modes.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___load_b_m_p.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___load_b_m_p.3.i new file mode 100644 index 0000000..aa85a0e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___load_b_m_p.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___load_w_a_v.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___load_w_a_v.3.i new file mode 100644 index 0000000..78c9a62 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___load_w_a_v.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___lock_audio.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___lock_audio.3.i new file mode 100644 index 0000000..6111a52 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___lock_audio.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___lock_surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___lock_surface.3.i new file mode 100644 index 0000000..48fb724 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___lock_surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___lock_y_u_v_overlay.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___lock_y_u_v_overlay.3.i new file mode 100644 index 0000000..5bf4bc6 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___lock_y_u_v_overlay.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___map_r_g_b.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___map_r_g_b.3.i new file mode 100644 index 0000000..a3edf58 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___map_r_g_b.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___map_r_g_b_a.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___map_r_g_b_a.3.i new file mode 100644 index 0000000..1530d51 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___map_r_g_b_a.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___mix_audio.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___mix_audio.3.i new file mode 100644 index 0000000..5bd1f9c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___mix_audio.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___mouse_button_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___mouse_button_event.3.i new file mode 100644 index 0000000..d19e418 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___mouse_button_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___mouse_motion_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___mouse_motion_event.3.i new file mode 100644 index 0000000..f35de47 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___mouse_motion_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___num_joysticks.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___num_joysticks.3.i new file mode 100644 index 0000000..03b76a3 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___num_joysticks.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___open_audio.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___open_audio.3.i new file mode 100644 index 0000000..17ef0c0 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___open_audio.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___overlay.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___overlay.3.i new file mode 100644 index 0000000..472b909 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___overlay.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___palette.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___palette.3.i new file mode 100644 index 0000000..007640e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___palette.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___pause_audio.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___pause_audio.3.i new file mode 100644 index 0000000..59c03dc Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___pause_audio.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___peep_events.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___peep_events.3.i new file mode 100644 index 0000000..a75da97 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___peep_events.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___pixel_format.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___pixel_format.3.i new file mode 100644 index 0000000..b124897 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___pixel_format.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___poll_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___poll_event.3.i new file mode 100644 index 0000000..f2b845f Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___poll_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___pump_events.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___pump_events.3.i new file mode 100644 index 0000000..997f816 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___pump_events.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___push_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___push_event.3.i new file mode 100644 index 0000000..022797b Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___push_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___quit.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___quit.3.i new file mode 100644 index 0000000..d7a7572 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___quit.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___quit_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___quit_event.3.i new file mode 100644 index 0000000..cf1bfe0 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___quit_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___quit_sub_system.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___quit_sub_system.3.i new file mode 100644 index 0000000..b6fc263 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___quit_sub_system.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___r_w_from_file.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___r_w_from_file.3.i new file mode 100644 index 0000000..09ffad0 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___r_w_from_file.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___rect.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___rect.3.i new file mode 100644 index 0000000..2054380 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___rect.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___remove_timer.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___remove_timer.3.i new file mode 100644 index 0000000..50b5525 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___remove_timer.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___resize_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___resize_event.3.i new file mode 100644 index 0000000..a654089 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___resize_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___save_b_m_p.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___save_b_m_p.3.i new file mode 100644 index 0000000..30e1d9c Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___save_b_m_p.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___sem_post.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_post.3.i new file mode 100644 index 0000000..d3f9e24 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_post.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___sem_try_wait.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_try_wait.3.i new file mode 100644 index 0000000..600c66e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_try_wait.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___sem_value.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_value.3.i new file mode 100644 index 0000000..1b4ee9f Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_value.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___sem_wait.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_wait.3.i new file mode 100644 index 0000000..49e7534 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_wait.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___sem_wait_timeout.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_wait_timeout.3.i new file mode 100644 index 0000000..16a4683 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___sem_wait_timeout.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_alpha.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_alpha.3.i new file mode 100644 index 0000000..c4137bc Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_alpha.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_clip_rect.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_clip_rect.3.i new file mode 100644 index 0000000..63b8890 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_clip_rect.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_color_key.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_color_key.3.i new file mode 100644 index 0000000..59c9902 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_color_key.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_colors.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_colors.3.i new file mode 100644 index 0000000..0b20ef9 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_colors.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_cursor.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_cursor.3.i new file mode 100644 index 0000000..c9327f4 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_cursor.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_event_filter.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_event_filter.3.i new file mode 100644 index 0000000..e5cd9f2 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_event_filter.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_gamma.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_gamma.3.i new file mode 100644 index 0000000..573aca7 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_gamma.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_gamma_ramp.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_gamma_ramp.3.i new file mode 100644 index 0000000..b942c27 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_gamma_ramp.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_mod_state.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_mod_state.3.i new file mode 100644 index 0000000..a56a581 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_mod_state.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_palette.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_palette.3.i new file mode 100644 index 0000000..ca2d076 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_palette.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_timer.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_timer.3.i new file mode 100644 index 0000000..8c02175 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_timer.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___set_video_mode.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___set_video_mode.3.i new file mode 100644 index 0000000..760aa13 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___set_video_mode.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___show_cursor.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___show_cursor.3.i new file mode 100644 index 0000000..ce7253b Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___show_cursor.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___surface.3.i new file mode 100644 index 0000000..71e1184 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___sys_w_m_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___sys_w_m_event.3.i new file mode 100644 index 0000000..966c43e Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___sys_w_m_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___thread_i_d.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___thread_i_d.3.i new file mode 100644 index 0000000..ab364f3 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___thread_i_d.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_audio.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_audio.3.i new file mode 100644 index 0000000..4d6e19d Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_audio.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_surface.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_surface.3.i new file mode 100644 index 0000000..7ed0ae6 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_surface.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_y_u_v_overlay.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_y_u_v_overlay.3.i new file mode 100644 index 0000000..9ebc8d9 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___unlock_y_u_v_overlay.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___update_rect.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___update_rect.3.i new file mode 100644 index 0000000..f5df345 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___update_rect.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___update_rects.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___update_rects.3.i new file mode 100644 index 0000000..eadd808 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___update_rects.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___user_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___user_event.3.i new file mode 100644 index 0000000..6b9d6d8 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___user_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___video_driver_name.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___video_driver_name.3.i new file mode 100644 index 0000000..a8fc23a Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___video_driver_name.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___video_info.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___video_info.3.i new file mode 100644 index 0000000..e113894 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___video_info.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___video_mode_o_k.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___video_mode_o_k.3.i new file mode 100644 index 0000000..87e5a95 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___video_mode_o_k.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___get_caption.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___get_caption.3.i new file mode 100644 index 0000000..23f708f Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___get_caption.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___grab_input.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___grab_input.3.i new file mode 100644 index 0000000..aedcdf8 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___grab_input.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___iconify_window.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___iconify_window.3.i new file mode 100644 index 0000000..54e6770 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___iconify_window.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___set_caption.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___set_caption.3.i new file mode 100644 index 0000000..cef8098 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___set_caption.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___set_icon.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___set_icon.3.i new file mode 100644 index 0000000..936aa2b Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___set_icon.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___toggle_full_screen.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___toggle_full_screen.3.i new file mode 100644 index 0000000..58c1549 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___w_m___toggle_full_screen.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___wait_event.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___wait_event.3.i new file mode 100644 index 0000000..d77f344 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___wait_event.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___wait_thread.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___wait_thread.3.i new file mode 100644 index 0000000..e7950c2 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___wait_thread.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___warp_mouse.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___warp_mouse.3.i new file mode 100644 index 0000000..bdf99c0 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___warp_mouse.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l___was_init.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l___was_init.3.i new file mode 100644 index 0000000..4dcaf50 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l___was_init.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l__keysym.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l__keysym.3.i new file mode 100644 index 0000000..18cd627 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l__keysym.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l__mutex_p.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l__mutex_p.3.i new file mode 100644 index 0000000..65d5f59 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l__mutex_p.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l__mutex_v.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l__mutex_v.3.i new file mode 100644 index 0000000..0fb0476 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l__mutex_v.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/_s_d_l_key.3.i b/SDL/.hg/store/data/docs/man3/_s_d_l_key.3.i new file mode 100644 index 0000000..2bb7a0b Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/_s_d_l_key.3.i differ diff --git a/SDL/.hg/store/data/docs/man3/~2ecvsignore.i b/SDL/.hg/store/data/docs/man3/~2ecvsignore.i new file mode 100644 index 0000000..fc26095 Binary files /dev/null and b/SDL/.hg/store/data/docs/man3/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/docs/~2ecvsignore.i b/SDL/.hg/store/data/docs/~2ecvsignore.i new file mode 100644 index 0000000..fc26095 Binary files /dev/null and b/SDL/.hg/store/data/docs/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/include/_makefile.am.i b/SDL/.hg/store/data/include/_makefile.am.i new file mode 100644 index 0000000..b486073 Binary files /dev/null and b/SDL/.hg/store/data/include/_makefile.am.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l.h.i b/SDL/.hg/store/data/include/_s_d_l.h.i new file mode 100644 index 0000000..de64d07 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__active.h.i b/SDL/.hg/store/data/include/_s_d_l__active.h.i new file mode 100644 index 0000000..a69c8a6 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__active.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__assert.h.i b/SDL/.hg/store/data/include/_s_d_l__assert.h.i new file mode 100644 index 0000000..4093d5f Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__assert.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__atomic.h.i b/SDL/.hg/store/data/include/_s_d_l__atomic.h.i new file mode 100644 index 0000000..790e5ad Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__atomic.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__audio.h.i b/SDL/.hg/store/data/include/_s_d_l__audio.h.i new file mode 100644 index 0000000..19ab2ef Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__audio.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__bits.h.i b/SDL/.hg/store/data/include/_s_d_l__bits.h.i new file mode 100644 index 0000000..a4dc3c6 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__bits.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__blendmode.h.i b/SDL/.hg/store/data/include/_s_d_l__blendmode.h.i new file mode 100644 index 0000000..6da2d3e Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__blendmode.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__byteorder.h.i b/SDL/.hg/store/data/include/_s_d_l__byteorder.h.i new file mode 100644 index 0000000..4c6bbfd Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__byteorder.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__cdrom.h.i b/SDL/.hg/store/data/include/_s_d_l__cdrom.h.i new file mode 100644 index 0000000..f6144ae Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__cdrom.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__clipboard.h.i b/SDL/.hg/store/data/include/_s_d_l__clipboard.h.i new file mode 100644 index 0000000..7d9378a Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__clipboard.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__compat.h.i b/SDL/.hg/store/data/include/_s_d_l__compat.h.i new file mode 100644 index 0000000..eb2a510 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__compat.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config.h.cmake.i b/SDL/.hg/store/data/include/_s_d_l__config.h.cmake.i new file mode 100644 index 0000000..f22d297 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config.h.cmake.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config.h.default.i b/SDL/.hg/store/data/include/_s_d_l__config.h.default.i new file mode 100644 index 0000000..2ed666c Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config.h.default.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config.h.i b/SDL/.hg/store/data/include/_s_d_l__config.h.i new file mode 100644 index 0000000..ad2e447 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config.h.in.i b/SDL/.hg/store/data/include/_s_d_l__config.h.in.i new file mode 100644 index 0000000..5b8f9cd Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config.h.in.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config.h.minimal.i b/SDL/.hg/store/data/include/_s_d_l__config.h.minimal.i new file mode 100644 index 0000000..d3a61f7 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config.h.minimal.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__amiga.h.i b/SDL/.hg/store/data/include/_s_d_l__config__amiga.h.i new file mode 100644 index 0000000..9232662 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__amiga.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__android.h.i b/SDL/.hg/store/data/include/_s_d_l__config__android.h.i new file mode 100644 index 0000000..889c988 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__android.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__dreamcast.h.i b/SDL/.hg/store/data/include/_s_d_l__config__dreamcast.h.i new file mode 100644 index 0000000..4472c30 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__dreamcast.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__generated.h.in.i b/SDL/.hg/store/data/include/_s_d_l__config__generated.h.in.i new file mode 100644 index 0000000..5a41757 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__generated.h.in.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__iphoneos.h.i b/SDL/.hg/store/data/include/_s_d_l__config__iphoneos.h.i new file mode 100644 index 0000000..dc2abcf Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__iphoneos.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__macos.h.i b/SDL/.hg/store/data/include/_s_d_l__config__macos.h.i new file mode 100644 index 0000000..ebf08cf Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__macos.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__macosx.h.i b/SDL/.hg/store/data/include/_s_d_l__config__macosx.h.i new file mode 100644 index 0000000..ee44269 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__macosx.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__minimal.h.i b/SDL/.hg/store/data/include/_s_d_l__config__minimal.h.i new file mode 100644 index 0000000..11bf238 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__minimal.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__nds.h.i b/SDL/.hg/store/data/include/_s_d_l__config__nds.h.i new file mode 100644 index 0000000..abf5fef Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__nds.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__nintendods.h.i b/SDL/.hg/store/data/include/_s_d_l__config__nintendods.h.i new file mode 100644 index 0000000..07cfc8d Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__nintendods.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__os2.h.i b/SDL/.hg/store/data/include/_s_d_l__config__os2.h.i new file mode 100644 index 0000000..514a4c1 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__os2.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__pandora.h.i b/SDL/.hg/store/data/include/_s_d_l__config__pandora.h.i new file mode 100644 index 0000000..9f17126 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__pandora.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__psp.h.i b/SDL/.hg/store/data/include/_s_d_l__config__psp.h.i new file mode 100644 index 0000000..6837a4c Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__psp.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__symbian.h.i b/SDL/.hg/store/data/include/_s_d_l__config__symbian.h.i new file mode 100644 index 0000000..0c0c3b0 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__symbian.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__win32.h.i b/SDL/.hg/store/data/include/_s_d_l__config__win32.h.i new file mode 100644 index 0000000..bf6e032 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__win32.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__windows.h.i b/SDL/.hg/store/data/include/_s_d_l__config__windows.h.i new file mode 100644 index 0000000..cca16d0 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__windows.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__windowsrt.h.i b/SDL/.hg/store/data/include/_s_d_l__config__windowsrt.h.i new file mode 100644 index 0000000..6204cb0 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__windowsrt.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__winrt.h.i b/SDL/.hg/store/data/include/_s_d_l__config__winrt.h.i new file mode 100644 index 0000000..94ad3a4 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__winrt.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__config__wiz.h.i b/SDL/.hg/store/data/include/_s_d_l__config__wiz.h.i new file mode 100644 index 0000000..774df26 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__config__wiz.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__copying.h.i b/SDL/.hg/store/data/include/_s_d_l__copying.h.i new file mode 100644 index 0000000..be6b2cc Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__copying.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__cpuinfo.h.i b/SDL/.hg/store/data/include/_s_d_l__cpuinfo.h.i new file mode 100644 index 0000000..95157d6 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__cpuinfo.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__ctype.h.i b/SDL/.hg/store/data/include/_s_d_l__ctype.h.i new file mode 100644 index 0000000..41704cd Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__ctype.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__egl.h.i b/SDL/.hg/store/data/include/_s_d_l__egl.h.i new file mode 100644 index 0000000..e19acd3 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__egl.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__ellipse.h.i b/SDL/.hg/store/data/include/_s_d_l__ellipse.h.i new file mode 100644 index 0000000..c0e1064 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__ellipse.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__endian.h.i b/SDL/.hg/store/data/include/_s_d_l__endian.h.i new file mode 100644 index 0000000..023aa72 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__endian.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__error.h.i b/SDL/.hg/store/data/include/_s_d_l__error.h.i new file mode 100644 index 0000000..47f0e2a Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__error.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__events.h.i b/SDL/.hg/store/data/include/_s_d_l__events.h.i new file mode 100644 index 0000000..8d738cc Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__events.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__filesystem.h.i b/SDL/.hg/store/data/include/_s_d_l__filesystem.h.i new file mode 100644 index 0000000..05490d1 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__filesystem.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__gamecontroller.h.i b/SDL/.hg/store/data/include/_s_d_l__gamecontroller.h.i new file mode 100644 index 0000000..b69cb88 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__gamecontroller.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__gesture.h.i b/SDL/.hg/store/data/include/_s_d_l__gesture.h.i new file mode 100644 index 0000000..eae2fc8 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__gesture.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__getenv.h.i b/SDL/.hg/store/data/include/_s_d_l__getenv.h.i new file mode 100644 index 0000000..2c0b80e Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__getenv.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__haptic.h.i b/SDL/.hg/store/data/include/_s_d_l__haptic.h.i new file mode 100644 index 0000000..992e5ac Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__haptic.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__hints.h.i b/SDL/.hg/store/data/include/_s_d_l__hints.h.i new file mode 100644 index 0000000..8d48c6a Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__hints.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__input.h.i b/SDL/.hg/store/data/include/_s_d_l__input.h.i new file mode 100644 index 0000000..d4be949 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__input.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__joystick.h.i b/SDL/.hg/store/data/include/_s_d_l__joystick.h.i new file mode 100644 index 0000000..91030ea Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__joystick.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__keyboard.h.i b/SDL/.hg/store/data/include/_s_d_l__keyboard.h.i new file mode 100644 index 0000000..63c56be Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__keyboard.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__keycode.h.i b/SDL/.hg/store/data/include/_s_d_l__keycode.h.i new file mode 100644 index 0000000..d5939e7 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__keycode.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__keysym.h.i b/SDL/.hg/store/data/include/_s_d_l__keysym.h.i new file mode 100644 index 0000000..779274b Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__keysym.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__loadso.h.i b/SDL/.hg/store/data/include/_s_d_l__loadso.h.i new file mode 100644 index 0000000..d3496e6 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__loadso.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__log.h.i b/SDL/.hg/store/data/include/_s_d_l__log.h.i new file mode 100644 index 0000000..20df6cc Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__log.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__main.h.i b/SDL/.hg/store/data/include/_s_d_l__main.h.i new file mode 100644 index 0000000..3e22aef Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__main.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__messagebox.h.i b/SDL/.hg/store/data/include/_s_d_l__messagebox.h.i new file mode 100644 index 0000000..5f9feb0 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__messagebox.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__mouse.h.i b/SDL/.hg/store/data/include/_s_d_l__mouse.h.i new file mode 100644 index 0000000..e00b6f7 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__mouse.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__mutex.h.i b/SDL/.hg/store/data/include/_s_d_l__mutex.h.i new file mode 100644 index 0000000..492ef73 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__mutex.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__name.h.i b/SDL/.hg/store/data/include/_s_d_l__name.h.i new file mode 100644 index 0000000..8527fbe Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__name.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengl.h.d b/SDL/.hg/store/data/include/_s_d_l__opengl.h.d new file mode 100644 index 0000000..266de95 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengl.h.d differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengl.h.i b/SDL/.hg/store/data/include/_s_d_l__opengl.h.i new file mode 100644 index 0000000..f3b8151 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengl.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengl__glext.h.d b/SDL/.hg/store/data/include/_s_d_l__opengl__glext.h.d new file mode 100644 index 0000000..a49ad40 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengl__glext.h.d differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengl__glext.h.i b/SDL/.hg/store/data/include/_s_d_l__opengl__glext.h.i new file mode 100644 index 0000000..d70755b Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengl__glext.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengles.h.i b/SDL/.hg/store/data/include/_s_d_l__opengles.h.i new file mode 100644 index 0000000..3dae6d1 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengles.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengles2.h.i b/SDL/.hg/store/data/include/_s_d_l__opengles2.h.i new file mode 100644 index 0000000..1d0b8ca Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengles2.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2.h.i b/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2.h.i new file mode 100644 index 0000000..eb1c97e Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2ext.h.i b/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2ext.h.i new file mode 100644 index 0000000..9a27c17 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2ext.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2platform.h.i b/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2platform.h.i new file mode 100644 index 0000000..d58d79f Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengles2__gl2platform.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__opengles2__khrplatform.h.i b/SDL/.hg/store/data/include/_s_d_l__opengles2__khrplatform.h.i new file mode 100644 index 0000000..ec37d1e Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__opengles2__khrplatform.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__pixels.h.i b/SDL/.hg/store/data/include/_s_d_l__pixels.h.i new file mode 100644 index 0000000..2535de1 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__pixels.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__platform.h.i b/SDL/.hg/store/data/include/_s_d_l__platform.h.i new file mode 100644 index 0000000..8a921fb Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__platform.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__poly.h.i b/SDL/.hg/store/data/include/_s_d_l__poly.h.i new file mode 100644 index 0000000..68d3fdb Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__poly.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__power.h.i b/SDL/.hg/store/data/include/_s_d_l__power.h.i new file mode 100644 index 0000000..ab93702 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__power.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__quit.h.i b/SDL/.hg/store/data/include/_s_d_l__quit.h.i new file mode 100644 index 0000000..dc8ecbb Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__quit.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__rect.h.i b/SDL/.hg/store/data/include/_s_d_l__rect.h.i new file mode 100644 index 0000000..709f056 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__rect.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__render.h.i b/SDL/.hg/store/data/include/_s_d_l__render.h.i new file mode 100644 index 0000000..aa2dc7a Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__render.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__revision.h.i b/SDL/.hg/store/data/include/_s_d_l__revision.h.i new file mode 100644 index 0000000..5e855d5 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__revision.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__rwops.h.i b/SDL/.hg/store/data/include/_s_d_l__rwops.h.i new file mode 100644 index 0000000..e3fa125 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__rwops.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__scalemode.h.i b/SDL/.hg/store/data/include/_s_d_l__scalemode.h.i new file mode 100644 index 0000000..a132b19 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__scalemode.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__scancode.h.i b/SDL/.hg/store/data/include/_s_d_l__scancode.h.i new file mode 100644 index 0000000..f2a3f39 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__scancode.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__shape.h.i b/SDL/.hg/store/data/include/_s_d_l__shape.h.i new file mode 100644 index 0000000..eb35676 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__shape.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__stdarg.h.i b/SDL/.hg/store/data/include/_s_d_l__stdarg.h.i new file mode 100644 index 0000000..8b568c8 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__stdarg.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__stdinc.h.i b/SDL/.hg/store/data/include/_s_d_l__stdinc.h.i new file mode 100644 index 0000000..70904dd Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__stdinc.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__stdlib.h.i b/SDL/.hg/store/data/include/_s_d_l__stdlib.h.i new file mode 100644 index 0000000..e9eeef9 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__stdlib.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__string.h.i b/SDL/.hg/store/data/include/_s_d_l__string.h.i new file mode 100644 index 0000000..cfd4fef Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__string.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__surface.h.i b/SDL/.hg/store/data/include/_s_d_l__surface.h.i new file mode 100644 index 0000000..125a7fd Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__surface.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__system.h.i b/SDL/.hg/store/data/include/_s_d_l__system.h.i new file mode 100644 index 0000000..b5e7ef6 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__system.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__syswm.h.i b/SDL/.hg/store/data/include/_s_d_l__syswm.h.i new file mode 100644 index 0000000..b14822d Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__syswm.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test.h.i b/SDL/.hg/store/data/include/_s_d_l__test.h.i new file mode 100644 index 0000000..35a77f5 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__assert.h.i b/SDL/.hg/store/data/include/_s_d_l__test__assert.h.i new file mode 100644 index 0000000..3227c28 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__assert.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__common.h.i b/SDL/.hg/store/data/include/_s_d_l__test__common.h.i new file mode 100644 index 0000000..6387853 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__common.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__compare.h.i b/SDL/.hg/store/data/include/_s_d_l__test__compare.h.i new file mode 100644 index 0000000..22ff21e Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__compare.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__crc32.h.i b/SDL/.hg/store/data/include/_s_d_l__test__crc32.h.i new file mode 100644 index 0000000..397bab3 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__crc32.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__font.h.i b/SDL/.hg/store/data/include/_s_d_l__test__font.h.i new file mode 100644 index 0000000..017e358 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__font.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__fuzzer.h.i b/SDL/.hg/store/data/include/_s_d_l__test__fuzzer.h.i new file mode 100644 index 0000000..fb9841e Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__fuzzer.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__harness.h.i b/SDL/.hg/store/data/include/_s_d_l__test__harness.h.i new file mode 100644 index 0000000..7f15e1c Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__harness.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__images.h.i b/SDL/.hg/store/data/include/_s_d_l__test__images.h.i new file mode 100644 index 0000000..7d65448 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__images.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__log.h.i b/SDL/.hg/store/data/include/_s_d_l__test__log.h.i new file mode 100644 index 0000000..78df2e4 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__log.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__md5.h.i b/SDL/.hg/store/data/include/_s_d_l__test__md5.h.i new file mode 100644 index 0000000..e425996 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__md5.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__test__random.h.i b/SDL/.hg/store/data/include/_s_d_l__test__random.h.i new file mode 100644 index 0000000..459eae3 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__test__random.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__thread.h.i b/SDL/.hg/store/data/include/_s_d_l__thread.h.i new file mode 100644 index 0000000..a7b5a25 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__thread.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__timer.h.i b/SDL/.hg/store/data/include/_s_d_l__timer.h.i new file mode 100644 index 0000000..8ef3c3b Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__timer.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__touch.h.i b/SDL/.hg/store/data/include/_s_d_l__touch.h.i new file mode 100644 index 0000000..102bdba Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__touch.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__touchscreen.h.i b/SDL/.hg/store/data/include/_s_d_l__touchscreen.h.i new file mode 100644 index 0000000..fd49825 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__touchscreen.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__types.h.i b/SDL/.hg/store/data/include/_s_d_l__types.h.i new file mode 100644 index 0000000..9afebac Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__types.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__version.h.i b/SDL/.hg/store/data/include/_s_d_l__version.h.i new file mode 100644 index 0000000..757cc64 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__version.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__video.h.d b/SDL/.hg/store/data/include/_s_d_l__video.h.d new file mode 100644 index 0000000..f666cbc Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__video.h.d differ diff --git a/SDL/.hg/store/data/include/_s_d_l__video.h.i b/SDL/.hg/store/data/include/_s_d_l__video.h.i new file mode 100644 index 0000000..a73b634 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__video.h.i differ diff --git a/SDL/.hg/store/data/include/_s_d_l__windows.h.i b/SDL/.hg/store/data/include/_s_d_l__windows.h.i new file mode 100644 index 0000000..eba7106 Binary files /dev/null and b/SDL/.hg/store/data/include/_s_d_l__windows.h.i differ diff --git a/SDL/.hg/store/data/include/begin__code.h.i b/SDL/.hg/store/data/include/begin__code.h.i new file mode 100644 index 0000000..a807728 Binary files /dev/null and b/SDL/.hg/store/data/include/begin__code.h.i differ diff --git a/SDL/.hg/store/data/include/close__code.h.i b/SDL/.hg/store/data/include/close__code.h.i new file mode 100644 index 0000000..889542b Binary files /dev/null and b/SDL/.hg/store/data/include/close__code.h.i differ diff --git a/SDL/.hg/store/data/include/doxyfile.i b/SDL/.hg/store/data/include/doxyfile.i new file mode 100644 index 0000000..8085ded Binary files /dev/null and b/SDL/.hg/store/data/include/doxyfile.i differ diff --git a/SDL/.hg/store/data/include/~2ecvsignore.i b/SDL/.hg/store/data/include/~2ecvsignore.i new file mode 100644 index 0000000..8466639 Binary files /dev/null and b/SDL/.hg/store/data/include/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/install-sh.i b/SDL/.hg/store/data/install-sh.i new file mode 100644 index 0000000..16b4eb0 Binary files /dev/null and b/SDL/.hg/store/data/install-sh.i differ diff --git a/SDL/.hg/store/data/ltconfig.i b/SDL/.hg/store/data/ltconfig.i new file mode 100644 index 0000000..a8a5370 Binary files /dev/null and b/SDL/.hg/store/data/ltconfig.i differ diff --git a/SDL/.hg/store/data/ltmain.sh.i b/SDL/.hg/store/data/ltmain.sh.i new file mode 100644 index 0000000..715094b Binary files /dev/null and b/SDL/.hg/store/data/ltmain.sh.i differ diff --git a/SDL/.hg/store/data/missing.i b/SDL/.hg/store/data/missing.i new file mode 100644 index 0000000..01f3ac1 Binary files /dev/null and b/SDL/.hg/store/data/missing.i differ diff --git a/SDL/.hg/store/data/mkinstalldirs.i b/SDL/.hg/store/data/mkinstalldirs.i new file mode 100644 index 0000000..ae396e5 Binary files /dev/null and b/SDL/.hg/store/data/mkinstalldirs.i differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/clean__premake.bat.i b/SDL/.hg/store/data/premake/_cygwin/build-scripts/clean__premake.bat.i new file mode 100644 index 0000000..1f9d19b Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/clean__premake.bat.i differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/cygwin.bat.i b/SDL/.hg/store/data/premake/_cygwin/build-scripts/cygwin.bat.i new file mode 100644 index 0000000..7bb51b0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/cygwin.bat.i differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/make.debug.bat.i b/SDL/.hg/store/data/premake/_cygwin/build-scripts/make.debug.bat.i new file mode 100644 index 0000000..34c6d97 Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/make.debug.bat.i differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/make.release.bat.i b/SDL/.hg/store/data/premake/_cygwin/build-scripts/make.release.bat.i new file mode 100644 index 0000000..8850d79 Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/make.release.bat.i differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/premake4.exe.d b/SDL/.hg/store/data/premake/_cygwin/build-scripts/premake4.exe.d new file mode 100644 index 0000000..77e3a15 Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/premake4.exe.d differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/premake4.exe.i b/SDL/.hg/store/data/premake/_cygwin/build-scripts/premake4.exe.i new file mode 100644 index 0000000..cd8b5d5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/premake4.exe.i differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/run.tests.debug.bat.i b/SDL/.hg/store/data/premake/_cygwin/build-scripts/run.tests.debug.bat.i new file mode 100644 index 0000000..cd6083a Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/run.tests.debug.bat.i differ diff --git a/SDL/.hg/store/data/premake/_cygwin/build-scripts/run.tests.release.bat.i b/SDL/.hg/store/data/premake/_cygwin/build-scripts/run.tests.release.bat.i new file mode 100644 index 0000000..12851cc Binary files /dev/null and b/SDL/.hg/store/data/premake/_cygwin/build-scripts/run.tests.release.bat.i differ diff --git a/SDL/.hg/store/data/premake/_linux/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_linux/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..ee18466 Binary files /dev/null and b/SDL/.hg/store/data/premake/_linux/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_linux/build-scripts/clean__premake.sh.i b/SDL/.hg/store/data/premake/_linux/build-scripts/clean__premake.sh.i new file mode 100644 index 0000000..188f844 Binary files /dev/null and b/SDL/.hg/store/data/premake/_linux/build-scripts/clean__premake.sh.i differ diff --git a/SDL/.hg/store/data/premake/_linux/build-scripts/gmake.sh.i b/SDL/.hg/store/data/premake/_linux/build-scripts/gmake.sh.i new file mode 100644 index 0000000..e5c8e06 Binary files /dev/null and b/SDL/.hg/store/data/premake/_linux/build-scripts/gmake.sh.i differ diff --git a/SDL/.hg/store/data/premake/_linux/build-scripts/premake4.i b/SDL/.hg/store/data/premake/_linux/build-scripts/premake4.i new file mode 100644 index 0000000..4537ab3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_linux/build-scripts/premake4.i differ diff --git a/SDL/.hg/store/data/premake/_linux/build-scripts/run.tests.sh.i b/SDL/.hg/store/data/premake/_linux/build-scripts/run.tests.sh.i new file mode 100644 index 0000000..1f9243b Binary files /dev/null and b/SDL/.hg/store/data/premake/_linux/build-scripts/run.tests.sh.i differ diff --git a/SDL/.hg/store/data/premake/_min_g_w/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_min_g_w/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..0c7e3e4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_min_g_w/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_min_g_w/build-scripts/clean__premake.bat.i b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/clean__premake.bat.i new file mode 100644 index 0000000..af70df1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/clean__premake.bat.i differ diff --git a/SDL/.hg/store/data/premake/_min_g_w/build-scripts/mingw.bat.i b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/mingw.bat.i new file mode 100644 index 0000000..e858e2b Binary files /dev/null and b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/mingw.bat.i differ diff --git a/SDL/.hg/store/data/premake/_min_g_w/build-scripts/premake4.exe.d b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/premake4.exe.d new file mode 100644 index 0000000..77e3a15 Binary files /dev/null and b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/premake4.exe.d differ diff --git a/SDL/.hg/store/data/premake/_min_g_w/build-scripts/premake4.exe.i b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/premake4.exe.i new file mode 100644 index 0000000..cd8b5d5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/premake4.exe.i differ diff --git a/SDL/.hg/store/data/premake/_min_g_w/build-scripts/run.tests.bat.i b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/run.tests.bat.i new file mode 100644 index 0000000..a29b572 Binary files /dev/null and b/SDL/.hg/store/data/premake/_min_g_w/build-scripts/run.tests.bat.i differ diff --git a/SDL/.hg/store/data/premake/_r_e_a_d_m_e-cygwin.txt.i b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-cygwin.txt.i new file mode 100644 index 0000000..634f613 Binary files /dev/null and b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-cygwin.txt.i differ diff --git a/SDL/.hg/store/data/premake/_r_e_a_d_m_e-ios.txt.i b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-ios.txt.i new file mode 100644 index 0000000..c9fb251 Binary files /dev/null and b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-ios.txt.i differ diff --git a/SDL/.hg/store/data/premake/_r_e_a_d_m_e-linux.txt.i b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-linux.txt.i new file mode 100644 index 0000000..1279db3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-linux.txt.i differ diff --git a/SDL/.hg/store/data/premake/_r_e_a_d_m_e-macosx.txt.i b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-macosx.txt.i new file mode 100644 index 0000000..0bb78be Binary files /dev/null and b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-macosx.txt.i differ diff --git a/SDL/.hg/store/data/premake/_r_e_a_d_m_e-mingw.txt.i b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-mingw.txt.i new file mode 100644 index 0000000..162d7ab Binary files /dev/null and b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-mingw.txt.i differ diff --git a/SDL/.hg/store/data/premake/_r_e_a_d_m_e-windows.txt.i b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-windows.txt.i new file mode 100644 index 0000000..a196ef6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_r_e_a_d_m_e-windows.txt.i differ diff --git a/SDL/.hg/store/data/premake/_r_e_a_d_m_e.txt.i b/SDL/.hg/store/data/premake/_r_e_a_d_m_e.txt.i new file mode 100644 index 0000000..f18364d Binary files /dev/null and b/SDL/.hg/store/data/premake/_r_e_a_d_m_e.txt.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l.sln.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l.sln.i new file mode 100644 index 0000000..1571d9e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l.sln.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2/_s_d_l2.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2/_s_d_l2.vcproj.i new file mode 100644 index 0000000..d1cc11e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2/_s_d_l2.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2main/_s_d_l2main.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2main/_s_d_l2main.vcproj.i new file mode 100644 index 0000000..668a3d5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2main/_s_d_l2main.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2test/_s_d_l2test.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2test/_s_d_l2test.vcproj.i new file mode 100644 index 0000000..79d8ccb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l2test/_s_d_l2test.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..9325283 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/checkkeys/checkkeys.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/checkkeys/checkkeys.vcproj.i new file mode 100644 index 0000000..1303e30 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/checkkeys/checkkeys.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/loopwave/loopwave.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/loopwave/loopwave.vcproj.i new file mode 100644 index 0000000..54162e2 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/loopwave/loopwave.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testatomic/testatomic.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testatomic/testatomic.vcproj.i new file mode 100644 index 0000000..551fb76 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testatomic/testatomic.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testaudioinfo/testaudioinfo.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testaudioinfo/testaudioinfo.vcproj.i new file mode 100644 index 0000000..2635e97 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testaudioinfo/testaudioinfo.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testautomation/testautomation.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testautomation/testautomation.vcproj.i new file mode 100644 index 0000000..7991190 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testautomation/testautomation.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testchessboard/testchessboard.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testchessboard/testchessboard.vcproj.i new file mode 100644 index 0000000..f5825d1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testchessboard/testchessboard.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testdraw2/testdraw2.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testdraw2/testdraw2.vcproj.i new file mode 100644 index 0000000..3ed42cf Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testdraw2/testdraw2.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testerror/testerror.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testerror/testerror.vcproj.i new file mode 100644 index 0000000..4d2700a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testerror/testerror.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testfile/testfile.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testfile/testfile.vcproj.i new file mode 100644 index 0000000..119ef90 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testfile/testfile.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testfilesystem/testfilesystem.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testfilesystem/testfilesystem.vcproj.i new file mode 100644 index 0000000..6bb925e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testfilesystem/testfilesystem.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgamecontroller/testgamecontroller.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgamecontroller/testgamecontroller.vcproj.i new file mode 100644 index 0000000..a58659c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgamecontroller/testgamecontroller.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgesture/testgesture.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgesture/testgesture.vcproj.i new file mode 100644 index 0000000..9aa852a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgesture/testgesture.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgl2/testgl2.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgl2/testgl2.vcproj.i new file mode 100644 index 0000000..66b3b8d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgl2/testgl2.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgles/testgles.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgles/testgles.vcproj.i new file mode 100644 index 0000000..37f7060 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testgles/testgles.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testhaptic/testhaptic.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testhaptic/testhaptic.vcproj.i new file mode 100644 index 0000000..e1aa74f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testhaptic/testhaptic.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testiconv/testiconv.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testiconv/testiconv.vcproj.i new file mode 100644 index 0000000..701562d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testiconv/testiconv.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testime/testime.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testime/testime.vcproj.i new file mode 100644 index 0000000..b6b20f6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testime/testime.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testjoystick/testjoystick.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testjoystick/testjoystick.vcproj.i new file mode 100644 index 0000000..1efe05d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testjoystick/testjoystick.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testkeys/testkeys.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testkeys/testkeys.vcproj.i new file mode 100644 index 0000000..088a1e5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testkeys/testkeys.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testloadso/testloadso.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testloadso/testloadso.vcproj.i new file mode 100644 index 0000000..772a571 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testloadso/testloadso.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testlock/testlock.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testlock/testlock.vcproj.i new file mode 100644 index 0000000..8038b93 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testlock/testlock.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testmessage/testmessage.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testmessage/testmessage.vcproj.i new file mode 100644 index 0000000..aef6330 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testmessage/testmessage.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testmultiaudio/testmultiaudio.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testmultiaudio/testmultiaudio.vcproj.i new file mode 100644 index 0000000..1500d00 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testmultiaudio/testmultiaudio.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testnative/testnative.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testnative/testnative.vcproj.i new file mode 100644 index 0000000..8a25651 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testnative/testnative.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testoverlay2/testoverlay2.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testoverlay2/testoverlay2.vcproj.i new file mode 100644 index 0000000..0eb1f2a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testoverlay2/testoverlay2.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testplatform/testplatform.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testplatform/testplatform.vcproj.i new file mode 100644 index 0000000..c402a39 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testplatform/testplatform.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testpower/testpower.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testpower/testpower.vcproj.i new file mode 100644 index 0000000..ced2944 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testpower/testpower.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrelative/testrelative.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrelative/testrelative.vcproj.i new file mode 100644 index 0000000..6d19ead Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrelative/testrelative.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrendercopyex/testrendercopyex.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrendercopyex/testrendercopyex.vcproj.i new file mode 100644 index 0000000..ad949a2 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrendercopyex/testrendercopyex.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrendertarget/testrendertarget.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrendertarget/testrendertarget.vcproj.i new file mode 100644 index 0000000..1ffbf78 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrendertarget/testrendertarget.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testresample/testresample.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testresample/testresample.vcproj.i new file mode 100644 index 0000000..449fa3d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testresample/testresample.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrumble/testrumble.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrumble/testrumble.vcproj.i new file mode 100644 index 0000000..503ca65 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testrumble/testrumble.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testscale/testscale.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testscale/testscale.vcproj.i new file mode 100644 index 0000000..dcabc78 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testscale/testscale.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testsem/testsem.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testsem/testsem.vcproj.i new file mode 100644 index 0000000..90c696a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testsem/testsem.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testshader/testshader.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testshader/testshader.vcproj.i new file mode 100644 index 0000000..2ba7b71 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testshader/testshader.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testshape/testshape.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testshape/testshape.vcproj.i new file mode 100644 index 0000000..3793215 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testshape/testshape.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testsprite2/testsprite2.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testsprite2/testsprite2.vcproj.i new file mode 100644 index 0000000..eab8c28 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testsprite2/testsprite2.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testspriteminimal/testspriteminimal.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testspriteminimal/testspriteminimal.vcproj.i new file mode 100644 index 0000000..50a3673 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testspriteminimal/testspriteminimal.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/teststreaming/teststreaming.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/teststreaming/teststreaming.vcproj.i new file mode 100644 index 0000000..9a0a3fa Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/teststreaming/teststreaming.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testthread/testthread.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testthread/testthread.vcproj.i new file mode 100644 index 0000000..dd2fd95 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testthread/testthread.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testtimer/testtimer.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testtimer/testtimer.vcproj.i new file mode 100644 index 0000000..8201489 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testtimer/testtimer.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testver/testver.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testver/testver.vcproj.i new file mode 100644 index 0000000..d0b5bd2 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testver/testver.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testwm2/testwm2.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testwm2/testwm2.vcproj.i new file mode 100644 index 0000000..f7b4568 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/testwm2/testwm2.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/torturethread/torturethread.vcproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/torturethread/torturethread.vcproj.i new file mode 100644 index 0000000..0e1bd4c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2008/tests/torturethread/torturethread.vcproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l.sln.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l.sln.i new file mode 100644 index 0000000..a6169e6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l.sln.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2/_s_d_l2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2/_s_d_l2.vcxproj.filters.i new file mode 100644 index 0000000..b2265ed Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2/_s_d_l2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2/_s_d_l2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2/_s_d_l2.vcxproj.i new file mode 100644 index 0000000..cdffe89 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2/_s_d_l2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2main/_s_d_l2main.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2main/_s_d_l2main.vcxproj.filters.i new file mode 100644 index 0000000..871604f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2main/_s_d_l2main.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2main/_s_d_l2main.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2main/_s_d_l2main.vcxproj.i new file mode 100644 index 0000000..8c8b7b5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2main/_s_d_l2main.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2test/_s_d_l2test.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2test/_s_d_l2test.vcxproj.filters.i new file mode 100644 index 0000000..59e9f21 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2test/_s_d_l2test.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2test/_s_d_l2test.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2test/_s_d_l2test.vcxproj.i new file mode 100644 index 0000000..afe531b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l2test/_s_d_l2test.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..9325283 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/checkkeys/checkkeys.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/checkkeys/checkkeys.vcxproj.filters.i new file mode 100644 index 0000000..6d40b82 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/checkkeys/checkkeys.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/checkkeys/checkkeys.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/checkkeys/checkkeys.vcxproj.i new file mode 100644 index 0000000..86888e7 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/checkkeys/checkkeys.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/loopwave/loopwave.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/loopwave/loopwave.vcxproj.filters.i new file mode 100644 index 0000000..1ec889f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/loopwave/loopwave.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/loopwave/loopwave.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/loopwave/loopwave.vcxproj.i new file mode 100644 index 0000000..fa84092 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/loopwave/loopwave.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testatomic/testatomic.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testatomic/testatomic.vcxproj.filters.i new file mode 100644 index 0000000..72a846b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testatomic/testatomic.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testatomic/testatomic.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testatomic/testatomic.vcxproj.i new file mode 100644 index 0000000..b8efd18 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testatomic/testatomic.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i new file mode 100644 index 0000000..14acf98 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testaudioinfo/testaudioinfo.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testaudioinfo/testaudioinfo.vcxproj.i new file mode 100644 index 0000000..59cbd2f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testaudioinfo/testaudioinfo.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testautomation/testautomation.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testautomation/testautomation.vcxproj.filters.i new file mode 100644 index 0000000..622c080 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testautomation/testautomation.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testautomation/testautomation.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testautomation/testautomation.vcxproj.i new file mode 100644 index 0000000..6157e0d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testautomation/testautomation.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testchessboard/testchessboard.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testchessboard/testchessboard.vcxproj.filters.i new file mode 100644 index 0000000..53256a1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testchessboard/testchessboard.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testchessboard/testchessboard.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testchessboard/testchessboard.vcxproj.i new file mode 100644 index 0000000..8bd4dd5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testchessboard/testchessboard.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testdraw2/testdraw2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testdraw2/testdraw2.vcxproj.filters.i new file mode 100644 index 0000000..6a4f4d7 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testdraw2/testdraw2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testdraw2/testdraw2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testdraw2/testdraw2.vcxproj.i new file mode 100644 index 0000000..920ee8a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testdraw2/testdraw2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testerror/testerror.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testerror/testerror.vcxproj.filters.i new file mode 100644 index 0000000..afd43b5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testerror/testerror.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testerror/testerror.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testerror/testerror.vcxproj.i new file mode 100644 index 0000000..d9853ad Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testerror/testerror.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfile/testfile.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfile/testfile.vcxproj.filters.i new file mode 100644 index 0000000..853f685 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfile/testfile.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfile/testfile.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfile/testfile.vcxproj.i new file mode 100644 index 0000000..49b2c3a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfile/testfile.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfilesystem/testfilesystem.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfilesystem/testfilesystem.vcxproj.filters.i new file mode 100644 index 0000000..44ba4a9 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfilesystem/testfilesystem.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfilesystem/testfilesystem.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfilesystem/testfilesystem.vcxproj.i new file mode 100644 index 0000000..5256e17 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testfilesystem/testfilesystem.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i new file mode 100644 index 0000000..018c487 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgamecontroller/testgamecontroller.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgamecontroller/testgamecontroller.vcxproj.i new file mode 100644 index 0000000..9ae968a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgamecontroller/testgamecontroller.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgesture/testgesture.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgesture/testgesture.vcxproj.filters.i new file mode 100644 index 0000000..caedf16 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgesture/testgesture.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgesture/testgesture.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgesture/testgesture.vcxproj.i new file mode 100644 index 0000000..50fd271 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgesture/testgesture.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgl2/testgl2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgl2/testgl2.vcxproj.filters.i new file mode 100644 index 0000000..e580c87 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgl2/testgl2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgl2/testgl2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgl2/testgl2.vcxproj.i new file mode 100644 index 0000000..bb35c6e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgl2/testgl2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgles/testgles.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgles/testgles.vcxproj.filters.i new file mode 100644 index 0000000..c14b367 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgles/testgles.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgles/testgles.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgles/testgles.vcxproj.i new file mode 100644 index 0000000..1ef0b12 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testgles/testgles.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testhaptic/testhaptic.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testhaptic/testhaptic.vcxproj.filters.i new file mode 100644 index 0000000..0721488 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testhaptic/testhaptic.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testhaptic/testhaptic.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testhaptic/testhaptic.vcxproj.i new file mode 100644 index 0000000..c7546f7 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testhaptic/testhaptic.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testiconv/testiconv.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testiconv/testiconv.vcxproj.filters.i new file mode 100644 index 0000000..a19c5eb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testiconv/testiconv.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testiconv/testiconv.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testiconv/testiconv.vcxproj.i new file mode 100644 index 0000000..472f381 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testiconv/testiconv.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testime/testime.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testime/testime.vcxproj.filters.i new file mode 100644 index 0000000..221744f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testime/testime.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testime/testime.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testime/testime.vcxproj.i new file mode 100644 index 0000000..0bbe147 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testime/testime.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testjoystick/testjoystick.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testjoystick/testjoystick.vcxproj.filters.i new file mode 100644 index 0000000..537560a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testjoystick/testjoystick.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testjoystick/testjoystick.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testjoystick/testjoystick.vcxproj.i new file mode 100644 index 0000000..f6f6425 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testjoystick/testjoystick.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testkeys/testkeys.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testkeys/testkeys.vcxproj.filters.i new file mode 100644 index 0000000..ccdd1eb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testkeys/testkeys.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testkeys/testkeys.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testkeys/testkeys.vcxproj.i new file mode 100644 index 0000000..8f9ccf9 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testkeys/testkeys.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testloadso/testloadso.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testloadso/testloadso.vcxproj.filters.i new file mode 100644 index 0000000..01d0b55 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testloadso/testloadso.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testloadso/testloadso.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testloadso/testloadso.vcxproj.i new file mode 100644 index 0000000..7f4cbf0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testloadso/testloadso.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testlock/testlock.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testlock/testlock.vcxproj.filters.i new file mode 100644 index 0000000..14242bc Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testlock/testlock.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testlock/testlock.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testlock/testlock.vcxproj.i new file mode 100644 index 0000000..d59ffe3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testlock/testlock.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmessage/testmessage.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmessage/testmessage.vcxproj.filters.i new file mode 100644 index 0000000..188390f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmessage/testmessage.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmessage/testmessage.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmessage/testmessage.vcxproj.i new file mode 100644 index 0000000..ab4103b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmessage/testmessage.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i new file mode 100644 index 0000000..250f498 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmultiaudio/testmultiaudio.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmultiaudio/testmultiaudio.vcxproj.i new file mode 100644 index 0000000..ed5d0b7 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testmultiaudio/testmultiaudio.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testnative/testnative.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testnative/testnative.vcxproj.filters.i new file mode 100644 index 0000000..49b0611 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testnative/testnative.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testnative/testnative.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testnative/testnative.vcxproj.i new file mode 100644 index 0000000..fba1361 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testnative/testnative.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testoverlay2/testoverlay2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testoverlay2/testoverlay2.vcxproj.filters.i new file mode 100644 index 0000000..2825175 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testoverlay2/testoverlay2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testoverlay2/testoverlay2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testoverlay2/testoverlay2.vcxproj.i new file mode 100644 index 0000000..3b1de69 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testoverlay2/testoverlay2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testplatform/testplatform.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testplatform/testplatform.vcxproj.filters.i new file mode 100644 index 0000000..726b1e6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testplatform/testplatform.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testplatform/testplatform.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testplatform/testplatform.vcxproj.i new file mode 100644 index 0000000..135c3dd Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testplatform/testplatform.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testpower/testpower.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testpower/testpower.vcxproj.filters.i new file mode 100644 index 0000000..7fe14e8 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testpower/testpower.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testpower/testpower.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testpower/testpower.vcxproj.i new file mode 100644 index 0000000..cd96bc2 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testpower/testpower.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrelative/testrelative.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrelative/testrelative.vcxproj.filters.i new file mode 100644 index 0000000..fb3100c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrelative/testrelative.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrelative/testrelative.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrelative/testrelative.vcxproj.i new file mode 100644 index 0000000..f691c90 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrelative/testrelative.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i new file mode 100644 index 0000000..25bd25b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendercopyex/testrendercopyex.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendercopyex/testrendercopyex.vcxproj.i new file mode 100644 index 0000000..a59c34c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendercopyex/testrendercopyex.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendertarget/testrendertarget.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendertarget/testrendertarget.vcxproj.filters.i new file mode 100644 index 0000000..6fc4e26 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendertarget/testrendertarget.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendertarget/testrendertarget.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendertarget/testrendertarget.vcxproj.i new file mode 100644 index 0000000..5bd1718 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrendertarget/testrendertarget.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testresample/testresample.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testresample/testresample.vcxproj.filters.i new file mode 100644 index 0000000..3ecc720 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testresample/testresample.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testresample/testresample.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testresample/testresample.vcxproj.i new file mode 100644 index 0000000..b258b90 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testresample/testresample.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrumble/testrumble.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrumble/testrumble.vcxproj.filters.i new file mode 100644 index 0000000..2faf7e1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrumble/testrumble.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrumble/testrumble.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrumble/testrumble.vcxproj.i new file mode 100644 index 0000000..857a985 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testrumble/testrumble.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testscale/testscale.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testscale/testscale.vcxproj.filters.i new file mode 100644 index 0000000..1d6b84a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testscale/testscale.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testscale/testscale.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testscale/testscale.vcxproj.i new file mode 100644 index 0000000..23f35c2 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testscale/testscale.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsem/testsem.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsem/testsem.vcxproj.filters.i new file mode 100644 index 0000000..a47ee38 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsem/testsem.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsem/testsem.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsem/testsem.vcxproj.i new file mode 100644 index 0000000..3b45fb0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsem/testsem.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshader/testshader.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshader/testshader.vcxproj.filters.i new file mode 100644 index 0000000..7be4eae Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshader/testshader.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshader/testshader.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshader/testshader.vcxproj.i new file mode 100644 index 0000000..d297bc0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshader/testshader.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshape/testshape.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshape/testshape.vcxproj.filters.i new file mode 100644 index 0000000..5a55831 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshape/testshape.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshape/testshape.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshape/testshape.vcxproj.i new file mode 100644 index 0000000..bb695b0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testshape/testshape.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsprite2/testsprite2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsprite2/testsprite2.vcxproj.filters.i new file mode 100644 index 0000000..5adffb1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsprite2/testsprite2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsprite2/testsprite2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsprite2/testsprite2.vcxproj.i new file mode 100644 index 0000000..977705c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testsprite2/testsprite2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i new file mode 100644 index 0000000..558bb6a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testspriteminimal/testspriteminimal.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testspriteminimal/testspriteminimal.vcxproj.i new file mode 100644 index 0000000..f6aaa8e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testspriteminimal/testspriteminimal.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/teststreaming/teststreaming.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/teststreaming/teststreaming.vcxproj.filters.i new file mode 100644 index 0000000..c304716 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/teststreaming/teststreaming.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/teststreaming/teststreaming.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/teststreaming/teststreaming.vcxproj.i new file mode 100644 index 0000000..e84ed94 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/teststreaming/teststreaming.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testthread/testthread.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testthread/testthread.vcxproj.filters.i new file mode 100644 index 0000000..5cbcafe Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testthread/testthread.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testthread/testthread.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testthread/testthread.vcxproj.i new file mode 100644 index 0000000..6cfbfcf Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testthread/testthread.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testtimer/testtimer.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testtimer/testtimer.vcxproj.filters.i new file mode 100644 index 0000000..b0f51f0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testtimer/testtimer.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testtimer/testtimer.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testtimer/testtimer.vcxproj.i new file mode 100644 index 0000000..93e2c83 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testtimer/testtimer.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testver/testver.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testver/testver.vcxproj.filters.i new file mode 100644 index 0000000..5665e39 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testver/testver.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testver/testver.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testver/testver.vcxproj.i new file mode 100644 index 0000000..47b5d0c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testver/testver.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testwm2/testwm2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testwm2/testwm2.vcxproj.filters.i new file mode 100644 index 0000000..e94b8f1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testwm2/testwm2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testwm2/testwm2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testwm2/testwm2.vcxproj.i new file mode 100644 index 0000000..98990e9 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/testwm2/testwm2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/torturethread/torturethread.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/torturethread/torturethread.vcxproj.filters.i new file mode 100644 index 0000000..b2b0d86 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/torturethread/torturethread.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/torturethread/torturethread.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/torturethread/torturethread.vcxproj.i new file mode 100644 index 0000000..c54fef5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2010/tests/torturethread/torturethread.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l.sln.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l.sln.i new file mode 100644 index 0000000..3485443 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l.sln.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2/_s_d_l2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2/_s_d_l2.vcxproj.filters.i new file mode 100644 index 0000000..172340c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2/_s_d_l2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2/_s_d_l2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2/_s_d_l2.vcxproj.i new file mode 100644 index 0000000..9e4abbd Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2/_s_d_l2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2main/_s_d_l2main.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2main/_s_d_l2main.vcxproj.filters.i new file mode 100644 index 0000000..b3e078e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2main/_s_d_l2main.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2main/_s_d_l2main.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2main/_s_d_l2main.vcxproj.i new file mode 100644 index 0000000..c0f1e70 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2main/_s_d_l2main.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2test/_s_d_l2test.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2test/_s_d_l2test.vcxproj.filters.i new file mode 100644 index 0000000..43d670b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2test/_s_d_l2test.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2test/_s_d_l2test.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2test/_s_d_l2test.vcxproj.i new file mode 100644 index 0000000..cf96633 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l2test/_s_d_l2test.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..9325283 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/checkkeys/checkkeys.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/checkkeys/checkkeys.vcxproj.filters.i new file mode 100644 index 0000000..41d88b3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/checkkeys/checkkeys.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/checkkeys/checkkeys.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/checkkeys/checkkeys.vcxproj.i new file mode 100644 index 0000000..72eb605 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/checkkeys/checkkeys.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/loopwave/loopwave.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/loopwave/loopwave.vcxproj.filters.i new file mode 100644 index 0000000..ffb3e84 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/loopwave/loopwave.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/loopwave/loopwave.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/loopwave/loopwave.vcxproj.i new file mode 100644 index 0000000..c2fac0b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/loopwave/loopwave.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testatomic/testatomic.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testatomic/testatomic.vcxproj.filters.i new file mode 100644 index 0000000..37c8c9e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testatomic/testatomic.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testatomic/testatomic.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testatomic/testatomic.vcxproj.i new file mode 100644 index 0000000..aeb0a2f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testatomic/testatomic.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i new file mode 100644 index 0000000..4c43855 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testaudioinfo/testaudioinfo.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testaudioinfo/testaudioinfo.vcxproj.i new file mode 100644 index 0000000..3251571 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testaudioinfo/testaudioinfo.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testautomation/testautomation.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testautomation/testautomation.vcxproj.filters.i new file mode 100644 index 0000000..02c23ae Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testautomation/testautomation.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testautomation/testautomation.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testautomation/testautomation.vcxproj.i new file mode 100644 index 0000000..537d2e0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testautomation/testautomation.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testchessboard/testchessboard.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testchessboard/testchessboard.vcxproj.filters.i new file mode 100644 index 0000000..ca0f02a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testchessboard/testchessboard.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testchessboard/testchessboard.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testchessboard/testchessboard.vcxproj.i new file mode 100644 index 0000000..d8c75cb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testchessboard/testchessboard.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testdraw2/testdraw2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testdraw2/testdraw2.vcxproj.filters.i new file mode 100644 index 0000000..12e3f94 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testdraw2/testdraw2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testdraw2/testdraw2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testdraw2/testdraw2.vcxproj.i new file mode 100644 index 0000000..72b3a8f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testdraw2/testdraw2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testerror/testerror.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testerror/testerror.vcxproj.filters.i new file mode 100644 index 0000000..496f369 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testerror/testerror.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testerror/testerror.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testerror/testerror.vcxproj.i new file mode 100644 index 0000000..0836ca2 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testerror/testerror.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfile/testfile.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfile/testfile.vcxproj.filters.i new file mode 100644 index 0000000..86cd5de Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfile/testfile.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfile/testfile.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfile/testfile.vcxproj.i new file mode 100644 index 0000000..e222608 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfile/testfile.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfilesystem/testfilesystem.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfilesystem/testfilesystem.vcxproj.filters.i new file mode 100644 index 0000000..214a01f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfilesystem/testfilesystem.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfilesystem/testfilesystem.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfilesystem/testfilesystem.vcxproj.i new file mode 100644 index 0000000..751dc05 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testfilesystem/testfilesystem.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i new file mode 100644 index 0000000..781a463 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgamecontroller/testgamecontroller.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgamecontroller/testgamecontroller.vcxproj.i new file mode 100644 index 0000000..50a9f19 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgamecontroller/testgamecontroller.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgesture/testgesture.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgesture/testgesture.vcxproj.filters.i new file mode 100644 index 0000000..2a5ff86 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgesture/testgesture.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgesture/testgesture.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgesture/testgesture.vcxproj.i new file mode 100644 index 0000000..cac1196 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgesture/testgesture.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgl2/testgl2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgl2/testgl2.vcxproj.filters.i new file mode 100644 index 0000000..30588d8 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgl2/testgl2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgl2/testgl2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgl2/testgl2.vcxproj.i new file mode 100644 index 0000000..da3d994 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgl2/testgl2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgles/testgles.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgles/testgles.vcxproj.filters.i new file mode 100644 index 0000000..49e1c7d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgles/testgles.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgles/testgles.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgles/testgles.vcxproj.i new file mode 100644 index 0000000..7aec94f Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testgles/testgles.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testhaptic/testhaptic.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testhaptic/testhaptic.vcxproj.filters.i new file mode 100644 index 0000000..556743d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testhaptic/testhaptic.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testhaptic/testhaptic.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testhaptic/testhaptic.vcxproj.i new file mode 100644 index 0000000..cfb0140 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testhaptic/testhaptic.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testiconv/testiconv.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testiconv/testiconv.vcxproj.filters.i new file mode 100644 index 0000000..4b0e41c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testiconv/testiconv.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testiconv/testiconv.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testiconv/testiconv.vcxproj.i new file mode 100644 index 0000000..e2b6d44 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testiconv/testiconv.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testime/testime.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testime/testime.vcxproj.filters.i new file mode 100644 index 0000000..df74fa0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testime/testime.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testime/testime.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testime/testime.vcxproj.i new file mode 100644 index 0000000..d16a3b8 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testime/testime.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testjoystick/testjoystick.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testjoystick/testjoystick.vcxproj.filters.i new file mode 100644 index 0000000..6fea3bd Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testjoystick/testjoystick.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testjoystick/testjoystick.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testjoystick/testjoystick.vcxproj.i new file mode 100644 index 0000000..202f7ca Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testjoystick/testjoystick.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testkeys/testkeys.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testkeys/testkeys.vcxproj.filters.i new file mode 100644 index 0000000..bcd7617 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testkeys/testkeys.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testkeys/testkeys.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testkeys/testkeys.vcxproj.i new file mode 100644 index 0000000..a812607 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testkeys/testkeys.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testloadso/testloadso.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testloadso/testloadso.vcxproj.filters.i new file mode 100644 index 0000000..4235060 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testloadso/testloadso.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testloadso/testloadso.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testloadso/testloadso.vcxproj.i new file mode 100644 index 0000000..3fdf5ec Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testloadso/testloadso.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testlock/testlock.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testlock/testlock.vcxproj.filters.i new file mode 100644 index 0000000..81c0b11 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testlock/testlock.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testlock/testlock.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testlock/testlock.vcxproj.i new file mode 100644 index 0000000..92088b6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testlock/testlock.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmessage/testmessage.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmessage/testmessage.vcxproj.filters.i new file mode 100644 index 0000000..0d2a5a8 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmessage/testmessage.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmessage/testmessage.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmessage/testmessage.vcxproj.i new file mode 100644 index 0000000..484ac67 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmessage/testmessage.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i new file mode 100644 index 0000000..21a83f1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmultiaudio/testmultiaudio.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmultiaudio/testmultiaudio.vcxproj.i new file mode 100644 index 0000000..e515b59 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testmultiaudio/testmultiaudio.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testnative/testnative.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testnative/testnative.vcxproj.filters.i new file mode 100644 index 0000000..fa364bb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testnative/testnative.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testnative/testnative.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testnative/testnative.vcxproj.i new file mode 100644 index 0000000..66b03fb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testnative/testnative.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testoverlay2/testoverlay2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testoverlay2/testoverlay2.vcxproj.filters.i new file mode 100644 index 0000000..7df652e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testoverlay2/testoverlay2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testoverlay2/testoverlay2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testoverlay2/testoverlay2.vcxproj.i new file mode 100644 index 0000000..33fc2e4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testoverlay2/testoverlay2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testplatform/testplatform.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testplatform/testplatform.vcxproj.filters.i new file mode 100644 index 0000000..1ddbdc5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testplatform/testplatform.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testplatform/testplatform.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testplatform/testplatform.vcxproj.i new file mode 100644 index 0000000..b28e453 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testplatform/testplatform.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testpower/testpower.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testpower/testpower.vcxproj.filters.i new file mode 100644 index 0000000..1ea9564 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testpower/testpower.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testpower/testpower.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testpower/testpower.vcxproj.i new file mode 100644 index 0000000..4bbdc26 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testpower/testpower.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrelative/testrelative.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrelative/testrelative.vcxproj.filters.i new file mode 100644 index 0000000..776625e Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrelative/testrelative.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrelative/testrelative.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrelative/testrelative.vcxproj.i new file mode 100644 index 0000000..ea0a9dc Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrelative/testrelative.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i new file mode 100644 index 0000000..e4bab65 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendercopyex/testrendercopyex.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendercopyex/testrendercopyex.vcxproj.i new file mode 100644 index 0000000..9ea3354 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendercopyex/testrendercopyex.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendertarget/testrendertarget.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendertarget/testrendertarget.vcxproj.filters.i new file mode 100644 index 0000000..16b2e05 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendertarget/testrendertarget.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendertarget/testrendertarget.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendertarget/testrendertarget.vcxproj.i new file mode 100644 index 0000000..7608800 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrendertarget/testrendertarget.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testresample/testresample.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testresample/testresample.vcxproj.filters.i new file mode 100644 index 0000000..72b34f3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testresample/testresample.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testresample/testresample.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testresample/testresample.vcxproj.i new file mode 100644 index 0000000..18f0a1d Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testresample/testresample.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrumble/testrumble.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrumble/testrumble.vcxproj.filters.i new file mode 100644 index 0000000..f7d7216 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrumble/testrumble.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrumble/testrumble.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrumble/testrumble.vcxproj.i new file mode 100644 index 0000000..7a4a6b4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testrumble/testrumble.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testscale/testscale.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testscale/testscale.vcxproj.filters.i new file mode 100644 index 0000000..aca46ab Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testscale/testscale.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testscale/testscale.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testscale/testscale.vcxproj.i new file mode 100644 index 0000000..cd1ea9b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testscale/testscale.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsem/testsem.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsem/testsem.vcxproj.filters.i new file mode 100644 index 0000000..22e5e32 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsem/testsem.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsem/testsem.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsem/testsem.vcxproj.i new file mode 100644 index 0000000..0d03a91 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsem/testsem.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshader/testshader.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshader/testshader.vcxproj.filters.i new file mode 100644 index 0000000..b8cb25b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshader/testshader.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshader/testshader.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshader/testshader.vcxproj.i new file mode 100644 index 0000000..b5a28b4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshader/testshader.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshape/testshape.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshape/testshape.vcxproj.filters.i new file mode 100644 index 0000000..87451bb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshape/testshape.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshape/testshape.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshape/testshape.vcxproj.i new file mode 100644 index 0000000..7c505b1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testshape/testshape.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsprite2/testsprite2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsprite2/testsprite2.vcxproj.filters.i new file mode 100644 index 0000000..3d68177 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsprite2/testsprite2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsprite2/testsprite2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsprite2/testsprite2.vcxproj.i new file mode 100644 index 0000000..cb31681 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testsprite2/testsprite2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i new file mode 100644 index 0000000..6b0106b Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testspriteminimal/testspriteminimal.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testspriteminimal/testspriteminimal.vcxproj.i new file mode 100644 index 0000000..e3da69a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testspriteminimal/testspriteminimal.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/teststreaming/teststreaming.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/teststreaming/teststreaming.vcxproj.filters.i new file mode 100644 index 0000000..394c878 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/teststreaming/teststreaming.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/teststreaming/teststreaming.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/teststreaming/teststreaming.vcxproj.i new file mode 100644 index 0000000..531ab60 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/teststreaming/teststreaming.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testthread/testthread.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testthread/testthread.vcxproj.filters.i new file mode 100644 index 0000000..77a09eb Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testthread/testthread.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testthread/testthread.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testthread/testthread.vcxproj.i new file mode 100644 index 0000000..64fb01a Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testthread/testthread.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testtimer/testtimer.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testtimer/testtimer.vcxproj.filters.i new file mode 100644 index 0000000..2f04228 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testtimer/testtimer.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testtimer/testtimer.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testtimer/testtimer.vcxproj.i new file mode 100644 index 0000000..8f383a8 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testtimer/testtimer.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testver/testver.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testver/testver.vcxproj.filters.i new file mode 100644 index 0000000..7a259e8 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testver/testver.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testver/testver.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testver/testver.vcxproj.i new file mode 100644 index 0000000..8b7ee00 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testver/testver.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testwm2/testwm2.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testwm2/testwm2.vcxproj.filters.i new file mode 100644 index 0000000..b808612 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testwm2/testwm2.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testwm2/testwm2.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testwm2/testwm2.vcxproj.i new file mode 100644 index 0000000..f2a0f93 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/testwm2/testwm2.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/torturethread/torturethread.vcxproj.filters.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/torturethread/torturethread.vcxproj.filters.i new file mode 100644 index 0000000..79eaac4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/torturethread/torturethread.vcxproj.filters.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/torturethread/torturethread.vcxproj.i b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/torturethread/torturethread.vcxproj.i new file mode 100644 index 0000000..c08cfb3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/_v_s2012/tests/torturethread/torturethread.vcxproj.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/build.all.vs2010.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/build.all.vs2010.bat.i new file mode 100644 index 0000000..c3c0942 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/build.all.vs2010.bat.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/check.bin.compatibility.vs2010.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/check.bin.compatibility.vs2010.bat.i new file mode 100644 index 0000000..c4a72df Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/check.bin.compatibility.vs2010.bat.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/clean__premake.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/clean__premake.bat.i new file mode 100644 index 0000000..4f181d6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/clean__premake.bat.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/generate.all.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/generate.all.bat.i new file mode 100644 index 0000000..0931813 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/generate.all.bat.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/premake4.exe.d b/SDL/.hg/store/data/premake/_visual_c/build-scripts/premake4.exe.d new file mode 100644 index 0000000..77e3a15 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/premake4.exe.d differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/premake4.exe.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/premake4.exe.i new file mode 100644 index 0000000..cd8b5d5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/premake4.exe.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/run.tests.vs2010.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/run.tests.vs2010.bat.i new file mode 100644 index 0000000..e7f69bc Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/run.tests.vs2010.bat.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2008.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2008.bat.i new file mode 100644 index 0000000..7e36576 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2008.bat.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2010.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2010.bat.i new file mode 100644 index 0000000..7561c5c Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2010.bat.i differ diff --git a/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2012.bat.i b/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2012.bat.i new file mode 100644 index 0000000..029e9c3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_visual_c/build-scripts/vs2012.bat.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/accelerometer/accelerometer.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/accelerometer/accelerometer.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6781f94 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/accelerometer/accelerometer.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/fireworks/fireworks.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/fireworks/fireworks.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e5c3890 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/fireworks/fireworks.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/happy/happy.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/happy/happy.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..98d5cdc Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/happy/happy.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/keyboard/keyboard.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/keyboard/keyboard.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..9ba0085 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/keyboard/keyboard.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/mixer/mixer.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/mixer/mixer.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..3f6bcb3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/mixer/mixer.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/rectangles/rectangles.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/rectangles/rectangles.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..cbcfae7 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/rectangles/rectangles.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/touch/touch.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/touch/touch.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6965f21 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_demos/touch/touch.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l.xcworkspace/contents.xcworkspacedata.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l.xcworkspace/contents.xcworkspacedata.i new file mode 100644 index 0000000..159c7e6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l.xcworkspace/contents.xcworkspacedata.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..7ec48c2 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..f5023ff Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..c28ac31 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..932eb81 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/clean__premake.command.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/clean__premake.command.i new file mode 100644 index 0000000..129aed5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/clean__premake.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/premake4.d b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/premake4.d new file mode 100644 index 0000000..7618c09 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/premake4.d differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/premake4.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/premake4.i new file mode 100644 index 0000000..aff9710 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/premake4.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/xcode3.command.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/xcode3.command.i new file mode 100644 index 0000000..ab7a46a Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/xcode3.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/xcode4.command.i b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/xcode4.command.i new file mode 100644 index 0000000..ca440a7 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode-i_o_s/build-scripts/xcode4.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..b1c4e1e Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..8d6df33 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..7162735 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..7928015 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..ef2a45c Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..82ad249 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..39e3a3f Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..d294778 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..1b63467 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..25f055e Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..ea1e829 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..fa562a4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6e7226a Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..f4eb2ad Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..481e806 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..23a4458 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..b53c623 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..231071e Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..53be20f Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..60666cb Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testime/testime.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testime/testime.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..546b21c Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testime/testime.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..63b53a3 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..ae91c1b Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..7a810db Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..7800409 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..464e473 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..8722245 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..098c450 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..319fe1c Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..b21d6aa Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..c1f53bf Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e8d2549 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..2774008 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..ded4bbc Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..a5cfbd7 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..008730f Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..9a4e59a Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e55edc1 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e308222 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..55be43a Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..8893776 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e3676ce Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..7f18dd9 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..30eaf7b Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..9199ce9 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testver/testver.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testver/testver.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..484902c Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testver/testver.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..5fc5a91 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..0e7c410 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l.xcworkspace/contents.xcworkspacedata.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l.xcworkspace/contents.xcworkspacedata.i new file mode 100644 index 0000000..bfd8803 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l.xcworkspace/contents.xcworkspacedata.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..ddf5c3a Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2/_s_d_l2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..9ed82b0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2main/_s_d_l2main.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..bb1217a Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l2test/_s_d_l2test.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l__config__premake.h.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l__config__premake.h.i new file mode 100644 index 0000000..7928015 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/_s_d_l__config__premake.h.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..0535363 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..5900480 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..064962a Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6cbb194 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e879ecb Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e0a28c4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..b10a778 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..d061bce Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..bb765f6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..97a97e6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..ecd0e2f Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..7c5909f Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..07693e8 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..f5b2419 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..78cc87b Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..5dd0914 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testime/testime.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testime/testime.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..1268fc6 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testime/testime.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..8e08308 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..0d94ddc Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..58483ca Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..4fe04f4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..a6069e5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..c293cac Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..988b8d5 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..71a61ef Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..646c082 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6d44389 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..1ed6f3b Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..70827ce Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..0800193 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..9b5461d Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..05f799b Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..a3de100 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..a9c18ec Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..bd1e65f Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..824dd23 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..5753f22 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..cba3032 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..e7a0b57 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..615ae2e Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..47395a9 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testver/testver.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testver/testver.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..17251bb Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testver/testver.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..9b8a57d Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..bd1ccc0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/_xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode3.i386.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode3.i386.command.i new file mode 100644 index 0000000..390696c Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode3.i386.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode3.x86__64.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode3.x86__64.command.i new file mode 100644 index 0000000..ca39807 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode3.x86__64.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode4.i386.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode4.i386.command.i new file mode 100644 index 0000000..69c40a4 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode4.i386.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode4.x86__64.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode4.x86__64.command.i new file mode 100644 index 0000000..7d62509 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/build.all.xcode4.x86__64.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/clean__premake.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/clean__premake.command.i new file mode 100644 index 0000000..c92f1c0 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/clean__premake.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/premake4.d b/SDL/.hg/store/data/premake/_xcode/build-scripts/premake4.d new file mode 100644 index 0000000..7618c09 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/premake4.d differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/premake4.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/premake4.i new file mode 100644 index 0000000..aff9710 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/premake4.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/run.tests.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/run.tests.command.i new file mode 100644 index 0000000..b79bd20 Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/run.tests.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/xcode3.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/xcode3.command.i new file mode 100644 index 0000000..c1d221d Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/xcode3.command.i differ diff --git a/SDL/.hg/store/data/premake/_xcode/build-scripts/xcode4.command.i b/SDL/.hg/store/data/premake/_xcode/build-scripts/xcode4.command.i new file mode 100644 index 0000000..9a618fb Binary files /dev/null and b/SDL/.hg/store/data/premake/_xcode/build-scripts/xcode4.command.i differ diff --git a/SDL/.hg/store/data/premake/changelog.i b/SDL/.hg/store/data/premake/changelog.i new file mode 100644 index 0000000..683a55a Binary files /dev/null and b/SDL/.hg/store/data/premake/changelog.i differ diff --git a/SDL/.hg/store/data/premake/config/_s_d_l__config__cygwin.template.h.i b/SDL/.hg/store/data/premake/config/_s_d_l__config__cygwin.template.h.i new file mode 100644 index 0000000..05c1525 Binary files /dev/null and b/SDL/.hg/store/data/premake/config/_s_d_l__config__cygwin.template.h.i differ diff --git a/SDL/.hg/store/data/premake/config/_s_d_l__config__iphoneos.template.h.i b/SDL/.hg/store/data/premake/config/_s_d_l__config__iphoneos.template.h.i new file mode 100644 index 0000000..ce3072d Binary files /dev/null and b/SDL/.hg/store/data/premake/config/_s_d_l__config__iphoneos.template.h.i differ diff --git a/SDL/.hg/store/data/premake/config/_s_d_l__config__linux.template.h.i b/SDL/.hg/store/data/premake/config/_s_d_l__config__linux.template.h.i new file mode 100644 index 0000000..2d13603 Binary files /dev/null and b/SDL/.hg/store/data/premake/config/_s_d_l__config__linux.template.h.i differ diff --git a/SDL/.hg/store/data/premake/config/_s_d_l__config__macosx.template.h.i b/SDL/.hg/store/data/premake/config/_s_d_l__config__macosx.template.h.i new file mode 100644 index 0000000..cd6c997 Binary files /dev/null and b/SDL/.hg/store/data/premake/config/_s_d_l__config__macosx.template.h.i differ diff --git a/SDL/.hg/store/data/premake/config/_s_d_l__config__minimal.template.h.i b/SDL/.hg/store/data/premake/config/_s_d_l__config__minimal.template.h.i new file mode 100644 index 0000000..50e9d72 Binary files /dev/null and b/SDL/.hg/store/data/premake/config/_s_d_l__config__minimal.template.h.i differ diff --git a/SDL/.hg/store/data/premake/config/_s_d_l__config__windows.template.h.i b/SDL/.hg/store/data/premake/config/_s_d_l__config__windows.template.h.i new file mode 100644 index 0000000..dd903e4 Binary files /dev/null and b/SDL/.hg/store/data/premake/config/_s_d_l__config__windows.template.h.i differ diff --git a/SDL/.hg/store/data/premake/patches/709.patch.i b/SDL/.hg/store/data/premake/patches/709.patch.i new file mode 100644 index 0000000..88abce9 Binary files /dev/null and b/SDL/.hg/store/data/premake/patches/709.patch.i differ diff --git a/SDL/.hg/store/data/premake/patches/711.patch.i b/SDL/.hg/store/data/premake/patches/711.patch.i new file mode 100644 index 0000000..ab12c8a Binary files /dev/null and b/SDL/.hg/store/data/premake/patches/711.patch.i differ diff --git a/SDL/.hg/store/data/premake/patches/712.patch.i b/SDL/.hg/store/data/premake/patches/712.patch.i new file mode 100644 index 0000000..8b00b1b Binary files /dev/null and b/SDL/.hg/store/data/premake/patches/712.patch.i differ diff --git a/SDL/.hg/store/data/premake/patches/713.patch.i b/SDL/.hg/store/data/premake/patches/713.patch.i new file mode 100644 index 0000000..5bccc4c Binary files /dev/null and b/SDL/.hg/store/data/premake/patches/713.patch.i differ diff --git a/SDL/.hg/store/data/premake/patches/i_o_s.patch.i b/SDL/.hg/store/data/premake/patches/i_o_s.patch.i new file mode 100644 index 0000000..a2611e9 Binary files /dev/null and b/SDL/.hg/store/data/premake/patches/i_o_s.patch.i differ diff --git a/SDL/.hg/store/data/premake/patches/premake.patches.txt.i b/SDL/.hg/store/data/premake/patches/premake.patches.txt.i new file mode 100644 index 0000000..6799c88 Binary files /dev/null and b/SDL/.hg/store/data/premake/patches/premake.patches.txt.i differ diff --git a/SDL/.hg/store/data/premake/premake4.lua.i b/SDL/.hg/store/data/premake/premake4.lua.i new file mode 100644 index 0000000..e1e2a3e Binary files /dev/null and b/SDL/.hg/store/data/premake/premake4.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/_s_d_l2.lua.i b/SDL/.hg/store/data/premake/projects/_s_d_l2.lua.i new file mode 100644 index 0000000..8e69816 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/_s_d_l2.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/_s_d_l2main.lua.i b/SDL/.hg/store/data/premake/projects/_s_d_l2main.lua.i new file mode 100644 index 0000000..39cdcef Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/_s_d_l2main.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/_s_d_l2test.lua.i b/SDL/.hg/store/data/premake/projects/_s_d_l2test.lua.i new file mode 100644 index 0000000..9ea3386 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/_s_d_l2test.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/accelerometer.lua.i b/SDL/.hg/store/data/premake/projects/accelerometer.lua.i new file mode 100644 index 0000000..70690e9 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/accelerometer.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/checkkeys.lua.i b/SDL/.hg/store/data/premake/projects/checkkeys.lua.i new file mode 100644 index 0000000..11b4623 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/checkkeys.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/fireworks.lua.i b/SDL/.hg/store/data/premake/projects/fireworks.lua.i new file mode 100644 index 0000000..44dcc5b Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/fireworks.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/happy.lua.i b/SDL/.hg/store/data/premake/projects/happy.lua.i new file mode 100644 index 0000000..60a993a Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/happy.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/keyboard.lua.i b/SDL/.hg/store/data/premake/projects/keyboard.lua.i new file mode 100644 index 0000000..84ca904 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/keyboard.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/loopwave.lua.i b/SDL/.hg/store/data/premake/projects/loopwave.lua.i new file mode 100644 index 0000000..5379e49 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/loopwave.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/mixer.lua.i b/SDL/.hg/store/data/premake/projects/mixer.lua.i new file mode 100644 index 0000000..50d2a9e Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/mixer.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/rectangles.lua.i b/SDL/.hg/store/data/premake/projects/rectangles.lua.i new file mode 100644 index 0000000..3a71220 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/rectangles.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testatomic.lua.i b/SDL/.hg/store/data/premake/projects/testatomic.lua.i new file mode 100644 index 0000000..13b903b Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testatomic.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testaudioinfo.lua.i b/SDL/.hg/store/data/premake/projects/testaudioinfo.lua.i new file mode 100644 index 0000000..0f6fd5d Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testaudioinfo.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testautomation.lua.i b/SDL/.hg/store/data/premake/projects/testautomation.lua.i new file mode 100644 index 0000000..865859f Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testautomation.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testdraw2.lua.i b/SDL/.hg/store/data/premake/projects/testdraw2.lua.i new file mode 100644 index 0000000..e4c4dd6 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testdraw2.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testdrawchessboard.lua.i b/SDL/.hg/store/data/premake/projects/testdrawchessboard.lua.i new file mode 100644 index 0000000..64f96ec Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testdrawchessboard.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testerror.lua.i b/SDL/.hg/store/data/premake/projects/testerror.lua.i new file mode 100644 index 0000000..e7b22fe Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testerror.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testfile.lua.i b/SDL/.hg/store/data/premake/projects/testfile.lua.i new file mode 100644 index 0000000..8484e25 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testfile.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testfilesystem.lua.i b/SDL/.hg/store/data/premake/projects/testfilesystem.lua.i new file mode 100644 index 0000000..5edcbd0 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testfilesystem.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testgamecontroller.lua.i b/SDL/.hg/store/data/premake/projects/testgamecontroller.lua.i new file mode 100644 index 0000000..04e3375 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testgamecontroller.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testgesture.lua.i b/SDL/.hg/store/data/premake/projects/testgesture.lua.i new file mode 100644 index 0000000..d1fad3b Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testgesture.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testgl2.lua.i b/SDL/.hg/store/data/premake/projects/testgl2.lua.i new file mode 100644 index 0000000..c47b255 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testgl2.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testgles.lua.i b/SDL/.hg/store/data/premake/projects/testgles.lua.i new file mode 100644 index 0000000..b8cc5d6 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testgles.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testhaptic.lua.i b/SDL/.hg/store/data/premake/projects/testhaptic.lua.i new file mode 100644 index 0000000..bdaf6e0 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testhaptic.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testiconv.lua.i b/SDL/.hg/store/data/premake/projects/testiconv.lua.i new file mode 100644 index 0000000..d27d386 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testiconv.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testime.lua.i b/SDL/.hg/store/data/premake/projects/testime.lua.i new file mode 100644 index 0000000..76944f1 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testime.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testintersection.lua.i b/SDL/.hg/store/data/premake/projects/testintersection.lua.i new file mode 100644 index 0000000..0451ed0 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testintersection.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testjoystick.lua.i b/SDL/.hg/store/data/premake/projects/testjoystick.lua.i new file mode 100644 index 0000000..9202486 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testjoystick.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testkeys.lua.i b/SDL/.hg/store/data/premake/projects/testkeys.lua.i new file mode 100644 index 0000000..9bed888 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testkeys.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testloadso.lua.i b/SDL/.hg/store/data/premake/projects/testloadso.lua.i new file mode 100644 index 0000000..eed2d8e Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testloadso.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testlock.lua.i b/SDL/.hg/store/data/premake/projects/testlock.lua.i new file mode 100644 index 0000000..6360862 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testlock.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testmessage.lua.i b/SDL/.hg/store/data/premake/projects/testmessage.lua.i new file mode 100644 index 0000000..9cb3224 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testmessage.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testmultiaudio.lua.i b/SDL/.hg/store/data/premake/projects/testmultiaudio.lua.i new file mode 100644 index 0000000..3c4b76b Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testmultiaudio.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testnative.lua.i b/SDL/.hg/store/data/premake/projects/testnative.lua.i new file mode 100644 index 0000000..f1282aa Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testnative.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testoverlay2.lua.i b/SDL/.hg/store/data/premake/projects/testoverlay2.lua.i new file mode 100644 index 0000000..331bdaa Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testoverlay2.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testplatform.lua.i b/SDL/.hg/store/data/premake/projects/testplatform.lua.i new file mode 100644 index 0000000..6c4fad1 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testplatform.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testpower.lua.i b/SDL/.hg/store/data/premake/projects/testpower.lua.i new file mode 100644 index 0000000..4303e21 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testpower.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testrelative.lua.i b/SDL/.hg/store/data/premake/projects/testrelative.lua.i new file mode 100644 index 0000000..79848f6 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testrelative.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testrendercopyex.lua.i b/SDL/.hg/store/data/premake/projects/testrendercopyex.lua.i new file mode 100644 index 0000000..277b503 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testrendercopyex.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testrendertarget.lua.i b/SDL/.hg/store/data/premake/projects/testrendertarget.lua.i new file mode 100644 index 0000000..4653259 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testrendertarget.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testresample.lua.i b/SDL/.hg/store/data/premake/projects/testresample.lua.i new file mode 100644 index 0000000..93e448a Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testresample.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testrumble.lua.i b/SDL/.hg/store/data/premake/projects/testrumble.lua.i new file mode 100644 index 0000000..f2af2e6 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testrumble.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testscale.lua.i b/SDL/.hg/store/data/premake/projects/testscale.lua.i new file mode 100644 index 0000000..2d57f75 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testscale.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testsem.lua.i b/SDL/.hg/store/data/premake/projects/testsem.lua.i new file mode 100644 index 0000000..033a022 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testsem.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testshader.lua.i b/SDL/.hg/store/data/premake/projects/testshader.lua.i new file mode 100644 index 0000000..0c8a89d Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testshader.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testshape.lua.i b/SDL/.hg/store/data/premake/projects/testshape.lua.i new file mode 100644 index 0000000..bd6d8f9 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testshape.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testsprite2.lua.i b/SDL/.hg/store/data/premake/projects/testsprite2.lua.i new file mode 100644 index 0000000..1ae8e7a Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testsprite2.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testspriteminimal.lua.i b/SDL/.hg/store/data/premake/projects/testspriteminimal.lua.i new file mode 100644 index 0000000..98791a3 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testspriteminimal.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/teststreaming.lua.i b/SDL/.hg/store/data/premake/projects/teststreaming.lua.i new file mode 100644 index 0000000..b9f818c Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/teststreaming.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testthread.lua.i b/SDL/.hg/store/data/premake/projects/testthread.lua.i new file mode 100644 index 0000000..f7338a9 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testthread.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testtimer.lua.i b/SDL/.hg/store/data/premake/projects/testtimer.lua.i new file mode 100644 index 0000000..2c9f736 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testtimer.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testver.lua.i b/SDL/.hg/store/data/premake/projects/testver.lua.i new file mode 100644 index 0000000..db0bad5 Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testver.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/testwm2.lua.i b/SDL/.hg/store/data/premake/projects/testwm2.lua.i new file mode 100644 index 0000000..319fd7d Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/testwm2.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/torturethread.lua.i b/SDL/.hg/store/data/premake/projects/torturethread.lua.i new file mode 100644 index 0000000..32553ff Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/torturethread.lua.i differ diff --git a/SDL/.hg/store/data/premake/projects/touch.lua.i b/SDL/.hg/store/data/premake/projects/touch.lua.i new file mode 100644 index 0000000..685638e Binary files /dev/null and b/SDL/.hg/store/data/premake/projects/touch.lua.i differ diff --git a/SDL/.hg/store/data/premake/util/sdl__check__compile.lua.i b/SDL/.hg/store/data/premake/util/sdl__check__compile.lua.i new file mode 100644 index 0000000..4d1a01c Binary files /dev/null and b/SDL/.hg/store/data/premake/util/sdl__check__compile.lua.i differ diff --git a/SDL/.hg/store/data/premake/util/sdl__dependency__checkers.lua.i b/SDL/.hg/store/data/premake/util/sdl__dependency__checkers.lua.i new file mode 100644 index 0000000..b1c87e0 Binary files /dev/null and b/SDL/.hg/store/data/premake/util/sdl__dependency__checkers.lua.i differ diff --git a/SDL/.hg/store/data/premake/util/sdl__depends.lua.i b/SDL/.hg/store/data/premake/util/sdl__depends.lua.i new file mode 100644 index 0000000..b90d7e1 Binary files /dev/null and b/SDL/.hg/store/data/premake/util/sdl__depends.lua.i differ diff --git a/SDL/.hg/store/data/premake/util/sdl__file.lua.i b/SDL/.hg/store/data/premake/util/sdl__file.lua.i new file mode 100644 index 0000000..6401b53 Binary files /dev/null and b/SDL/.hg/store/data/premake/util/sdl__file.lua.i differ diff --git a/SDL/.hg/store/data/premake/util/sdl__gen__config.lua.i b/SDL/.hg/store/data/premake/util/sdl__gen__config.lua.i new file mode 100644 index 0000000..bf298fb Binary files /dev/null and b/SDL/.hg/store/data/premake/util/sdl__gen__config.lua.i differ diff --git a/SDL/.hg/store/data/premake/util/sdl__projects.lua.i b/SDL/.hg/store/data/premake/util/sdl__projects.lua.i new file mode 100644 index 0000000..bbf4b45 Binary files /dev/null and b/SDL/.hg/store/data/premake/util/sdl__projects.lua.i differ diff --git a/SDL/.hg/store/data/premake/util/sdl__string.lua.i b/SDL/.hg/store/data/premake/util/sdl__string.lua.i new file mode 100644 index 0000000..bcb9f20 Binary files /dev/null and b/SDL/.hg/store/data/premake/util/sdl__string.lua.i differ diff --git a/SDL/.hg/store/data/sdl-config.in.i b/SDL/.hg/store/data/sdl-config.in.i new file mode 100644 index 0000000..fd1df42 Binary files /dev/null and b/SDL/.hg/store/data/sdl-config.in.i differ diff --git a/SDL/.hg/store/data/sdl.m4.i b/SDL/.hg/store/data/sdl.m4.i new file mode 100644 index 0000000..2d62287 Binary files /dev/null and b/SDL/.hg/store/data/sdl.m4.i differ diff --git a/SDL/.hg/store/data/sdl.pc.in.i b/SDL/.hg/store/data/sdl.pc.in.i new file mode 100644 index 0000000..08b45d3 Binary files /dev/null and b/SDL/.hg/store/data/sdl.pc.in.i differ diff --git a/SDL/.hg/store/data/sdl2-config.cmake.in.i b/SDL/.hg/store/data/sdl2-config.cmake.in.i new file mode 100644 index 0000000..f929d37 Binary files /dev/null and b/SDL/.hg/store/data/sdl2-config.cmake.in.i differ diff --git a/SDL/.hg/store/data/sdl2-config.in.i b/SDL/.hg/store/data/sdl2-config.in.i new file mode 100644 index 0000000..7980739 Binary files /dev/null and b/SDL/.hg/store/data/sdl2-config.in.i differ diff --git a/SDL/.hg/store/data/sdl2.m4.i b/SDL/.hg/store/data/sdl2.m4.i new file mode 100644 index 0000000..3dfba4f Binary files /dev/null and b/SDL/.hg/store/data/sdl2.m4.i differ diff --git a/SDL/.hg/store/data/sdl2.pc.in.i b/SDL/.hg/store/data/sdl2.pc.in.i new file mode 100644 index 0000000..352d197 Binary files /dev/null and b/SDL/.hg/store/data/sdl2.pc.in.i differ diff --git a/SDL/.hg/store/data/setvars.cmd.i b/SDL/.hg/store/data/setvars.cmd.i new file mode 100644 index 0000000..591ff6a Binary files /dev/null and b/SDL/.hg/store/data/setvars.cmd.i differ diff --git a/SDL/.hg/store/data/src/_makefile.am.i b/SDL/.hg/store/data/src/_makefile.am.i new file mode 100644 index 0000000..3dfab88 Binary files /dev/null and b/SDL/.hg/store/data/src/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/_makefile.wat.i b/SDL/.hg/store/data/src/_makefile.wat.i new file mode 100644 index 0000000..ddc12bf Binary files /dev/null and b/SDL/.hg/store/data/src/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l.c.i b/SDL/.hg/store/data/src/_s_d_l.c.i new file mode 100644 index 0000000..5031abe Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__android.cpp.i b/SDL/.hg/store/data/src/_s_d_l__android.cpp.i new file mode 100644 index 0000000..b24118c Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__android.cpp.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__android.h.i b/SDL/.hg/store/data/src/_s_d_l__android.h.i new file mode 100644 index 0000000..ef21c57 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__android.h.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__assert.c.i b/SDL/.hg/store/data/src/_s_d_l__assert.c.i new file mode 100644 index 0000000..5484220 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__assert.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__assert__c.h.i b/SDL/.hg/store/data/src/_s_d_l__assert__c.h.i new file mode 100644 index 0000000..d9e0e7d Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__assert__c.h.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__compat.c.i b/SDL/.hg/store/data/src/_s_d_l__compat.c.i new file mode 100644 index 0000000..bcdb49b Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__compat.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__error.c.i b/SDL/.hg/store/data/src/_s_d_l__error.c.i new file mode 100644 index 0000000..6425586 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__error.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__error__c.h.i b/SDL/.hg/store/data/src/_s_d_l__error__c.h.i new file mode 100644 index 0000000..64b046f Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__error__c.h.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__fatal.c.i b/SDL/.hg/store/data/src/_s_d_l__fatal.c.i new file mode 100644 index 0000000..729f3cc Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__fatal.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__fatal.h.i b/SDL/.hg/store/data/src/_s_d_l__fatal.h.i new file mode 100644 index 0000000..ef1f69e Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__fatal.h.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__getenv.c.i b/SDL/.hg/store/data/src/_s_d_l__getenv.c.i new file mode 100644 index 0000000..eae5242 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__getenv.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__hints.c.i b/SDL/.hg/store/data/src/_s_d_l__hints.c.i new file mode 100644 index 0000000..aab7d4f Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__hints.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__hints__c.h.i b/SDL/.hg/store/data/src/_s_d_l__hints__c.h.i new file mode 100644 index 0000000..ba294b7 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__hints__c.h.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__internal.h.i b/SDL/.hg/store/data/src/_s_d_l__internal.h.i new file mode 100644 index 0000000..1bc59d9 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__internal.h.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/_s_d_l__loadso.c.i new file mode 100644 index 0000000..f83509e Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__loadso.h.i b/SDL/.hg/store/data/src/_s_d_l__loadso.h.i new file mode 100644 index 0000000..876a8b4 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__loadso.h.i differ diff --git a/SDL/.hg/store/data/src/_s_d_l__log.c.i b/SDL/.hg/store/data/src/_s_d_l__log.c.i new file mode 100644 index 0000000..5f0d764 Binary files /dev/null and b/SDL/.hg/store/data/src/_s_d_l__log.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/_s_d_l__atomic.c.i b/SDL/.hg/store/data/src/atomic/_s_d_l__atomic.c.i new file mode 100644 index 0000000..3c35102 Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/_s_d_l__atomic.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/_s_d_l__spinlock.c.i b/SDL/.hg/store/data/src/atomic/_s_d_l__spinlock.c.i new file mode 100644 index 0000000..78e3bc3 Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/_s_d_l__spinlock.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/dummy/_s_d_l__atomic.c.i b/SDL/.hg/store/data/src/atomic/dummy/_s_d_l__atomic.c.i new file mode 100644 index 0000000..729744f Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/dummy/_s_d_l__atomic.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/linux/_s_d_l__atomic.c.i b/SDL/.hg/store/data/src/atomic/linux/_s_d_l__atomic.c.i new file mode 100644 index 0000000..69bc722 Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/linux/_s_d_l__atomic.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/macosx/_s_d_l__atomic.c.i b/SDL/.hg/store/data/src/atomic/macosx/_s_d_l__atomic.c.i new file mode 100644 index 0000000..32ceac5 Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/macosx/_s_d_l__atomic.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/nds/_s_d_l__atomic.c.i b/SDL/.hg/store/data/src/atomic/nds/_s_d_l__atomic.c.i new file mode 100644 index 0000000..7a9b5fe Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/nds/_s_d_l__atomic.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/qnx/_s_d_l__atomic.c.i b/SDL/.hg/store/data/src/atomic/qnx/_s_d_l__atomic.c.i new file mode 100644 index 0000000..9b295d3 Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/qnx/_s_d_l__atomic.c.i differ diff --git a/SDL/.hg/store/data/src/atomic/win32/_s_d_l__atomic.c.i b/SDL/.hg/store/data/src/atomic/win32/_s_d_l__atomic.c.i new file mode 100644 index 0000000..e3ffb06 Binary files /dev/null and b/SDL/.hg/store/data/src/atomic/win32/_s_d_l__atomic.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_makefile.am.i b/SDL/.hg/store/data/src/audio/_makefile.am.i new file mode 100644 index 0000000..3bef63c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/_makefile.wat.i b/SDL/.hg/store/data/src/audio/_makefile.wat.i new file mode 100644 index 0000000..e14f6ec Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audio.c.d b/SDL/.hg/store/data/src/audio/_s_d_l__audio.c.d new file mode 100644 index 0000000..27b4539 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audio.c.d differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audio.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__audio.c.i new file mode 100644 index 0000000..ba419d8 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audio__c.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__audio__c.h.i new file mode 100644 index 0000000..adb9a9f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audio__c.h.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audiocvt.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__audiocvt.c.i new file mode 100644 index 0000000..d7cdb19 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audiocvt.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audiodev.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__audiodev.c.i new file mode 100644 index 0000000..87f080f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audiodev.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audiodev__c.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__audiodev__c.h.i new file mode 100644 index 0000000..bc95ce0 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audiodev__c.h.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audiomem.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__audiomem.c.i new file mode 100644 index 0000000..4c59ef9 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audiomem.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audiomem.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__audiomem.h.i new file mode 100644 index 0000000..96d79f2 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audiomem.h.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__audiotypecvt.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__audiotypecvt.c.i new file mode 100644 index 0000000..371b643 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__audiotypecvt.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__mixer.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__mixer.c.i new file mode 100644 index 0000000..77a834c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__mixer.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x.c.i new file mode 100644 index 0000000..d20522e Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x.h.i new file mode 100644 index 0000000..80ea5d6 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x.h.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x___v_c.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x___v_c.c.i new file mode 100644 index 0000000..be5a8ff Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x___v_c.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x___v_c.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x___v_c.h.i new file mode 100644 index 0000000..422b5c1 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__mixer___m_m_x___v_c.h.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__mixer__m68k.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__mixer__m68k.c.i new file mode 100644 index 0000000..01d4f0c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__mixer__m68k.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__mixer__m68k.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__mixer__m68k.h.i new file mode 100644 index 0000000..d807a8a Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__mixer__m68k.h.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__sysaudio.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__sysaudio.h.i new file mode 100644 index 0000000..00363f2 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__sysaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__wave.c.i b/SDL/.hg/store/data/src/audio/_s_d_l__wave.c.i new file mode 100644 index 0000000..4c8517d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__wave.c.i differ diff --git a/SDL/.hg/store/data/src/audio/_s_d_l__wave.h.i b/SDL/.hg/store/data/src/audio/_s_d_l__wave.h.i new file mode 100644 index 0000000..1f7ea33 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/_s_d_l__wave.h.i differ diff --git a/SDL/.hg/store/data/src/audio/alsa/_makefile.am.i b/SDL/.hg/store/data/src/audio/alsa/_makefile.am.i new file mode 100644 index 0000000..a9cc910 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/alsa/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/alsa/_s_d_l__alsa__audio.c.i b/SDL/.hg/store/data/src/audio/alsa/_s_d_l__alsa__audio.c.i new file mode 100644 index 0000000..d28e0c8 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/alsa/_s_d_l__alsa__audio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/alsa/_s_d_l__alsa__audio.h.i b/SDL/.hg/store/data/src/audio/alsa/_s_d_l__alsa__audio.h.i new file mode 100644 index 0000000..3c7f611 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/alsa/_s_d_l__alsa__audio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/alsa/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/alsa/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/alsa/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/amigaos/_makefile.am.i b/SDL/.hg/store/data/src/audio/amigaos/_makefile.am.i new file mode 100644 index 0000000..3733275 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/amigaos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__ahiaudio.c.i b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__ahiaudio.c.i new file mode 100644 index 0000000..6787578 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__ahiaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__ahiaudio.h.i b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__ahiaudio.h.i new file mode 100644 index 0000000..b5becb7 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__ahiaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__audio.c.i b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__audio.c.i new file mode 100644 index 0000000..33494d3 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__audio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__lowaudio.h.i b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__lowaudio.h.i new file mode 100644 index 0000000..7aba89f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__lowaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__sysaudio.h.i b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__sysaudio.h.i new file mode 100644 index 0000000..a9168e3 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/amigaos/_s_d_l__sysaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/amigaos/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/amigaos/~2ecvsignore.i new file mode 100644 index 0000000..f5c8ab3 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/amigaos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.c.i b/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.c.i new file mode 100644 index 0000000..a538f3f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.h.i b/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.h.i new file mode 100644 index 0000000..39ca8e0 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.o.i b/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.o.i new file mode 100644 index 0000000..28e51a4 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/android/_s_d_l__androidaudio.o.i differ diff --git a/SDL/.hg/store/data/src/audio/arts/_makefile.am.i b/SDL/.hg/store/data/src/audio/arts/_makefile.am.i new file mode 100644 index 0000000..50f8f4d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/arts/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/arts/_s_d_l__artsaudio.c.i b/SDL/.hg/store/data/src/audio/arts/_s_d_l__artsaudio.c.i new file mode 100644 index 0000000..ac5e148 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/arts/_s_d_l__artsaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/arts/_s_d_l__artsaudio.h.i b/SDL/.hg/store/data/src/audio/arts/_s_d_l__artsaudio.h.i new file mode 100644 index 0000000..99b68f5 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/arts/_s_d_l__artsaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/arts/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/arts/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/arts/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/baudio/_makefile.am.i b/SDL/.hg/store/data/src/audio/baudio/_makefile.am.i new file mode 100644 index 0000000..5c77837 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/baudio/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/baudio/_s_d_l__beaudio.cc.i b/SDL/.hg/store/data/src/audio/baudio/_s_d_l__beaudio.cc.i new file mode 100644 index 0000000..cde4821 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/baudio/_s_d_l__beaudio.cc.i differ diff --git a/SDL/.hg/store/data/src/audio/baudio/_s_d_l__beaudio.h.i b/SDL/.hg/store/data/src/audio/baudio/_s_d_l__beaudio.h.i new file mode 100644 index 0000000..254f9c7 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/baudio/_s_d_l__beaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/baudio/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/baudio/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/baudio/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/bsd/_s_d_l__bsdaudio.c.i b/SDL/.hg/store/data/src/audio/bsd/_s_d_l__bsdaudio.c.i new file mode 100644 index 0000000..5ca1961 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/bsd/_s_d_l__bsdaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/bsd/_s_d_l__bsdaudio.h.i b/SDL/.hg/store/data/src/audio/bsd/_s_d_l__bsdaudio.h.i new file mode 100644 index 0000000..9562a23 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/bsd/_s_d_l__bsdaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/bsd/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/bsd/~2ecvsignore.i new file mode 100644 index 0000000..93424d8 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/bsd/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/coreaudio/_s_d_l__coreaudio.c.i b/SDL/.hg/store/data/src/audio/coreaudio/_s_d_l__coreaudio.c.i new file mode 100644 index 0000000..69ea1ba Binary files /dev/null and b/SDL/.hg/store/data/src/audio/coreaudio/_s_d_l__coreaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/coreaudio/_s_d_l__coreaudio.h.i b/SDL/.hg/store/data/src/audio/coreaudio/_s_d_l__coreaudio.h.i new file mode 100644 index 0000000..b9d2888 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/coreaudio/_s_d_l__coreaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dart/_s_d_l__dart.c.i b/SDL/.hg/store/data/src/audio/dart/_s_d_l__dart.c.i new file mode 100644 index 0000000..b6d7e3d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dart/_s_d_l__dart.c.i differ diff --git a/SDL/.hg/store/data/src/audio/dart/_s_d_l__dart.h.i b/SDL/.hg/store/data/src/audio/dart/_s_d_l__dart.h.i new file mode 100644 index 0000000..6331eb9 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dart/_s_d_l__dart.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dc/_makefile.am.i b/SDL/.hg/store/data/src/audio/dc/_makefile.am.i new file mode 100644 index 0000000..1908a20 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dc/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/dc/_s_d_l__dcaudio.c.i b/SDL/.hg/store/data/src/audio/dc/_s_d_l__dcaudio.c.i new file mode 100644 index 0000000..58665de Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dc/_s_d_l__dcaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/dc/_s_d_l__dcaudio.h.i b/SDL/.hg/store/data/src/audio/dc/_s_d_l__dcaudio.h.i new file mode 100644 index 0000000..c74da8f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dc/_s_d_l__dcaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dc/aica.c.i b/SDL/.hg/store/data/src/audio/dc/aica.c.i new file mode 100644 index 0000000..97cb37d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dc/aica.c.i differ diff --git a/SDL/.hg/store/data/src/audio/dc/aica.h.i b/SDL/.hg/store/data/src/audio/dc/aica.h.i new file mode 100644 index 0000000..29b58f2 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dc/aica.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dc/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/dc/~2ecvsignore.i new file mode 100644 index 0000000..3f6541f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dc/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/directsound/_s_d_l__directsound.c.i b/SDL/.hg/store/data/src/audio/directsound/_s_d_l__directsound.c.i new file mode 100644 index 0000000..a3a699f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/directsound/_s_d_l__directsound.c.i differ diff --git a/SDL/.hg/store/data/src/audio/directsound/_s_d_l__directsound.h.i b/SDL/.hg/store/data/src/audio/directsound/_s_d_l__directsound.h.i new file mode 100644 index 0000000..fce782d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/directsound/_s_d_l__directsound.h.i differ diff --git a/SDL/.hg/store/data/src/audio/directsound/directx.h.i b/SDL/.hg/store/data/src/audio/directsound/directx.h.i new file mode 100644 index 0000000..405c410 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/directsound/directx.h.i differ diff --git a/SDL/.hg/store/data/src/audio/disk/_makefile.am.i b/SDL/.hg/store/data/src/audio/disk/_makefile.am.i new file mode 100644 index 0000000..2063625 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/disk/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/disk/_s_d_l__diskaudio.c.i b/SDL/.hg/store/data/src/audio/disk/_s_d_l__diskaudio.c.i new file mode 100644 index 0000000..cc9e6a4 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/disk/_s_d_l__diskaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/disk/_s_d_l__diskaudio.h.i b/SDL/.hg/store/data/src/audio/disk/_s_d_l__diskaudio.h.i new file mode 100644 index 0000000..9510238 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/disk/_s_d_l__diskaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/disk/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/disk/~2ecvsignore.i new file mode 100644 index 0000000..e2d020c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/disk/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/dma/_makefile.am.i b/SDL/.hg/store/data/src/audio/dma/_makefile.am.i new file mode 100644 index 0000000..8db1b13 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dma/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/dma/_s_d_l__dmaaudio.c.i b/SDL/.hg/store/data/src/audio/dma/_s_d_l__dmaaudio.c.i new file mode 100644 index 0000000..4b897ec Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dma/_s_d_l__dmaaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/dma/_s_d_l__dmaaudio.h.i b/SDL/.hg/store/data/src/audio/dma/_s_d_l__dmaaudio.h.i new file mode 100644 index 0000000..38607ee Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dma/_s_d_l__dmaaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dma/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/dma/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dma/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/dmedia/_makefile.am.i b/SDL/.hg/store/data/src/audio/dmedia/_makefile.am.i new file mode 100644 index 0000000..6f83833 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dmedia/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/dmedia/_s_d_l__irixaudio.c.i b/SDL/.hg/store/data/src/audio/dmedia/_s_d_l__irixaudio.c.i new file mode 100644 index 0000000..8f994b9 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dmedia/_s_d_l__irixaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/dmedia/_s_d_l__irixaudio.h.i b/SDL/.hg/store/data/src/audio/dmedia/_s_d_l__irixaudio.h.i new file mode 100644 index 0000000..7121a55 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dmedia/_s_d_l__irixaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dmedia/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/dmedia/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dmedia/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/dsp/_makefile.am.i b/SDL/.hg/store/data/src/audio/dsp/_makefile.am.i new file mode 100644 index 0000000..d68cec0 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dsp/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/dsp/_s_d_l__dspaudio.c.i b/SDL/.hg/store/data/src/audio/dsp/_s_d_l__dspaudio.c.i new file mode 100644 index 0000000..2de98b5 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dsp/_s_d_l__dspaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/dsp/_s_d_l__dspaudio.h.i b/SDL/.hg/store/data/src/audio/dsp/_s_d_l__dspaudio.h.i new file mode 100644 index 0000000..cfe224d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dsp/_s_d_l__dspaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dsp/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/dsp/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dsp/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/dummy/_s_d_l__dummyaudio.c.i b/SDL/.hg/store/data/src/audio/dummy/_s_d_l__dummyaudio.c.i new file mode 100644 index 0000000..e06fe73 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dummy/_s_d_l__dummyaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/dummy/_s_d_l__dummyaudio.h.i b/SDL/.hg/store/data/src/audio/dummy/_s_d_l__dummyaudio.h.i new file mode 100644 index 0000000..d48fc6f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dummy/_s_d_l__dummyaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/dummy/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/dummy/~2ecvsignore.i new file mode 100644 index 0000000..3f29f0d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/dummy/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/emscripten/_s_d_l__emscriptenaudio.c.i b/SDL/.hg/store/data/src/audio/emscripten/_s_d_l__emscriptenaudio.c.i new file mode 100644 index 0000000..4b12b80 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/emscripten/_s_d_l__emscriptenaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/emscripten/_s_d_l__emscriptenaudio.h.i b/SDL/.hg/store/data/src/audio/emscripten/_s_d_l__emscriptenaudio.h.i new file mode 100644 index 0000000..07c7768 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/emscripten/_s_d_l__emscriptenaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/esd/_makefile.am.i b/SDL/.hg/store/data/src/audio/esd/_makefile.am.i new file mode 100644 index 0000000..da41a0e Binary files /dev/null and b/SDL/.hg/store/data/src/audio/esd/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/esd/_s_d_l__esdaudio.c.i b/SDL/.hg/store/data/src/audio/esd/_s_d_l__esdaudio.c.i new file mode 100644 index 0000000..673b59c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/esd/_s_d_l__esdaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/esd/_s_d_l__esdaudio.h.i b/SDL/.hg/store/data/src/audio/esd/_s_d_l__esdaudio.h.i new file mode 100644 index 0000000..4b6cd3d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/esd/_s_d_l__esdaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/esd/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/esd/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/esd/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/fusionsound/_s_d_l__fsaudio.c.i b/SDL/.hg/store/data/src/audio/fusionsound/_s_d_l__fsaudio.c.i new file mode 100644 index 0000000..7f34150 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/fusionsound/_s_d_l__fsaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/fusionsound/_s_d_l__fsaudio.h.i b/SDL/.hg/store/data/src/audio/fusionsound/_s_d_l__fsaudio.h.i new file mode 100644 index 0000000..b44c21d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/fusionsound/_s_d_l__fsaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/haiku/_s_d_l__haikuaudio.cc.i b/SDL/.hg/store/data/src/audio/haiku/_s_d_l__haikuaudio.cc.i new file mode 100644 index 0000000..b635d41 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/haiku/_s_d_l__haikuaudio.cc.i differ diff --git a/SDL/.hg/store/data/src/audio/haiku/_s_d_l__haikuaudio.h.i b/SDL/.hg/store/data/src/audio/haiku/_s_d_l__haikuaudio.h.i new file mode 100644 index 0000000..855939d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/haiku/_s_d_l__haikuaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/iphoneos/_s_d_l__coreaudio__iphone.c.i b/SDL/.hg/store/data/src/audio/iphoneos/_s_d_l__coreaudio__iphone.c.i new file mode 100644 index 0000000..33d7a8c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/iphoneos/_s_d_l__coreaudio__iphone.c.i differ diff --git a/SDL/.hg/store/data/src/audio/iphoneos/_s_d_l__coreaudio__iphone.h.i b/SDL/.hg/store/data/src/audio/iphoneos/_s_d_l__coreaudio__iphone.h.i new file mode 100644 index 0000000..4c80f6f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/iphoneos/_s_d_l__coreaudio__iphone.h.i differ diff --git a/SDL/.hg/store/data/src/audio/macosx/_makefile.am.i b/SDL/.hg/store/data/src/audio/macosx/_makefile.am.i new file mode 100644 index 0000000..ef8d525 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macosx/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/macosx/_s_d_l__coreaudio.c.i b/SDL/.hg/store/data/src/audio/macosx/_s_d_l__coreaudio.c.i new file mode 100644 index 0000000..665c465 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macosx/_s_d_l__coreaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/macosx/_s_d_l__coreaudio.h.i b/SDL/.hg/store/data/src/audio/macosx/_s_d_l__coreaudio.h.i new file mode 100644 index 0000000..23ebe15 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macosx/_s_d_l__coreaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/macosx/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/macosx/~2ecvsignore.i new file mode 100644 index 0000000..c3db8e4 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macosx/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/macrom/_makefile.am.i b/SDL/.hg/store/data/src/audio/macrom/_makefile.am.i new file mode 100644 index 0000000..c66ce96 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macrom/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/macrom/_s_d_l__romaudio.c.i b/SDL/.hg/store/data/src/audio/macrom/_s_d_l__romaudio.c.i new file mode 100644 index 0000000..749c67e Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macrom/_s_d_l__romaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/macrom/_s_d_l__romaudio.h.i b/SDL/.hg/store/data/src/audio/macrom/_s_d_l__romaudio.h.i new file mode 100644 index 0000000..d1c0c46 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macrom/_s_d_l__romaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/macrom/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/macrom/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/macrom/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_makefile.am.i b/SDL/.hg/store/data/src/audio/mint/_makefile.am.i new file mode 100644 index 0000000..00c828c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio.c.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio.c.i new file mode 100644 index 0000000..71910aa Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio.h.i new file mode 100644 index 0000000..cf93c23 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__dma8.c.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__dma8.c.i new file mode 100644 index 0000000..fb4c62b Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__dma8.c.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__dma8.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__dma8.h.i new file mode 100644 index 0000000..61bb35a Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__dma8.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__gsxb.c.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__gsxb.c.i new file mode 100644 index 0000000..61b2192 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__gsxb.c.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__gsxb.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__gsxb.h.i new file mode 100644 index 0000000..f8ce0e1 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__gsxb.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__it._s.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__it._s.i new file mode 100644 index 0000000..514f7a6 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__it._s.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__mcsn.c.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__mcsn.c.i new file mode 100644 index 0000000..adb796f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__mcsn.c.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__mcsn.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__mcsn.h.i new file mode 100644 index 0000000..f887823 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__mcsn.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__stfa.c.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__stfa.c.i new file mode 100644 index 0000000..0388c0e Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__stfa.c.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__stfa.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__stfa.h.i new file mode 100644 index 0000000..8ec4d1c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__stfa.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__xbios.c.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__xbios.c.i new file mode 100644 index 0000000..d5aa91b Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudio__xbios.c.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiodma.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiodma.h.i new file mode 100644 index 0000000..3790d80 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiodma.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiogsxb.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiogsxb.h.i new file mode 100644 index 0000000..b274083 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiogsxb.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiointerrupt._s.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiointerrupt._s.i new file mode 100644 index 0000000..994cadd Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiointerrupt._s.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiointerrupt__s.h.i b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiointerrupt__s.h.i new file mode 100644 index 0000000..bf20c55 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/_s_d_l__mintaudiointerrupt__s.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mint/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/mint/~2ecvsignore.i new file mode 100644 index 0000000..e060d8e Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mint/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/mme/_makefile.am.i b/SDL/.hg/store/data/src/audio/mme/_makefile.am.i new file mode 100644 index 0000000..287ad4e Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mme/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/mme/_s_d_l__mmeaudio.c.i b/SDL/.hg/store/data/src/audio/mme/_s_d_l__mmeaudio.c.i new file mode 100644 index 0000000..59c7f4e Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mme/_s_d_l__mmeaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/mme/_s_d_l__mmeaudio.h.i b/SDL/.hg/store/data/src/audio/mme/_s_d_l__mmeaudio.h.i new file mode 100644 index 0000000..3aa3873 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mme/_s_d_l__mmeaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/mme/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/mme/~2ecvsignore.i new file mode 100644 index 0000000..0868aeb Binary files /dev/null and b/SDL/.hg/store/data/src/audio/mme/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/nacl/_s_d_l__naclaudio.c.i b/SDL/.hg/store/data/src/audio/nacl/_s_d_l__naclaudio.c.i new file mode 100644 index 0000000..4095ddf Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nacl/_s_d_l__naclaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/nacl/_s_d_l__naclaudio.h.i b/SDL/.hg/store/data/src/audio/nacl/_s_d_l__naclaudio.h.i new file mode 100644 index 0000000..7a007d1 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nacl/_s_d_l__naclaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/nas/_makefile.am.i b/SDL/.hg/store/data/src/audio/nas/_makefile.am.i new file mode 100644 index 0000000..71562b5 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nas/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/nas/_s_d_l__nasaudio.c.i b/SDL/.hg/store/data/src/audio/nas/_s_d_l__nasaudio.c.i new file mode 100644 index 0000000..ae69fd5 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nas/_s_d_l__nasaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/nas/_s_d_l__nasaudio.h.i b/SDL/.hg/store/data/src/audio/nas/_s_d_l__nasaudio.h.i new file mode 100644 index 0000000..a884872 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nas/_s_d_l__nasaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/nas/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/nas/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nas/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/nds/_s_d_l__ndsaudio.c.i b/SDL/.hg/store/data/src/audio/nds/_s_d_l__ndsaudio.c.i new file mode 100644 index 0000000..d190a79 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nds/_s_d_l__ndsaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/nds/_s_d_l__ndsaudio.h.i b/SDL/.hg/store/data/src/audio/nds/_s_d_l__ndsaudio.h.i new file mode 100644 index 0000000..fade314 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nds/_s_d_l__ndsaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/nds/sound9.c.i b/SDL/.hg/store/data/src/audio/nds/sound9.c.i new file mode 100644 index 0000000..6e25954 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nds/sound9.c.i differ diff --git a/SDL/.hg/store/data/src/audio/nds/soundcommon.h.i b/SDL/.hg/store/data/src/audio/nds/soundcommon.h.i new file mode 100644 index 0000000..5e668dd Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nds/soundcommon.h.i differ diff --git a/SDL/.hg/store/data/src/audio/nto/_makefile.am.i b/SDL/.hg/store/data/src/audio/nto/_makefile.am.i new file mode 100644 index 0000000..18fcfad Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nto/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/nto/_s_d_l__nto__audio.c.i b/SDL/.hg/store/data/src/audio/nto/_s_d_l__nto__audio.c.i new file mode 100644 index 0000000..4dac9e6 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nto/_s_d_l__nto__audio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/nto/_s_d_l__nto__audio.h.i b/SDL/.hg/store/data/src/audio/nto/_s_d_l__nto__audio.h.i new file mode 100644 index 0000000..f791a00 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nto/_s_d_l__nto__audio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/nto/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/nto/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/nto/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/openbsd/_makefile.am.i b/SDL/.hg/store/data/src/audio/openbsd/_makefile.am.i new file mode 100644 index 0000000..fbe2969 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/openbsd/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/openbsd/_s_d_l__openbsdaudio.c.i b/SDL/.hg/store/data/src/audio/openbsd/_s_d_l__openbsdaudio.c.i new file mode 100644 index 0000000..8d83cfc Binary files /dev/null and b/SDL/.hg/store/data/src/audio/openbsd/_s_d_l__openbsdaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/openbsd/_s_d_l__openbsdaudio.h.i b/SDL/.hg/store/data/src/audio/openbsd/_s_d_l__openbsdaudio.h.i new file mode 100644 index 0000000..7516fee Binary files /dev/null and b/SDL/.hg/store/data/src/audio/openbsd/_s_d_l__openbsdaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/openbsd/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/openbsd/~2ecvsignore.i new file mode 100644 index 0000000..d99ceda Binary files /dev/null and b/SDL/.hg/store/data/src/audio/openbsd/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/paudio/_makefile.am.i b/SDL/.hg/store/data/src/audio/paudio/_makefile.am.i new file mode 100644 index 0000000..242ef92 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/paudio/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/paudio/_s_d_l__paudio.c.i b/SDL/.hg/store/data/src/audio/paudio/_s_d_l__paudio.c.i new file mode 100644 index 0000000..4d9db0b Binary files /dev/null and b/SDL/.hg/store/data/src/audio/paudio/_s_d_l__paudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/paudio/_s_d_l__paudio.h.i b/SDL/.hg/store/data/src/audio/paudio/_s_d_l__paudio.h.i new file mode 100644 index 0000000..c3438b8 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/paudio/_s_d_l__paudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/paudio/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/paudio/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/paudio/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/psp/_s_d_l__pspaudio.c.i b/SDL/.hg/store/data/src/audio/psp/_s_d_l__pspaudio.c.i new file mode 100644 index 0000000..b6072f2 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/psp/_s_d_l__pspaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/psp/_s_d_l__pspaudio.h.i b/SDL/.hg/store/data/src/audio/psp/_s_d_l__pspaudio.h.i new file mode 100644 index 0000000..888a973 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/psp/_s_d_l__pspaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/pulse/_s_d_l__pulseaudio.c.i b/SDL/.hg/store/data/src/audio/pulse/_s_d_l__pulseaudio.c.i new file mode 100644 index 0000000..32443cf Binary files /dev/null and b/SDL/.hg/store/data/src/audio/pulse/_s_d_l__pulseaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/pulse/_s_d_l__pulseaudio.h.i b/SDL/.hg/store/data/src/audio/pulse/_s_d_l__pulseaudio.h.i new file mode 100644 index 0000000..df6bfd1 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/pulse/_s_d_l__pulseaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/pulseaudio/_s_d_l__pulseaudio.c.i b/SDL/.hg/store/data/src/audio/pulseaudio/_s_d_l__pulseaudio.c.i new file mode 100644 index 0000000..9082052 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/pulseaudio/_s_d_l__pulseaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/pulseaudio/_s_d_l__pulseaudio.h.i b/SDL/.hg/store/data/src/audio/pulseaudio/_s_d_l__pulseaudio.h.i new file mode 100644 index 0000000..0d734f7 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/pulseaudio/_s_d_l__pulseaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/qsa/_s_d_l__qsa__audio.c.i b/SDL/.hg/store/data/src/audio/qsa/_s_d_l__qsa__audio.c.i new file mode 100644 index 0000000..96c8f67 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/qsa/_s_d_l__qsa__audio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/qsa/_s_d_l__qsa__audio.h.i b/SDL/.hg/store/data/src/audio/qsa/_s_d_l__qsa__audio.h.i new file mode 100644 index 0000000..66475a5 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/qsa/_s_d_l__qsa__audio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/riscos/_makefile.am.i b/SDL/.hg/store/data/src/audio/riscos/_makefile.am.i new file mode 100644 index 0000000..b713bbd Binary files /dev/null and b/SDL/.hg/store/data/src/audio/riscos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/riscos/_s_d_l__drenderer.c.i b/SDL/.hg/store/data/src/audio/riscos/_s_d_l__drenderer.c.i new file mode 100644 index 0000000..830d2f2 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/riscos/_s_d_l__drenderer.c.i differ diff --git a/SDL/.hg/store/data/src/audio/riscos/_s_d_l__drenderer.h.i b/SDL/.hg/store/data/src/audio/riscos/_s_d_l__drenderer.h.i new file mode 100644 index 0000000..941b0f3 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/riscos/_s_d_l__drenderer.h.i differ diff --git a/SDL/.hg/store/data/src/audio/riscos/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/riscos/~2ecvsignore.i new file mode 100644 index 0000000..0868aeb Binary files /dev/null and b/SDL/.hg/store/data/src/audio/riscos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/sdlgenaudiocvt.pl.i b/SDL/.hg/store/data/src/audio/sdlgenaudiocvt.pl.i new file mode 100644 index 0000000..c95be04 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/sdlgenaudiocvt.pl.i differ diff --git a/SDL/.hg/store/data/src/audio/sndio/_s_d_l__sndioaudio.c.i b/SDL/.hg/store/data/src/audio/sndio/_s_d_l__sndioaudio.c.i new file mode 100644 index 0000000..de85c9c Binary files /dev/null and b/SDL/.hg/store/data/src/audio/sndio/_s_d_l__sndioaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/sndio/_s_d_l__sndioaudio.h.i b/SDL/.hg/store/data/src/audio/sndio/_s_d_l__sndioaudio.h.i new file mode 100644 index 0000000..b984aab Binary files /dev/null and b/SDL/.hg/store/data/src/audio/sndio/_s_d_l__sndioaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/sun/_makefile.am.i b/SDL/.hg/store/data/src/audio/sun/_makefile.am.i new file mode 100644 index 0000000..dad732f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/sun/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/sun/_s_d_l__sunaudio.c.i b/SDL/.hg/store/data/src/audio/sun/_s_d_l__sunaudio.c.i new file mode 100644 index 0000000..a975376 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/sun/_s_d_l__sunaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/sun/_s_d_l__sunaudio.h.i b/SDL/.hg/store/data/src/audio/sun/_s_d_l__sunaudio.h.i new file mode 100644 index 0000000..f51c2ea Binary files /dev/null and b/SDL/.hg/store/data/src/audio/sun/_s_d_l__sunaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/sun/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/sun/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/sun/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/symbian/_s_d_l__epocaudio.cpp.i b/SDL/.hg/store/data/src/audio/symbian/_s_d_l__epocaudio.cpp.i new file mode 100644 index 0000000..161f160 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/symbian/_s_d_l__epocaudio.cpp.i differ diff --git a/SDL/.hg/store/data/src/audio/symbian/_s_d_l__epocaudio.h.i b/SDL/.hg/store/data/src/audio/symbian/_s_d_l__epocaudio.h.i new file mode 100644 index 0000000..bb01f2d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/symbian/_s_d_l__epocaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/symbian/streamplayer.cpp.i b/SDL/.hg/store/data/src/audio/symbian/streamplayer.cpp.i new file mode 100644 index 0000000..55a8ec5 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/symbian/streamplayer.cpp.i differ diff --git a/SDL/.hg/store/data/src/audio/symbian/streamplayer.h.i b/SDL/.hg/store/data/src/audio/symbian/streamplayer.h.i new file mode 100644 index 0000000..fa9d89a Binary files /dev/null and b/SDL/.hg/store/data/src/audio/symbian/streamplayer.h.i differ diff --git a/SDL/.hg/store/data/src/audio/ums/_makefile.am.i b/SDL/.hg/store/data/src/audio/ums/_makefile.am.i new file mode 100644 index 0000000..e4c8b7f Binary files /dev/null and b/SDL/.hg/store/data/src/audio/ums/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/ums/_s_d_l__umsaudio.c.i b/SDL/.hg/store/data/src/audio/ums/_s_d_l__umsaudio.c.i new file mode 100644 index 0000000..ae319c5 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/ums/_s_d_l__umsaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/ums/_s_d_l__umsaudio.h.i b/SDL/.hg/store/data/src/audio/ums/_s_d_l__umsaudio.h.i new file mode 100644 index 0000000..54bab44 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/ums/_s_d_l__umsaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/ums/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/ums/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/ums/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/windib/_makefile.am.i b/SDL/.hg/store/data/src/audio/windib/_makefile.am.i new file mode 100644 index 0000000..d4f4cd9 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windib/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/windib/_s_d_l__dibaudio.c.i b/SDL/.hg/store/data/src/audio/windib/_s_d_l__dibaudio.c.i new file mode 100644 index 0000000..4d70eb4 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windib/_s_d_l__dibaudio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/windib/_s_d_l__dibaudio.h.i b/SDL/.hg/store/data/src/audio/windib/_s_d_l__dibaudio.h.i new file mode 100644 index 0000000..1d96f6b Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windib/_s_d_l__dibaudio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/windib/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/windib/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windib/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/windx5/_makefile.am.i b/SDL/.hg/store/data/src/audio/windx5/_makefile.am.i new file mode 100644 index 0000000..a04c221 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windx5/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/audio/windx5/_s_d_l__dx5audio.c.i b/SDL/.hg/store/data/src/audio/windx5/_s_d_l__dx5audio.c.i new file mode 100644 index 0000000..3d36b9d Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windx5/_s_d_l__dx5audio.c.i differ diff --git a/SDL/.hg/store/data/src/audio/windx5/_s_d_l__dx5audio.h.i b/SDL/.hg/store/data/src/audio/windx5/_s_d_l__dx5audio.h.i new file mode 100644 index 0000000..7430fe3 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windx5/_s_d_l__dx5audio.h.i differ diff --git a/SDL/.hg/store/data/src/audio/windx5/directx.h.i b/SDL/.hg/store/data/src/audio/windx5/directx.h.i new file mode 100644 index 0000000..4791697 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windx5/directx.h.i differ diff --git a/SDL/.hg/store/data/src/audio/windx5/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/windx5/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/windx5/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/audio/winmm/_s_d_l__winmm.c.i b/SDL/.hg/store/data/src/audio/winmm/_s_d_l__winmm.c.i new file mode 100644 index 0000000..3483d24 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/winmm/_s_d_l__winmm.c.i differ diff --git a/SDL/.hg/store/data/src/audio/winmm/_s_d_l__winmm.h.i b/SDL/.hg/store/data/src/audio/winmm/_s_d_l__winmm.h.i new file mode 100644 index 0000000..a0463c3 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/winmm/_s_d_l__winmm.h.i differ diff --git a/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2.c.i b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2.c.i new file mode 100644 index 0000000..8288605 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2.c.i differ diff --git a/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2.h.i b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2.h.i new file mode 100644 index 0000000..b522138 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2.h.i differ diff --git a/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2__winrthelpers.cpp.i b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2__winrthelpers.cpp.i new file mode 100644 index 0000000..c4abc69 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2__winrthelpers.cpp.i differ diff --git a/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2__winrthelpers.h.i b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2__winrthelpers.h.i new file mode 100644 index 0000000..85526c9 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/xaudio2/_s_d_l__xaudio2__winrthelpers.h.i differ diff --git a/SDL/.hg/store/data/src/audio/~2ecvsignore.i b/SDL/.hg/store/data/src/audio/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/audio/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/_makefile.am.i new file mode 100644 index 0000000..8c62709 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/_makefile.wat.i b/SDL/.hg/store/data/src/cdrom/_makefile.wat.i new file mode 100644 index 0000000..416055b Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/cdrom/_s_d_l__cdrom.c.i b/SDL/.hg/store/data/src/cdrom/_s_d_l__cdrom.c.i new file mode 100644 index 0000000..4c623d9 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/_s_d_l__cdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/_s_d_l__syscdrom.h.i b/SDL/.hg/store/data/src/cdrom/_s_d_l__syscdrom.h.i new file mode 100644 index 0000000..5f478f9 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/_s_d_l__syscdrom.h.i differ diff --git a/SDL/.hg/store/data/src/cdrom/aix/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/aix/_makefile.am.i new file mode 100644 index 0000000..ba836dc Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/aix/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/aix/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/aix/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..64c4f0b Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/aix/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/aix/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/aix/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/aix/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/beos/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/beos/_makefile.am.i new file mode 100644 index 0000000..630f5af Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/beos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/beos/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/beos/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..067460f Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/beos/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/beos/_s_d_l__syscdrom.cc.i b/SDL/.hg/store/data/src/cdrom/beos/_s_d_l__syscdrom.cc.i new file mode 100644 index 0000000..0db65e1 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/beos/_s_d_l__syscdrom.cc.i differ diff --git a/SDL/.hg/store/data/src/cdrom/beos/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/beos/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/beos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/bsdi/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/bsdi/_makefile.am.i new file mode 100644 index 0000000..52ba23b Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/bsdi/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/bsdi/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/bsdi/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..924351f Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/bsdi/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/bsdi/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/bsdi/~2ecvsignore.i new file mode 100644 index 0000000..b5bba9f Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/bsdi/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/dc/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/dc/_makefile.am.i new file mode 100644 index 0000000..13363f5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/dc/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/dc/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/dc/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..41dc12a Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/dc/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/dc/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/dc/~2ecvsignore.i new file mode 100644 index 0000000..3f6541f Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/dc/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/dummy/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/dummy/_makefile.am.i new file mode 100644 index 0000000..a9d7db3 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/dummy/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/dummy/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/dummy/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..659c21a Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/dummy/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/dummy/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/dummy/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/dummy/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/freebsd/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/freebsd/_makefile.am.i new file mode 100644 index 0000000..eef7921 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/freebsd/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/freebsd/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/freebsd/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..471d82d Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/freebsd/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/freebsd/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/freebsd/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/freebsd/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/linux/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/linux/_makefile.am.i new file mode 100644 index 0000000..47aea32 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/linux/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/linux/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/linux/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..83bd88d Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/linux/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/linux/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/linux/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/linux/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macos/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/macos/_makefile.am.i new file mode 100644 index 0000000..b9a88fa Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macos/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/macos/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..51ef106 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macos/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macos/_s_d_l__syscdrom__c.h.i b/SDL/.hg/store/data/src/cdrom/macos/_s_d_l__syscdrom__c.h.i new file mode 100644 index 0000000..7657126 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macos/_s_d_l__syscdrom__c.h.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macos/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/macos/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.c.i b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.c.i new file mode 100644 index 0000000..c0ddb96 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.cpp.i b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.cpp.i new file mode 100644 index 0000000..0e04c01 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.cpp.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.h.i b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.h.i new file mode 100644 index 0000000..c161a9e Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_player.h.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_reader_thread.c.i b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_reader_thread.c.i new file mode 100644 index 0000000..9d09eaf Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_reader_thread.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_reader_thread.cpp.i b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_reader_thread.cpp.i new file mode 100644 index 0000000..2788f52 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_audio_file_reader_thread.cpp.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_c_a_guard.cpp.i b/SDL/.hg/store/data/src/cdrom/macosx/_c_a_guard.cpp.i new file mode 100644 index 0000000..4273382 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_c_a_guard.cpp.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_c_a_guard.h.i b/SDL/.hg/store/data/src/cdrom/macosx/_c_a_guard.h.i new file mode 100644 index 0000000..5a238a3 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_c_a_guard.h.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.c.i b/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.c.i new file mode 100644 index 0000000..924faf2 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.cpp.i b/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.cpp.i new file mode 100644 index 0000000..73e139c Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.cpp.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.h.i b/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.h.i new file mode 100644 index 0000000..f62efd5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_c_d_player.h.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/macosx/_makefile.am.i new file mode 100644 index 0000000..71079cb Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..9737c98 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l__syscdrom__c.h.i b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l__syscdrom__c.h.i new file mode 100644 index 0000000..d0971f9 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l__syscdrom__c.h.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l_o_s_x_c_a_guard.c.i b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l_o_s_x_c_a_guard.c.i new file mode 100644 index 0000000..f89e66c Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l_o_s_x_c_a_guard.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l_o_s_x_c_a_guard.h.i b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l_o_s_x_c_a_guard.h.i new file mode 100644 index 0000000..6a0aadd Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/_s_d_l_o_s_x_c_a_guard.h.i differ diff --git a/SDL/.hg/store/data/src/cdrom/macosx/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/macosx/~2ecvsignore.i new file mode 100644 index 0000000..cb197ee Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/macosx/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/mint/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/mint/_makefile.am.i new file mode 100644 index 0000000..a17893b Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/mint/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/mint/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/mint/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..25e8c2c Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/mint/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/mint/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/mint/~2ecvsignore.i new file mode 100644 index 0000000..e3ba29a Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/mint/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/openbsd/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/openbsd/_makefile.am.i new file mode 100644 index 0000000..18b2078 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/openbsd/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/openbsd/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/openbsd/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..5b42457 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/openbsd/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/openbsd/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/openbsd/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/openbsd/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/os2/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/os2/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..b94660b Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/os2/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/osf/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/osf/_makefile.am.i new file mode 100644 index 0000000..9974f69 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/osf/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/osf/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/osf/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..d7be894 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/osf/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/osf/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/osf/~2ecvsignore.i new file mode 100644 index 0000000..0868aeb Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/osf/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/qnx/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/qnx/_makefile.am.i new file mode 100644 index 0000000..2d119f6 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/qnx/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/qnx/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/qnx/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..d349143 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/qnx/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/qnx/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/qnx/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/qnx/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/win32/_makefile.am.i b/SDL/.hg/store/data/src/cdrom/win32/_makefile.am.i new file mode 100644 index 0000000..f1556be Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/win32/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cdrom/win32/_s_d_l__syscdrom.c.i b/SDL/.hg/store/data/src/cdrom/win32/_s_d_l__syscdrom.c.i new file mode 100644 index 0000000..91ce565 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/win32/_s_d_l__syscdrom.c.i differ diff --git a/SDL/.hg/store/data/src/cdrom/win32/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/win32/~2ecvsignore.i new file mode 100644 index 0000000..df6bad5 Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/win32/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/cdrom/~2ecvsignore.i b/SDL/.hg/store/data/src/cdrom/~2ecvsignore.i new file mode 100644 index 0000000..a009f5f Binary files /dev/null and b/SDL/.hg/store/data/src/cdrom/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/core/android/_s_d_l__android.c.i b/SDL/.hg/store/data/src/core/android/_s_d_l__android.c.i new file mode 100644 index 0000000..a773824 Binary files /dev/null and b/SDL/.hg/store/data/src/core/android/_s_d_l__android.c.i differ diff --git a/SDL/.hg/store/data/src/core/android/_s_d_l__android.cpp.i b/SDL/.hg/store/data/src/core/android/_s_d_l__android.cpp.i new file mode 100644 index 0000000..5329934 Binary files /dev/null and b/SDL/.hg/store/data/src/core/android/_s_d_l__android.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/android/_s_d_l__android.h.i b/SDL/.hg/store/data/src/core/android/_s_d_l__android.h.i new file mode 100644 index 0000000..ea7bdb0 Binary files /dev/null and b/SDL/.hg/store/data/src/core/android/_s_d_l__android.h.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__dbus.c.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__dbus.c.i new file mode 100644 index 0000000..280f456 Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__dbus.c.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__dbus.h.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__dbus.h.i new file mode 100644 index 0000000..5c01c55 Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__dbus.h.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__evdev.c.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__evdev.c.i new file mode 100644 index 0000000..284031e Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__evdev.c.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__evdev.h.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__evdev.h.i new file mode 100644 index 0000000..1868d64 Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__evdev.h.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__ibus.c.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__ibus.c.i new file mode 100644 index 0000000..b812ef3 Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__ibus.c.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__ibus.h.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__ibus.h.i new file mode 100644 index 0000000..199ed5d Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__ibus.h.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__udev.c.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__udev.c.i new file mode 100644 index 0000000..2713e9f Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__udev.c.i differ diff --git a/SDL/.hg/store/data/src/core/linux/_s_d_l__udev.h.i b/SDL/.hg/store/data/src/core/linux/_s_d_l__udev.h.i new file mode 100644 index 0000000..3f0b330 Binary files /dev/null and b/SDL/.hg/store/data/src/core/linux/_s_d_l__udev.h.i differ diff --git a/SDL/.hg/store/data/src/core/windows/_s_d_l__directx.h.i b/SDL/.hg/store/data/src/core/windows/_s_d_l__directx.h.i new file mode 100644 index 0000000..edd78e9 Binary files /dev/null and b/SDL/.hg/store/data/src/core/windows/_s_d_l__directx.h.i differ diff --git a/SDL/.hg/store/data/src/core/windows/_s_d_l__windows.c.i b/SDL/.hg/store/data/src/core/windows/_s_d_l__windows.c.i new file mode 100644 index 0000000..4e6154a Binary files /dev/null and b/SDL/.hg/store/data/src/core/windows/_s_d_l__windows.c.i differ diff --git a/SDL/.hg/store/data/src/core/windows/_s_d_l__windows.h.i b/SDL/.hg/store/data/src/core/windows/_s_d_l__windows.h.i new file mode 100644 index 0000000..e350b92 Binary files /dev/null and b/SDL/.hg/store/data/src/core/windows/_s_d_l__windows.h.i differ diff --git a/SDL/.hg/store/data/src/core/windows/_s_d_l__xinput.c.i b/SDL/.hg/store/data/src/core/windows/_s_d_l__xinput.c.i new file mode 100644 index 0000000..624f9e1 Binary files /dev/null and b/SDL/.hg/store/data/src/core/windows/_s_d_l__xinput.c.i differ diff --git a/SDL/.hg/store/data/src/core/windows/_s_d_l__xinput.h.i b/SDL/.hg/store/data/src/core/windows/_s_d_l__xinput.h.i new file mode 100644 index 0000000..2d3fd48 Binary files /dev/null and b/SDL/.hg/store/data/src/core/windows/_s_d_l__xinput.h.i differ diff --git a/SDL/.hg/store/data/src/core/windowsrt/_s_d_l__winrtpaths.cpp.i b/SDL/.hg/store/data/src/core/windowsrt/_s_d_l__winrtpaths.cpp.i new file mode 100644 index 0000000..bcb10db Binary files /dev/null and b/SDL/.hg/store/data/src/core/windowsrt/_s_d_l__winrtpaths.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp.cpp.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp.cpp.i new file mode 100644 index 0000000..090f550 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp.h.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp.h.i new file mode 100644 index 0000000..9ae906c Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp.h.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__common.cpp.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__common.cpp.i new file mode 100644 index 0000000..26ef037 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__common.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__common.h.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__common.h.i new file mode 100644 index 0000000..f04d388 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__common.h.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__direct3d.cpp.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__direct3d.cpp.i new file mode 100644 index 0000000..6829a93 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__direct3d.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__direct3d.h.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__direct3d.h.i new file mode 100644 index 0000000..0a81408 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__direct3d.h.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__xaml.cpp.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__xaml.cpp.i new file mode 100644 index 0000000..ac6b1f6 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__xaml.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__xaml.h.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__xaml.h.i new file mode 100644 index 0000000..a6a9865 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtapp__xaml.h.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtpaths.cpp.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtpaths.cpp.i new file mode 100644 index 0000000..52f708d Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtpaths.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtxaml.cpp.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtxaml.cpp.i new file mode 100644 index 0000000..d00a6bd Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtxaml.cpp.i differ diff --git a/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtxaml__cpp.h.i b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtxaml__cpp.h.i new file mode 100644 index 0000000..37a4b52 Binary files /dev/null and b/SDL/.hg/store/data/src/core/winrt/_s_d_l__winrtxaml__cpp.h.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/__cpuinfo.asm.i b/SDL/.hg/store/data/src/cpuinfo/__cpuinfo.asm.i new file mode 100644 index 0000000..0149f76 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/__cpuinfo.asm.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/__pcihelp.asm.i b/SDL/.hg/store/data/src/cpuinfo/__pcihelp.asm.i new file mode 100644 index 0000000..6bc53cf Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/__pcihelp.asm.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/_c_o_p_y_i_n_g._l_i_b.i b/SDL/.hg/store/data/src/cpuinfo/_c_o_p_y_i_n_g._l_i_b.i new file mode 100644 index 0000000..36211a9 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/_c_o_p_y_i_n_g._l_i_b.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/_makefile.am.i b/SDL/.hg/store/data/src/cpuinfo/_makefile.am.i new file mode 100644 index 0000000..a512f19 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/_makefile.wat.i b/SDL/.hg/store/data/src/cpuinfo/_makefile.wat.i new file mode 100644 index 0000000..9543f85 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/_r_e_a_d_m_e.i b/SDL/.hg/store/data/src/cpuinfo/_r_e_a_d_m_e.i new file mode 100644 index 0000000..e0ac06b Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/_s_d_l__cpuinfo.c.i b/SDL/.hg/store/data/src/cpuinfo/_s_d_l__cpuinfo.c.i new file mode 100644 index 0000000..cda4842 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/_s_d_l__cpuinfo.c.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/cpuinfo.h.i b/SDL/.hg/store/data/src/cpuinfo/cpuinfo.h.i new file mode 100644 index 0000000..4510feb Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/cpuinfo.h.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/gcpuinfo.c.i b/SDL/.hg/store/data/src/cpuinfo/gcpuinfo.c.i new file mode 100644 index 0000000..166de40 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/gcpuinfo.c.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/scitech.mac.i b/SDL/.hg/store/data/src/cpuinfo/scitech.mac.i new file mode 100644 index 0000000..40a57a6 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/scitech.mac.i differ diff --git a/SDL/.hg/store/data/src/cpuinfo/~2ecvsignore.i b/SDL/.hg/store/data/src/cpuinfo/~2ecvsignore.i new file mode 100644 index 0000000..3ee4d31 Binary files /dev/null and b/SDL/.hg/store/data/src/cpuinfo/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi.c.i b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi.c.i new file mode 100644 index 0000000..4fbe147 Binary files /dev/null and b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi.c.i differ diff --git a/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi.h.i b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi.h.i new file mode 100644 index 0000000..6ef5581 Binary files /dev/null and b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi.h.i differ diff --git a/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi__overrides.h.i b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi__overrides.h.i new file mode 100644 index 0000000..ae4f0ff Binary files /dev/null and b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi__overrides.h.i differ diff --git a/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi__procs.h.i b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi__procs.h.i new file mode 100644 index 0000000..3fbe84f Binary files /dev/null and b/SDL/.hg/store/data/src/dynapi/_s_d_l__dynapi__procs.h.i differ diff --git a/SDL/.hg/store/data/src/dynapi/gendynapi.pl.i b/SDL/.hg/store/data/src/dynapi/gendynapi.pl.i new file mode 100644 index 0000000..1352616 Binary files /dev/null and b/SDL/.hg/store/data/src/dynapi/gendynapi.pl.i differ diff --git a/SDL/.hg/store/data/src/endian/_makefile.am.i b/SDL/.hg/store/data/src/endian/_makefile.am.i new file mode 100644 index 0000000..a4e0226 Binary files /dev/null and b/SDL/.hg/store/data/src/endian/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/endian/_makefile.wat.i b/SDL/.hg/store/data/src/endian/_makefile.wat.i new file mode 100644 index 0000000..9dfc4d5 Binary files /dev/null and b/SDL/.hg/store/data/src/endian/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/endian/_s_d_l__endian.c.i b/SDL/.hg/store/data/src/endian/_s_d_l__endian.c.i new file mode 100644 index 0000000..02acfa5 Binary files /dev/null and b/SDL/.hg/store/data/src/endian/_s_d_l__endian.c.i differ diff --git a/SDL/.hg/store/data/src/endian/~2ecvsignore.i b/SDL/.hg/store/data/src/endian/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/endian/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/events/_makefile.am.i b/SDL/.hg/store/data/src/events/_makefile.am.i new file mode 100644 index 0000000..dfe128d Binary files /dev/null and b/SDL/.hg/store/data/src/events/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/events/_makefile.wat.i b/SDL/.hg/store/data/src/events/_makefile.wat.i new file mode 100644 index 0000000..4a85905 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__active.c.i b/SDL/.hg/store/data/src/events/_s_d_l__active.c.i new file mode 100644 index 0000000..fdef327 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__active.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__clipboardevents.c.i b/SDL/.hg/store/data/src/events/_s_d_l__clipboardevents.c.i new file mode 100644 index 0000000..071ed67 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__clipboardevents.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__clipboardevents__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__clipboardevents__c.h.i new file mode 100644 index 0000000..cbefc49 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__clipboardevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__dropevents.c.i b/SDL/.hg/store/data/src/events/_s_d_l__dropevents.c.i new file mode 100644 index 0000000..a2a32ee Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__dropevents.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__dropevents__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__dropevents__c.h.i new file mode 100644 index 0000000..cc15b64 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__dropevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__events.c.i b/SDL/.hg/store/data/src/events/_s_d_l__events.c.i new file mode 100644 index 0000000..7fe3070 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__events.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__events__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__events__c.h.i new file mode 100644 index 0000000..3796f0d Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__events__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__expose.c.i b/SDL/.hg/store/data/src/events/_s_d_l__expose.c.i new file mode 100644 index 0000000..2b4340a Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__expose.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__gesture.c.i b/SDL/.hg/store/data/src/events/_s_d_l__gesture.c.i new file mode 100644 index 0000000..5990d37 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__gesture.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__gesture__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__gesture__c.h.i new file mode 100644 index 0000000..96082f4 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__gesture__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__keyboard.c.i b/SDL/.hg/store/data/src/events/_s_d_l__keyboard.c.i new file mode 100644 index 0000000..a15c7f7 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__keyboard.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__keyboard__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__keyboard__c.h.i new file mode 100644 index 0000000..509190b Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__keyboard__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__keynames.h.i b/SDL/.hg/store/data/src/events/_s_d_l__keynames.h.i new file mode 100644 index 0000000..2cdc912 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__keynames.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__mouse.c.i b/SDL/.hg/store/data/src/events/_s_d_l__mouse.c.i new file mode 100644 index 0000000..72bd048 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__mouse.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__mouse__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__mouse__c.h.i new file mode 100644 index 0000000..1293ee5 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__mouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__quit.c.i b/SDL/.hg/store/data/src/events/_s_d_l__quit.c.i new file mode 100644 index 0000000..7a340c4 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__quit.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__resize.c.i b/SDL/.hg/store/data/src/events/_s_d_l__resize.c.i new file mode 100644 index 0000000..6156d9e Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__resize.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__sysevents.h.i b/SDL/.hg/store/data/src/events/_s_d_l__sysevents.h.i new file mode 100644 index 0000000..3e7dce9 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__sysevents.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__touch.c.i b/SDL/.hg/store/data/src/events/_s_d_l__touch.c.i new file mode 100644 index 0000000..081033f Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__touch.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__touch__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__touch__c.h.i new file mode 100644 index 0000000..f1f190c Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__touch__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__windowevents.c.i b/SDL/.hg/store/data/src/events/_s_d_l__windowevents.c.i new file mode 100644 index 0000000..afe3be4 Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__windowevents.c.i differ diff --git a/SDL/.hg/store/data/src/events/_s_d_l__windowevents__c.h.i b/SDL/.hg/store/data/src/events/_s_d_l__windowevents__c.h.i new file mode 100644 index 0000000..e37174b Binary files /dev/null and b/SDL/.hg/store/data/src/events/_s_d_l__windowevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/events/blank__cursor.h.i b/SDL/.hg/store/data/src/events/blank__cursor.h.i new file mode 100644 index 0000000..acd3e11 Binary files /dev/null and b/SDL/.hg/store/data/src/events/blank__cursor.h.i differ diff --git a/SDL/.hg/store/data/src/events/default__cursor.h.i b/SDL/.hg/store/data/src/events/default__cursor.h.i new file mode 100644 index 0000000..ac4e8c3 Binary files /dev/null and b/SDL/.hg/store/data/src/events/default__cursor.h.i differ diff --git a/SDL/.hg/store/data/src/events/nds/_s_d_l__ndsgesture.c.i b/SDL/.hg/store/data/src/events/nds/_s_d_l__ndsgesture.c.i new file mode 100644 index 0000000..38cefc0 Binary files /dev/null and b/SDL/.hg/store/data/src/events/nds/_s_d_l__ndsgesture.c.i differ diff --git a/SDL/.hg/store/data/src/events/scancodes__darwin.h.i b/SDL/.hg/store/data/src/events/scancodes__darwin.h.i new file mode 100644 index 0000000..e313258 Binary files /dev/null and b/SDL/.hg/store/data/src/events/scancodes__darwin.h.i differ diff --git a/SDL/.hg/store/data/src/events/scancodes__linux.h.i b/SDL/.hg/store/data/src/events/scancodes__linux.h.i new file mode 100644 index 0000000..56d1655 Binary files /dev/null and b/SDL/.hg/store/data/src/events/scancodes__linux.h.i differ diff --git a/SDL/.hg/store/data/src/events/scancodes__win32.h.i b/SDL/.hg/store/data/src/events/scancodes__win32.h.i new file mode 100644 index 0000000..ac2b327 Binary files /dev/null and b/SDL/.hg/store/data/src/events/scancodes__win32.h.i differ diff --git a/SDL/.hg/store/data/src/events/scancodes__windows.h.i b/SDL/.hg/store/data/src/events/scancodes__windows.h.i new file mode 100644 index 0000000..628d64c Binary files /dev/null and b/SDL/.hg/store/data/src/events/scancodes__windows.h.i differ diff --git a/SDL/.hg/store/data/src/events/scancodes__xfree86.h.i b/SDL/.hg/store/data/src/events/scancodes__xfree86.h.i new file mode 100644 index 0000000..2aad720 Binary files /dev/null and b/SDL/.hg/store/data/src/events/scancodes__xfree86.h.i differ diff --git a/SDL/.hg/store/data/src/events/~2ecvsignore.i b/SDL/.hg/store/data/src/events/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/events/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/file/_makefile.am.i b/SDL/.hg/store/data/src/file/_makefile.am.i new file mode 100644 index 0000000..c9d8ddc Binary files /dev/null and b/SDL/.hg/store/data/src/file/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/file/_makefile.wat.i b/SDL/.hg/store/data/src/file/_makefile.wat.i new file mode 100644 index 0000000..4e78944 Binary files /dev/null and b/SDL/.hg/store/data/src/file/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/file/_s_d_l__rwops.c.i b/SDL/.hg/store/data/src/file/_s_d_l__rwops.c.i new file mode 100644 index 0000000..e7f6a6b Binary files /dev/null and b/SDL/.hg/store/data/src/file/_s_d_l__rwops.c.i differ diff --git a/SDL/.hg/store/data/src/file/cocoa/_s_d_l__rwopsbundlesupport.h.i b/SDL/.hg/store/data/src/file/cocoa/_s_d_l__rwopsbundlesupport.h.i new file mode 100644 index 0000000..f346f78 Binary files /dev/null and b/SDL/.hg/store/data/src/file/cocoa/_s_d_l__rwopsbundlesupport.h.i differ diff --git a/SDL/.hg/store/data/src/file/cocoa/_s_d_l__rwopsbundlesupport.m.i b/SDL/.hg/store/data/src/file/cocoa/_s_d_l__rwopsbundlesupport.m.i new file mode 100644 index 0000000..713252b Binary files /dev/null and b/SDL/.hg/store/data/src/file/cocoa/_s_d_l__rwopsbundlesupport.m.i differ diff --git a/SDL/.hg/store/data/src/file/~2ecvsignore.i b/SDL/.hg/store/data/src/file/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/file/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/filesystem/android/_s_d_l__sysfilesystem.c.i b/SDL/.hg/store/data/src/filesystem/android/_s_d_l__sysfilesystem.c.i new file mode 100644 index 0000000..3e0c1ff Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/android/_s_d_l__sysfilesystem.c.i differ diff --git a/SDL/.hg/store/data/src/filesystem/beos/_s_d_l__sysfilesystem.cc.i b/SDL/.hg/store/data/src/filesystem/beos/_s_d_l__sysfilesystem.cc.i new file mode 100644 index 0000000..85c7ac0 Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/beos/_s_d_l__sysfilesystem.cc.i differ diff --git a/SDL/.hg/store/data/src/filesystem/cocoa/_s_d_l__sysfilesystem.m.i b/SDL/.hg/store/data/src/filesystem/cocoa/_s_d_l__sysfilesystem.m.i new file mode 100644 index 0000000..9a7958d Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/cocoa/_s_d_l__sysfilesystem.m.i differ diff --git a/SDL/.hg/store/data/src/filesystem/dummy/_s_d_l__sysfilesystem.c.i b/SDL/.hg/store/data/src/filesystem/dummy/_s_d_l__sysfilesystem.c.i new file mode 100644 index 0000000..fd40dc2 Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/dummy/_s_d_l__sysfilesystem.c.i differ diff --git a/SDL/.hg/store/data/src/filesystem/emscripten/_s_d_l__sysfilesystem.c.i b/SDL/.hg/store/data/src/filesystem/emscripten/_s_d_l__sysfilesystem.c.i new file mode 100644 index 0000000..5dd37ec Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/emscripten/_s_d_l__sysfilesystem.c.i differ diff --git a/SDL/.hg/store/data/src/filesystem/haiku/_s_d_l__sysfilesystem.cc.i b/SDL/.hg/store/data/src/filesystem/haiku/_s_d_l__sysfilesystem.cc.i new file mode 100644 index 0000000..5c0bcc5 Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/haiku/_s_d_l__sysfilesystem.cc.i differ diff --git a/SDL/.hg/store/data/src/filesystem/nacl/_s_d_l__sysfilesystem.c.i b/SDL/.hg/store/data/src/filesystem/nacl/_s_d_l__sysfilesystem.c.i new file mode 100644 index 0000000..7388185 Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/nacl/_s_d_l__sysfilesystem.c.i differ diff --git a/SDL/.hg/store/data/src/filesystem/nacl/_s_d_l__sysfilesytem.c.i b/SDL/.hg/store/data/src/filesystem/nacl/_s_d_l__sysfilesytem.c.i new file mode 100644 index 0000000..0b59257 Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/nacl/_s_d_l__sysfilesytem.c.i differ diff --git a/SDL/.hg/store/data/src/filesystem/unix/_s_d_l__sysfilesystem.c.i b/SDL/.hg/store/data/src/filesystem/unix/_s_d_l__sysfilesystem.c.i new file mode 100644 index 0000000..dcbd5ba Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/unix/_s_d_l__sysfilesystem.c.i differ diff --git a/SDL/.hg/store/data/src/filesystem/windows/_s_d_l__sysfilesystem.c.i b/SDL/.hg/store/data/src/filesystem/windows/_s_d_l__sysfilesystem.c.i new file mode 100644 index 0000000..c8702dd Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/windows/_s_d_l__sysfilesystem.c.i differ diff --git a/SDL/.hg/store/data/src/filesystem/winrt/_s_d_l__sysfilesystem.cpp.i b/SDL/.hg/store/data/src/filesystem/winrt/_s_d_l__sysfilesystem.cpp.i new file mode 100644 index 0000000..47d5b7e Binary files /dev/null and b/SDL/.hg/store/data/src/filesystem/winrt/_s_d_l__sysfilesystem.cpp.i differ diff --git a/SDL/.hg/store/data/src/haptic/_s_d_l__haptic.c.i b/SDL/.hg/store/data/src/haptic/_s_d_l__haptic.c.i new file mode 100644 index 0000000..b323d3d Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/_s_d_l__haptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/_s_d_l__haptic__c.h.i b/SDL/.hg/store/data/src/haptic/_s_d_l__haptic__c.h.i new file mode 100644 index 0000000..d9260d4 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/_s_d_l__haptic__c.h.i differ diff --git a/SDL/.hg/store/data/src/haptic/_s_d_l__syshaptic.h.i b/SDL/.hg/store/data/src/haptic/_s_d_l__syshaptic.h.i new file mode 100644 index 0000000..b3dd283 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/_s_d_l__syshaptic.h.i differ diff --git a/SDL/.hg/store/data/src/haptic/darwin/_s_d_l__syshaptic.c.i b/SDL/.hg/store/data/src/haptic/darwin/_s_d_l__syshaptic.c.i new file mode 100644 index 0000000..7dd46bf Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/darwin/_s_d_l__syshaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/darwin/_s_d_l__syshaptic__c.h.i b/SDL/.hg/store/data/src/haptic/darwin/_s_d_l__syshaptic__c.h.i new file mode 100644 index 0000000..50d7de9 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/darwin/_s_d_l__syshaptic__c.h.i differ diff --git a/SDL/.hg/store/data/src/haptic/dummy/_s_d_l__syshaptic.c.i b/SDL/.hg/store/data/src/haptic/dummy/_s_d_l__syshaptic.c.i new file mode 100644 index 0000000..8814abc Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/dummy/_s_d_l__syshaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/linux/_s_d_l__syshaptic.c.i b/SDL/.hg/store/data/src/haptic/linux/_s_d_l__syshaptic.c.i new file mode 100644 index 0000000..31d9ff4 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/linux/_s_d_l__syshaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/nds/_s_d_l__syshaptic.c.i b/SDL/.hg/store/data/src/haptic/nds/_s_d_l__syshaptic.c.i new file mode 100644 index 0000000..59e4d14 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/nds/_s_d_l__syshaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/win32/_s_d_l__syshaptic.c.i b/SDL/.hg/store/data/src/haptic/win32/_s_d_l__syshaptic.c.i new file mode 100644 index 0000000..581eeba Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/win32/_s_d_l__syshaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__dinputhaptic.c.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__dinputhaptic.c.i new file mode 100644 index 0000000..3d78316 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__dinputhaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__dinputhaptic__c.h.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__dinputhaptic__c.h.i new file mode 100644 index 0000000..ded3150 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__dinputhaptic__c.h.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__syshaptic.c.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__syshaptic.c.i new file mode 100644 index 0000000..0b5e9a5 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__syshaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__syshaptic__c.h.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__syshaptic__c.h.i new file mode 100644 index 0000000..b33d94e Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__syshaptic__c.h.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__windowshaptic.c.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__windowshaptic.c.i new file mode 100644 index 0000000..47621e3 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__windowshaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__windowshaptic__c.h.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__windowshaptic__c.h.i new file mode 100644 index 0000000..6b5c1e4 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__windowshaptic__c.h.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__xinputhaptic.c.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__xinputhaptic.c.i new file mode 100644 index 0000000..d6553e6 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__xinputhaptic.c.i differ diff --git a/SDL/.hg/store/data/src/haptic/windows/_s_d_l__xinputhaptic__c.h.i b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__xinputhaptic__c.h.i new file mode 100644 index 0000000..a9c6431 Binary files /dev/null and b/SDL/.hg/store/data/src/haptic/windows/_s_d_l__xinputhaptic__c.h.i differ diff --git a/SDL/.hg/store/data/src/hermes/_c_o_p_y_i_n_g._l_i_b.i b/SDL/.hg/store/data/src/hermes/_c_o_p_y_i_n_g._l_i_b.i new file mode 100644 index 0000000..31aaf08 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/_c_o_p_y_i_n_g._l_i_b.i differ diff --git a/SDL/.hg/store/data/src/hermes/_head_m_m_x.h.i b/SDL/.hg/store/data/src/hermes/_head_m_m_x.h.i new file mode 100644 index 0000000..420e9a8 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/_head_m_m_x.h.i differ diff --git a/SDL/.hg/store/data/src/hermes/_head_x86.h.i b/SDL/.hg/store/data/src/hermes/_head_x86.h.i new file mode 100644 index 0000000..14c2d99 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/_head_x86.h.i differ diff --git a/SDL/.hg/store/data/src/hermes/_makefile.am.i b/SDL/.hg/store/data/src/hermes/_makefile.am.i new file mode 100644 index 0000000..2661294 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/hermes/_r_e_a_d_m_e.i b/SDL/.hg/store/data/src/hermes/_r_e_a_d_m_e.i new file mode 100644 index 0000000..e95b8ba Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/src/hermes/common.asm.i b/SDL/.hg/store/data/src/hermes/common.asm.i new file mode 100644 index 0000000..158e48a Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/common.asm.i differ diff --git a/SDL/.hg/store/data/src/hermes/common.inc.i b/SDL/.hg/store/data/src/hermes/common.inc.i new file mode 100644 index 0000000..0f891ff Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/common.inc.i differ diff --git a/SDL/.hg/store/data/src/hermes/mmx__main.asm.i b/SDL/.hg/store/data/src/hermes/mmx__main.asm.i new file mode 100644 index 0000000..a95b48d Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/mmx__main.asm.i differ diff --git a/SDL/.hg/store/data/src/hermes/mmxp2__32.asm.i b/SDL/.hg/store/data/src/hermes/mmxp2__32.asm.i new file mode 100644 index 0000000..7a6c707 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/mmxp2__32.asm.i differ diff --git a/SDL/.hg/store/data/src/hermes/x86__main.asm.i b/SDL/.hg/store/data/src/hermes/x86__main.asm.i new file mode 100644 index 0000000..200f495 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/x86__main.asm.i differ diff --git a/SDL/.hg/store/data/src/hermes/x86p__16.asm.i b/SDL/.hg/store/data/src/hermes/x86p__16.asm.i new file mode 100644 index 0000000..3bf5478 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/x86p__16.asm.i differ diff --git a/SDL/.hg/store/data/src/hermes/x86p__32.asm.i b/SDL/.hg/store/data/src/hermes/x86p__32.asm.i new file mode 100644 index 0000000..1dab7e5 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/x86p__32.asm.i differ diff --git a/SDL/.hg/store/data/src/hermes/~2ecvsignore.i b/SDL/.hg/store/data/src/hermes/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/hermes/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/input/evdev/_s_d_l__evdev.c.i b/SDL/.hg/store/data/src/input/evdev/_s_d_l__evdev.c.i new file mode 100644 index 0000000..6d42836 Binary files /dev/null and b/SDL/.hg/store/data/src/input/evdev/_s_d_l__evdev.c.i differ diff --git a/SDL/.hg/store/data/src/input/evdev/_s_d_l__evdev.h.i b/SDL/.hg/store/data/src/input/evdev/_s_d_l__evdev.h.i new file mode 100644 index 0000000..4d1323d Binary files /dev/null and b/SDL/.hg/store/data/src/input/evdev/_s_d_l__evdev.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/_makefile.am.i b/SDL/.hg/store/data/src/joystick/_makefile.am.i new file mode 100644 index 0000000..70d6b4b Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/_makefile.wat.i b/SDL/.hg/store/data/src/joystick/_makefile.wat.i new file mode 100644 index 0000000..f0ccd24 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/joystick/_s_d_l__gamecontroller.c.i b/SDL/.hg/store/data/src/joystick/_s_d_l__gamecontroller.c.i new file mode 100644 index 0000000..49f7871 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/_s_d_l__gamecontroller.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/_s_d_l__gamecontrollerdb.h.i b/SDL/.hg/store/data/src/joystick/_s_d_l__gamecontrollerdb.h.i new file mode 100644 index 0000000..301bc6e Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/_s_d_l__gamecontrollerdb.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/_s_d_l__joystick.c.i b/SDL/.hg/store/data/src/joystick/_s_d_l__joystick.c.i new file mode 100644 index 0000000..b9ab0ee Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/_s_d_l__joystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/_s_d_l__joystick__c.h.i b/SDL/.hg/store/data/src/joystick/_s_d_l__joystick__c.h.i new file mode 100644 index 0000000..6dbeaaa Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/_s_d_l__joystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/_s_d_l__sysjoystick.h.i b/SDL/.hg/store/data/src/joystick/_s_d_l__sysjoystick.h.i new file mode 100644 index 0000000..dc273e8 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/_s_d_l__sysjoystick.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/amigaos/_makefile.am.i b/SDL/.hg/store/data/src/joystick/amigaos/_makefile.am.i new file mode 100644 index 0000000..bd10af8 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/amigaos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/amigaos/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/amigaos/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..28b21b1 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/amigaos/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/amigaos/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/amigaos/~2ecvsignore.i new file mode 100644 index 0000000..fbf7896 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/amigaos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/android/_s_d_l__androidjoystick.c.i b/SDL/.hg/store/data/src/joystick/android/_s_d_l__androidjoystick.c.i new file mode 100644 index 0000000..592853c Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/android/_s_d_l__androidjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/android/_s_d_l__androidjoystick.h.i b/SDL/.hg/store/data/src/joystick/android/_s_d_l__androidjoystick.h.i new file mode 100644 index 0000000..58cc0b5 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/android/_s_d_l__androidjoystick.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..8643e97 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick.h.i b/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick.h.i new file mode 100644 index 0000000..142cff4 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick__c.h.i new file mode 100644 index 0000000..476e4d1 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/android/_s_d_l__sysjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/beos/_makefile.am.i b/SDL/.hg/store/data/src/joystick/beos/_makefile.am.i new file mode 100644 index 0000000..0eba25c Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/beos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/beos/_s_d_l__bejoystick.cc.i b/SDL/.hg/store/data/src/joystick/beos/_s_d_l__bejoystick.cc.i new file mode 100644 index 0000000..84d2e04 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/beos/_s_d_l__bejoystick.cc.i differ diff --git a/SDL/.hg/store/data/src/joystick/beos/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/beos/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/beos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/bsd/_makefile.am.i b/SDL/.hg/store/data/src/joystick/bsd/_makefile.am.i new file mode 100644 index 0000000..b0bafbd Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/bsd/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/bsd/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/bsd/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..f581b14 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/bsd/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/bsd/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/bsd/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/bsd/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/darwin/10.3.9-_f_i_x/_i_o_h_i_d_lib.h.i b/SDL/.hg/store/data/src/joystick/darwin/10.3.9-_f_i_x/_i_o_h_i_d_lib.h.i new file mode 100644 index 0000000..0aa1d6f Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/darwin/10.3.9-_f_i_x/_i_o_h_i_d_lib.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/darwin/_makefile.am.i b/SDL/.hg/store/data/src/joystick/darwin/_makefile.am.i new file mode 100644 index 0000000..d7c3e51 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/darwin/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/darwin/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/darwin/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..14c15f3 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/darwin/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/darwin/_s_d_l__sysjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/darwin/_s_d_l__sysjoystick__c.h.i new file mode 100644 index 0000000..6e5b0eb Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/darwin/_s_d_l__sysjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/darwin/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/darwin/~2ecvsignore.i new file mode 100644 index 0000000..ee9cb00 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/darwin/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/dc/_makefile.am.i b/SDL/.hg/store/data/src/joystick/dc/_makefile.am.i new file mode 100644 index 0000000..9c616c5 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/dc/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/dc/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/dc/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..6225049 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/dc/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/dc/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/dc/~2ecvsignore.i new file mode 100644 index 0000000..3f6541f Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/dc/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/dummy/_makefile.am.i b/SDL/.hg/store/data/src/joystick/dummy/_makefile.am.i new file mode 100644 index 0000000..ef3afad Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/dummy/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/dummy/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/dummy/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..6b6a2f4 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/dummy/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/dummy/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/dummy/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/dummy/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/emscripten/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/emscripten/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..8950137 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/emscripten/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/emscripten/_s_d_l__sysjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/emscripten/_s_d_l__sysjoystick__c.h.i new file mode 100644 index 0000000..8b0ec12 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/emscripten/_s_d_l__sysjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/haiku/_s_d_l__haikujoystick.cc.i b/SDL/.hg/store/data/src/joystick/haiku/_s_d_l__haikujoystick.cc.i new file mode 100644 index 0000000..d317af2 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/haiku/_s_d_l__haikujoystick.cc.i differ diff --git a/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l__sysjoystick.m.i b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l__sysjoystick.m.i new file mode 100644 index 0000000..6bdd19c Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l__sysjoystick.m.i differ diff --git a/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l__sysjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l__sysjoystick__c.h.i new file mode 100644 index 0000000..9f28e3e Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l__sysjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l_u_i_acceleration_delegate.h.i b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l_u_i_acceleration_delegate.h.i new file mode 100644 index 0000000..f204cb6 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l_u_i_acceleration_delegate.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l_u_i_acceleration_delegate.m.i b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l_u_i_acceleration_delegate.m.i new file mode 100644 index 0000000..523c8c4 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/iphoneos/_s_d_l_u_i_acceleration_delegate.m.i differ diff --git a/SDL/.hg/store/data/src/joystick/linux/_makefile.am.i b/SDL/.hg/store/data/src/joystick/linux/_makefile.am.i new file mode 100644 index 0000000..ee7cc2b Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/linux/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick.c.d b/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick.c.d new file mode 100644 index 0000000..9a01c94 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick.c.d differ diff --git a/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..c685be6 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick__c.h.i new file mode 100644 index 0000000..c1a772a Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/linux/_s_d_l__sysjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/linux/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/linux/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/linux/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/macos/_makefile.am.i b/SDL/.hg/store/data/src/joystick/macos/_makefile.am.i new file mode 100644 index 0000000..e1df9d4 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/macos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/macos/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/macos/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..345644b Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/macos/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/macos/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/macos/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/macos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/mint/_makefile.am.i b/SDL/.hg/store/data/src/joystick/mint/_makefile.am.i new file mode 100644 index 0000000..95e6108 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/mint/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/mint/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/mint/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..338b73b Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/mint/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/mint/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/mint/~2ecvsignore.i new file mode 100644 index 0000000..5de0da6 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/mint/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/nds/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/nds/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..4bbe898 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/nds/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/os2/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/os2/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..e0c1e8d Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/os2/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/os2/joyos2.h.i b/SDL/.hg/store/data/src/joystick/os2/joyos2.h.i new file mode 100644 index 0000000..ff9a837 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/os2/joyos2.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/psp/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/psp/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..d7e52fc Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/psp/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/riscos/_makefile.am.i b/SDL/.hg/store/data/src/joystick/riscos/_makefile.am.i new file mode 100644 index 0000000..7e20928 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/riscos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/riscos/_s_d_l__sysjoystick.c.i b/SDL/.hg/store/data/src/joystick/riscos/_s_d_l__sysjoystick.c.i new file mode 100644 index 0000000..429c2ff Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/riscos/_s_d_l__sysjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/riscos/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/riscos/~2ecvsignore.i new file mode 100644 index 0000000..a2dfb6a Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/riscos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/sort__controllers.py.i b/SDL/.hg/store/data/src/joystick/sort__controllers.py.i new file mode 100644 index 0000000..dc467e8 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/sort__controllers.py.i differ diff --git a/SDL/.hg/store/data/src/joystick/win32/_makefile.am.i b/SDL/.hg/store/data/src/joystick/win32/_makefile.am.i new file mode 100644 index 0000000..0235c6a Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/win32/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/joystick/win32/_s_d_l__dxjoystick.c.i b/SDL/.hg/store/data/src/joystick/win32/_s_d_l__dxjoystick.c.i new file mode 100644 index 0000000..ec24791 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/win32/_s_d_l__dxjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/win32/_s_d_l__dxjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/win32/_s_d_l__dxjoystick__c.h.i new file mode 100644 index 0000000..130e712 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/win32/_s_d_l__dxjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/win32/_s_d_l__mmjoystick.c.i b/SDL/.hg/store/data/src/joystick/win32/_s_d_l__mmjoystick.c.i new file mode 100644 index 0000000..95b1cff Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/win32/_s_d_l__mmjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/win32/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/win32/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/win32/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dinputjoystick.c.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dinputjoystick.c.i new file mode 100644 index 0000000..3fa505c Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dinputjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dinputjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dinputjoystick__c.h.i new file mode 100644 index 0000000..73008cc Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dinputjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dxjoystick.c.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dxjoystick.c.i new file mode 100644 index 0000000..e2a8896 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dxjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dxjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dxjoystick__c.h.i new file mode 100644 index 0000000..0c3bea1 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__dxjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__mmjoystick.c.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__mmjoystick.c.i new file mode 100644 index 0000000..1549dc5 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__mmjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__windowsjoystick.c.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__windowsjoystick.c.i new file mode 100644 index 0000000..8e39823 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__windowsjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__windowsjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__windowsjoystick__c.h.i new file mode 100644 index 0000000..01a4e28 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__windowsjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__xinputjoystick.c.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__xinputjoystick.c.i new file mode 100644 index 0000000..25d0a49 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__xinputjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/windows/_s_d_l__xinputjoystick__c.h.i b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__xinputjoystick__c.h.i new file mode 100644 index 0000000..6392398 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windows/_s_d_l__xinputjoystick__c.h.i differ diff --git a/SDL/.hg/store/data/src/joystick/windowsrt/_s_d_l__xinputjoystick.c.i b/SDL/.hg/store/data/src/joystick/windowsrt/_s_d_l__xinputjoystick.c.i new file mode 100644 index 0000000..c8b6fd2 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/windowsrt/_s_d_l__xinputjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/winrt/_s_d_l__xinputjoystick.c.i b/SDL/.hg/store/data/src/joystick/winrt/_s_d_l__xinputjoystick.c.i new file mode 100644 index 0000000..b23608c Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/winrt/_s_d_l__xinputjoystick.c.i differ diff --git a/SDL/.hg/store/data/src/joystick/~2ecvsignore.i b/SDL/.hg/store/data/src/joystick/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/joystick/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/libm/e__atan2.c.i b/SDL/.hg/store/data/src/libm/e__atan2.c.i new file mode 100644 index 0000000..91539b7 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/e__atan2.c.i differ diff --git a/SDL/.hg/store/data/src/libm/e__log.c.i b/SDL/.hg/store/data/src/libm/e__log.c.i new file mode 100644 index 0000000..c92ae3e Binary files /dev/null and b/SDL/.hg/store/data/src/libm/e__log.c.i differ diff --git a/SDL/.hg/store/data/src/libm/e__pow.c.i b/SDL/.hg/store/data/src/libm/e__pow.c.i new file mode 100644 index 0000000..6279030 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/e__pow.c.i differ diff --git a/SDL/.hg/store/data/src/libm/e__rem__pio2.c.i b/SDL/.hg/store/data/src/libm/e__rem__pio2.c.i new file mode 100644 index 0000000..4f9cc66 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/e__rem__pio2.c.i differ diff --git a/SDL/.hg/store/data/src/libm/e__sqrt.c.i b/SDL/.hg/store/data/src/libm/e__sqrt.c.i new file mode 100644 index 0000000..0943cdf Binary files /dev/null and b/SDL/.hg/store/data/src/libm/e__sqrt.c.i differ diff --git a/SDL/.hg/store/data/src/libm/k__cos.c.i b/SDL/.hg/store/data/src/libm/k__cos.c.i new file mode 100644 index 0000000..8a2fb82 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/k__cos.c.i differ diff --git a/SDL/.hg/store/data/src/libm/k__rem__pio2.c.i b/SDL/.hg/store/data/src/libm/k__rem__pio2.c.i new file mode 100644 index 0000000..d16333c Binary files /dev/null and b/SDL/.hg/store/data/src/libm/k__rem__pio2.c.i differ diff --git a/SDL/.hg/store/data/src/libm/k__sin.c.i b/SDL/.hg/store/data/src/libm/k__sin.c.i new file mode 100644 index 0000000..e3b9eb1 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/k__sin.c.i differ diff --git a/SDL/.hg/store/data/src/libm/k__tan.c.i b/SDL/.hg/store/data/src/libm/k__tan.c.i new file mode 100644 index 0000000..3ec616a Binary files /dev/null and b/SDL/.hg/store/data/src/libm/k__tan.c.i differ diff --git a/SDL/.hg/store/data/src/libm/math.h.i b/SDL/.hg/store/data/src/libm/math.h.i new file mode 100644 index 0000000..1e870ca Binary files /dev/null and b/SDL/.hg/store/data/src/libm/math.h.i differ diff --git a/SDL/.hg/store/data/src/libm/math__libm.h.i b/SDL/.hg/store/data/src/libm/math__libm.h.i new file mode 100644 index 0000000..a93b560 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/math__libm.h.i differ diff --git a/SDL/.hg/store/data/src/libm/math__private.h.i b/SDL/.hg/store/data/src/libm/math__private.h.i new file mode 100644 index 0000000..708291f Binary files /dev/null and b/SDL/.hg/store/data/src/libm/math__private.h.i differ diff --git a/SDL/.hg/store/data/src/libm/s__atan.c.i b/SDL/.hg/store/data/src/libm/s__atan.c.i new file mode 100644 index 0000000..8c2e023 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__atan.c.i differ diff --git a/SDL/.hg/store/data/src/libm/s__copysign.c.i b/SDL/.hg/store/data/src/libm/s__copysign.c.i new file mode 100644 index 0000000..2a95488 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__copysign.c.i differ diff --git a/SDL/.hg/store/data/src/libm/s__cos.c.i b/SDL/.hg/store/data/src/libm/s__cos.c.i new file mode 100644 index 0000000..a30cd25 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__cos.c.i differ diff --git a/SDL/.hg/store/data/src/libm/s__fabs.c.i b/SDL/.hg/store/data/src/libm/s__fabs.c.i new file mode 100644 index 0000000..7e766db Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__fabs.c.i differ diff --git a/SDL/.hg/store/data/src/libm/s__floor.c.i b/SDL/.hg/store/data/src/libm/s__floor.c.i new file mode 100644 index 0000000..4fd4113 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__floor.c.i differ diff --git a/SDL/.hg/store/data/src/libm/s__scalbn.c.i b/SDL/.hg/store/data/src/libm/s__scalbn.c.i new file mode 100644 index 0000000..446eca9 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__scalbn.c.i differ diff --git a/SDL/.hg/store/data/src/libm/s__sin.c.i b/SDL/.hg/store/data/src/libm/s__sin.c.i new file mode 100644 index 0000000..0881fa6 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__sin.c.i differ diff --git a/SDL/.hg/store/data/src/libm/s__tan.c.i b/SDL/.hg/store/data/src/libm/s__tan.c.i new file mode 100644 index 0000000..50a29b8 Binary files /dev/null and b/SDL/.hg/store/data/src/libm/s__tan.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/beos/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/beos/_s_d_l__loadso.c.i new file mode 100644 index 0000000..ff39429 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/beos/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/beos/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/beos/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..3c19cf9 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/beos/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/dlopen/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/dlopen/_s_d_l__loadso.c.i new file mode 100644 index 0000000..521b83b Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/dlopen/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/dlopen/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/dlopen/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..5736d87 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/dlopen/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/dummy/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/dummy/_s_d_l__loadso.c.i new file mode 100644 index 0000000..9cda031 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/dummy/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/dummy/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/dummy/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..8902a63 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/dummy/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/haiku/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/haiku/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..e900f0b Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/haiku/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/macos/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/macos/_s_d_l__loadso.c.i new file mode 100644 index 0000000..8b47275 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/macos/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/macos/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/macos/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..9c5a9e3 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/macos/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__dlcompat.c.i b/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__dlcompat.c.i new file mode 100644 index 0000000..46f6d18 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__dlcompat.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__loadso.c.i new file mode 100644 index 0000000..1485916 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..5003fb1 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/macosx/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/mint/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/mint/_s_d_l__loadso.c.i new file mode 100644 index 0000000..744bf36 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/mint/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/mint/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/mint/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..fa8936e Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/mint/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/os2/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/os2/_s_d_l__loadso.c.i new file mode 100644 index 0000000..d5d9c4a Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/os2/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/os2/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/os2/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..40f8764 Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/os2/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/win32/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/win32/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..4babaea Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/win32/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/windows/_s_d_l__loadso.c.i b/SDL/.hg/store/data/src/loadso/windows/_s_d_l__loadso.c.i new file mode 100644 index 0000000..2f4560a Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/windows/_s_d_l__loadso.c.i differ diff --git a/SDL/.hg/store/data/src/loadso/windows/_s_d_l__sysloadso.c.i b/SDL/.hg/store/data/src/loadso/windows/_s_d_l__sysloadso.c.i new file mode 100644 index 0000000..9ae43fa Binary files /dev/null and b/SDL/.hg/store/data/src/loadso/windows/_s_d_l__sysloadso.c.i differ diff --git a/SDL/.hg/store/data/src/main/_makefile.am.i b/SDL/.hg/store/data/src/main/_makefile.am.i new file mode 100644 index 0000000..8991251 Binary files /dev/null and b/SDL/.hg/store/data/src/main/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/main/android/_s_d_l__android__main.c.i b/SDL/.hg/store/data/src/main/android/_s_d_l__android__main.c.i new file mode 100644 index 0000000..b74baa5 Binary files /dev/null and b/SDL/.hg/store/data/src/main/android/_s_d_l__android__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/android/_s_d_l__android__main.cpp.i b/SDL/.hg/store/data/src/main/android/_s_d_l__android__main.cpp.i new file mode 100644 index 0000000..f9c734b Binary files /dev/null and b/SDL/.hg/store/data/src/main/android/_s_d_l__android__main.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/arch.c.i b/SDL/.hg/store/data/src/main/arch.c.i new file mode 100644 index 0000000..76ec331 Binary files /dev/null and b/SDL/.hg/store/data/src/main/arch.c.i differ diff --git a/SDL/.hg/store/data/src/main/beos/_s_d_l___b_app.h.i b/SDL/.hg/store/data/src/main/beos/_s_d_l___b_app.h.i new file mode 100644 index 0000000..4c8ab25 Binary files /dev/null and b/SDL/.hg/store/data/src/main/beos/_s_d_l___b_app.h.i differ diff --git a/SDL/.hg/store/data/src/main/beos/_s_d_l___be_app.cc.i b/SDL/.hg/store/data/src/main/beos/_s_d_l___be_app.cc.i new file mode 100644 index 0000000..d592033 Binary files /dev/null and b/SDL/.hg/store/data/src/main/beos/_s_d_l___be_app.cc.i differ diff --git a/SDL/.hg/store/data/src/main/beos/_s_d_l___be_app.h.i b/SDL/.hg/store/data/src/main/beos/_s_d_l___be_app.h.i new file mode 100644 index 0000000..137ccdc Binary files /dev/null and b/SDL/.hg/store/data/src/main/beos/_s_d_l___be_app.h.i differ diff --git a/SDL/.hg/store/data/src/main/beos/exports/_makefile.i b/SDL/.hg/store/data/src/main/beos/exports/_makefile.i new file mode 100644 index 0000000..b4f5b6f Binary files /dev/null and b/SDL/.hg/store/data/src/main/beos/exports/_makefile.i differ diff --git a/SDL/.hg/store/data/src/main/beos/exports/_s_d_l.exp.i b/SDL/.hg/store/data/src/main/beos/exports/_s_d_l.exp.i new file mode 100644 index 0000000..d3046df Binary files /dev/null and b/SDL/.hg/store/data/src/main/beos/exports/_s_d_l.exp.i differ diff --git a/SDL/.hg/store/data/src/main/beos/exports/genexp.pl.i b/SDL/.hg/store/data/src/main/beos/exports/genexp.pl.i new file mode 100644 index 0000000..30a3584 Binary files /dev/null and b/SDL/.hg/store/data/src/main/beos/exports/genexp.pl.i differ diff --git a/SDL/.hg/store/data/src/main/dummy.c.i b/SDL/.hg/store/data/src/main/dummy.c.i new file mode 100644 index 0000000..e2fa57c Binary files /dev/null and b/SDL/.hg/store/data/src/main/dummy.c.i differ diff --git a/SDL/.hg/store/data/src/main/dummy/_s_d_l__dummy__main.c.i b/SDL/.hg/store/data/src/main/dummy/_s_d_l__dummy__main.c.i new file mode 100644 index 0000000..1d93110 Binary files /dev/null and b/SDL/.hg/store/data/src/main/dummy/_s_d_l__dummy__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/epoc/_s_d_l__main.cpp.i b/SDL/.hg/store/data/src/main/epoc/_s_d_l__main.cpp.i new file mode 100644 index 0000000..b5a1ed7 Binary files /dev/null and b/SDL/.hg/store/data/src/main/epoc/_s_d_l__main.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/haiku/_s_d_l___b_app.h.i b/SDL/.hg/store/data/src/main/haiku/_s_d_l___b_app.h.i new file mode 100644 index 0000000..0626f03 Binary files /dev/null and b/SDL/.hg/store/data/src/main/haiku/_s_d_l___b_app.h.i differ diff --git a/SDL/.hg/store/data/src/main/haiku/_s_d_l___be_app.cc.i b/SDL/.hg/store/data/src/main/haiku/_s_d_l___be_app.cc.i new file mode 100644 index 0000000..762ac83 Binary files /dev/null and b/SDL/.hg/store/data/src/main/haiku/_s_d_l___be_app.cc.i differ diff --git a/SDL/.hg/store/data/src/main/haiku/_s_d_l___be_app.h.i b/SDL/.hg/store/data/src/main/haiku/_s_d_l___be_app.h.i new file mode 100644 index 0000000..63a767f Binary files /dev/null and b/SDL/.hg/store/data/src/main/haiku/_s_d_l___be_app.h.i differ diff --git a/SDL/.hg/store/data/src/main/linux/_s_d_l___qtopia__main.cc.i b/SDL/.hg/store/data/src/main/linux/_s_d_l___qtopia__main.cc.i new file mode 100644 index 0000000..4434a77 Binary files /dev/null and b/SDL/.hg/store/data/src/main/linux/_s_d_l___qtopia__main.cc.i differ diff --git a/SDL/.hg/store/data/src/main/linux/_s_d_l__main.c.i b/SDL/.hg/store/data/src/main/linux/_s_d_l__main.c.i new file mode 100644 index 0000000..f817cca Binary files /dev/null and b/SDL/.hg/store/data/src/main/linux/_s_d_l__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/macos/_makefile.am.i b/SDL/.hg/store/data/src/main/macos/_makefile.am.i new file mode 100644 index 0000000..a518665 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/main/macos/_s_d_l.r.i b/SDL/.hg/store/data/src/main/macos/_s_d_l.r.i new file mode 100644 index 0000000..2de1e98 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/_s_d_l.r.i differ diff --git a/SDL/.hg/store/data/src/main/macos/_s_d_l.shlib.r.i b/SDL/.hg/store/data/src/main/macos/_s_d_l.shlib.r.i new file mode 100644 index 0000000..9b2c9c1 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/_s_d_l.shlib.r.i differ diff --git a/SDL/.hg/store/data/src/main/macos/_s_d_l__main.c.i b/SDL/.hg/store/data/src/main/macos/_s_d_l__main.c.i new file mode 100644 index 0000000..de85ab0 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/_s_d_l__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/macos/_s_i_z_e.r.i b/SDL/.hg/store/data/src/main/macos/_s_i_z_e.r.i new file mode 100644 index 0000000..1a6e712 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/_s_i_z_e.r.i differ diff --git a/SDL/.hg/store/data/src/main/macos/exports/_makefile.i b/SDL/.hg/store/data/src/main/macos/exports/_makefile.i new file mode 100644 index 0000000..7947abf Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/exports/_makefile.i differ diff --git a/SDL/.hg/store/data/src/main/macos/exports/_s_d_l.x.i b/SDL/.hg/store/data/src/main/macos/exports/_s_d_l.x.i new file mode 100644 index 0000000..13273ea Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/exports/_s_d_l.x.i differ diff --git a/SDL/.hg/store/data/src/main/macos/exports/gendef.pl.i b/SDL/.hg/store/data/src/main/macos/exports/gendef.pl.i new file mode 100644 index 0000000..fa15fc9 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/exports/gendef.pl.i differ diff --git a/SDL/.hg/store/data/src/main/macos/~2ecvsignore.i b/SDL/.hg/store/data/src/main/macos/~2ecvsignore.i new file mode 100644 index 0000000..9d2404f Binary files /dev/null and b/SDL/.hg/store/data/src/main/macos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_info.plist.i b/SDL/.hg/store/data/src/main/macosx/_info.plist.i new file mode 100644 index 0000000..efc18a5 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_info.plist.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_info.plist.in.i b/SDL/.hg/store/data/src/main/macosx/_info.plist.in.i new file mode 100644 index 0000000..c4e202f Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_info.plist.in.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_makefile.am.i b/SDL/.hg/store/data/src/main/macosx/_makefile.am.i new file mode 100644 index 0000000..64a8fcd Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l__main.h.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l__main.h.i new file mode 100644 index 0000000..fca5f07 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l__main.h.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l__main.m.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l__main.m.i new file mode 100644 index 0000000..c30f717 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l__main.m.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.h.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.h.i new file mode 100644 index 0000000..c2f32f0 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.h.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.m.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.m.i new file mode 100644 index 0000000..e45fe98 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.m.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib.tar.gz.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib.tar.gz.i new file mode 100644 index 0000000..fae3496 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib.tar.gz.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/classes.nib.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/classes.nib.i new file mode 100644 index 0000000..e1f5c54 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/classes.nib.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/info.nib.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/info.nib.i new file mode 100644 index 0000000..861f3f5 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/info.nib.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/objects.nib.i b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/objects.nib.i new file mode 100644 index 0000000..2893423 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/_s_d_l_main.nib/objects.nib.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/exports/_makefile.i b/SDL/.hg/store/data/src/main/macosx/exports/_makefile.i new file mode 100644 index 0000000..f28fae0 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/exports/_makefile.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/exports/_s_d_l.x.i b/SDL/.hg/store/data/src/main/macosx/exports/_s_d_l.x.i new file mode 100644 index 0000000..cec2f6a Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/exports/_s_d_l.x.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/exports/gendef.pl.i b/SDL/.hg/store/data/src/main/macosx/exports/gendef.pl.i new file mode 100644 index 0000000..a921bc4 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/exports/gendef.pl.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/info.nib.i b/SDL/.hg/store/data/src/main/macosx/info.nib.i new file mode 100644 index 0000000..5b94510 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/info.nib.i differ diff --git a/SDL/.hg/store/data/src/main/macosx/~2ecvsignore.i b/SDL/.hg/store/data/src/main/macosx/~2ecvsignore.i new file mode 100644 index 0000000..d1963e2 Binary files /dev/null and b/SDL/.hg/store/data/src/main/macosx/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/main/nacl/_s_d_l__nacl__main.c.i b/SDL/.hg/store/data/src/main/nacl/_s_d_l__nacl__main.c.i new file mode 100644 index 0000000..a6057ca Binary files /dev/null and b/SDL/.hg/store/data/src/main/nacl/_s_d_l__nacl__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/psp/_s_d_l__psp__main.c.i b/SDL/.hg/store/data/src/main/psp/_s_d_l__psp__main.c.i new file mode 100644 index 0000000..726c9d1 Binary files /dev/null and b/SDL/.hg/store/data/src/main/psp/_s_d_l__psp__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/qtopia/_s_d_l__qtopia__main.cc.i b/SDL/.hg/store/data/src/main/qtopia/_s_d_l__qtopia__main.cc.i new file mode 100644 index 0000000..c837af3 Binary files /dev/null and b/SDL/.hg/store/data/src/main/qtopia/_s_d_l__qtopia__main.cc.i differ diff --git a/SDL/.hg/store/data/src/main/symbian/_e_k_a1/_s_d_l__main.cpp.i b/SDL/.hg/store/data/src/main/symbian/_e_k_a1/_s_d_l__main.cpp.i new file mode 100644 index 0000000..d0c0026 Binary files /dev/null and b/SDL/.hg/store/data/src/main/symbian/_e_k_a1/_s_d_l__main.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/symbian/_e_k_a2/_s_d_l__main.cpp.i b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/_s_d_l__main.cpp.i new file mode 100644 index 0000000..f9d7f4b Binary files /dev/null and b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/_s_d_l__main.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/symbian/_e_k_a2/sdlexe.cpp.i b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/sdlexe.cpp.i new file mode 100644 index 0000000..66c6732 Binary files /dev/null and b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/sdlexe.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/symbian/_e_k_a2/sdllib.cpp.i b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/sdllib.cpp.i new file mode 100644 index 0000000..0dca325 Binary files /dev/null and b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/sdllib.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/symbian/_e_k_a2/vectorbuffer.cpp.i b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/vectorbuffer.cpp.i new file mode 100644 index 0000000..e51ed3d Binary files /dev/null and b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/vectorbuffer.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/symbian/_e_k_a2/vectorbuffer.h.i b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/vectorbuffer.h.i new file mode 100644 index 0000000..a32bc6d Binary files /dev/null and b/SDL/.hg/store/data/src/main/symbian/_e_k_a2/vectorbuffer.h.i differ diff --git a/SDL/.hg/store/data/src/main/win32/_s_d_l__main.c.i b/SDL/.hg/store/data/src/main/win32/_s_d_l__main.c.i new file mode 100644 index 0000000..dc8c317 Binary files /dev/null and b/SDL/.hg/store/data/src/main/win32/_s_d_l__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/win32/_s_d_l__win32__main.c.i b/SDL/.hg/store/data/src/main/win32/_s_d_l__win32__main.c.i new file mode 100644 index 0000000..a2483c2 Binary files /dev/null and b/SDL/.hg/store/data/src/main/win32/_s_d_l__win32__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/win32/exports/_makefile.i b/SDL/.hg/store/data/src/main/win32/exports/_makefile.i new file mode 100644 index 0000000..fe29596 Binary files /dev/null and b/SDL/.hg/store/data/src/main/win32/exports/_makefile.i differ diff --git a/SDL/.hg/store/data/src/main/win32/exports/_s_d_l.def.i b/SDL/.hg/store/data/src/main/win32/exports/_s_d_l.def.i new file mode 100644 index 0000000..edafe16 Binary files /dev/null and b/SDL/.hg/store/data/src/main/win32/exports/_s_d_l.def.i differ diff --git a/SDL/.hg/store/data/src/main/win32/exports/gendef.pl.i b/SDL/.hg/store/data/src/main/win32/exports/gendef.pl.i new file mode 100644 index 0000000..79ea22c Binary files /dev/null and b/SDL/.hg/store/data/src/main/win32/exports/gendef.pl.i differ diff --git a/SDL/.hg/store/data/src/main/win32/version.rc.i b/SDL/.hg/store/data/src/main/win32/version.rc.i new file mode 100644 index 0000000..7c5d06f Binary files /dev/null and b/SDL/.hg/store/data/src/main/win32/version.rc.i differ diff --git a/SDL/.hg/store/data/src/main/windows/_s_d_l__windows__main.c.i b/SDL/.hg/store/data/src/main/windows/_s_d_l__windows__main.c.i new file mode 100644 index 0000000..c70db97 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windows/_s_d_l__windows__main.c.i differ diff --git a/SDL/.hg/store/data/src/main/windows/version.rc.i b/SDL/.hg/store/data/src/main/windows/version.rc.i new file mode 100644 index 0000000..8944c40 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windows/version.rc.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_basic_timer.h.i b/SDL/.hg/store/data/src/main/windowsrt/_basic_timer.h.i new file mode 100644 index 0000000..ae44ed9 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_basic_timer.h.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_cube_renderer.cpp.i b/SDL/.hg/store/data/src/main/windowsrt/_cube_renderer.cpp.i new file mode 100644 index 0000000..0ace3ab Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_cube_renderer.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_cube_renderer.h.i b/SDL/.hg/store/data/src/main/windowsrt/_cube_renderer.h.i new file mode 100644 index 0000000..c5fa6eb Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_cube_renderer.h.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_direct3_d_base.cpp.i b/SDL/.hg/store/data/src/main/windowsrt/_direct3_d_base.cpp.i new file mode 100644 index 0000000..22582f3 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_direct3_d_base.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_direct3_d_base.h.i b/SDL/.hg/store/data/src/main/windowsrt/_direct3_d_base.h.i new file mode 100644 index 0000000..1e76a78 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_direct3_d_base.h.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_direct_x_helper.h.i b/SDL/.hg/store/data/src/main/windowsrt/_direct_x_helper.h.i new file mode 100644 index 0000000..1e0b823 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_direct_x_helper.h.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_s_d_l___win_r_t_app.cpp.i b/SDL/.hg/store/data/src/main/windowsrt/_s_d_l___win_r_t_app.cpp.i new file mode 100644 index 0000000..7ddd33b Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_s_d_l___win_r_t_app.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_s_d_l___win_r_t_app.h.i b/SDL/.hg/store/data/src/main/windowsrt/_s_d_l___win_r_t_app.h.i new file mode 100644 index 0000000..037c9e3 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_s_d_l___win_r_t_app.h.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_s_d_l__winrt__main.cpp.i b/SDL/.hg/store/data/src/main/windowsrt/_s_d_l__winrt__main.cpp.i new file mode 100644 index 0000000..ea7c433 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_s_d_l__winrt__main.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_s_d_lmain___win_r_t__common.h.i b/SDL/.hg/store/data/src/main/windowsrt/_s_d_lmain___win_r_t__common.h.i new file mode 100644 index 0000000..368a162 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_s_d_lmain___win_r_t__common.h.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_simple_pixel_shader.hlsl.i b/SDL/.hg/store/data/src/main/windowsrt/_simple_pixel_shader.hlsl.i new file mode 100644 index 0000000..6636684 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_simple_pixel_shader.hlsl.i differ diff --git a/SDL/.hg/store/data/src/main/windowsrt/_simple_vertex_shader.hlsl.i b/SDL/.hg/store/data/src/main/windowsrt/_simple_vertex_shader.hlsl.i new file mode 100644 index 0000000..6a5b886 Binary files /dev/null and b/SDL/.hg/store/data/src/main/windowsrt/_simple_vertex_shader.hlsl.i differ diff --git a/SDL/.hg/store/data/src/main/winrt/_s_d_l2-_win_r_t_resource___blank_cursor.cur.i b/SDL/.hg/store/data/src/main/winrt/_s_d_l2-_win_r_t_resource___blank_cursor.cur.i new file mode 100644 index 0000000..559775c Binary files /dev/null and b/SDL/.hg/store/data/src/main/winrt/_s_d_l2-_win_r_t_resource___blank_cursor.cur.i differ diff --git a/SDL/.hg/store/data/src/main/winrt/_s_d_l2-_win_r_t_resources.rc.i b/SDL/.hg/store/data/src/main/winrt/_s_d_l2-_win_r_t_resources.rc.i new file mode 100644 index 0000000..0eb6e0c Binary files /dev/null and b/SDL/.hg/store/data/src/main/winrt/_s_d_l2-_win_r_t_resources.rc.i differ diff --git a/SDL/.hg/store/data/src/main/winrt/_s_d_l__winrt__main.cpp.i b/SDL/.hg/store/data/src/main/winrt/_s_d_l__winrt__main.cpp.i new file mode 100644 index 0000000..3012041 Binary files /dev/null and b/SDL/.hg/store/data/src/main/winrt/_s_d_l__winrt__main.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/winrt/_s_d_l__winrt__main___non_x_a_m_l.cpp.i b/SDL/.hg/store/data/src/main/winrt/_s_d_l__winrt__main___non_x_a_m_l.cpp.i new file mode 100644 index 0000000..518ed74 Binary files /dev/null and b/SDL/.hg/store/data/src/main/winrt/_s_d_l__winrt__main___non_x_a_m_l.cpp.i differ diff --git a/SDL/.hg/store/data/src/main/~2ecvsignore.i b/SDL/.hg/store/data/src/main/~2ecvsignore.i new file mode 100644 index 0000000..b7bda9d Binary files /dev/null and b/SDL/.hg/store/data/src/main/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/power/_s_d_l__power.c.i b/SDL/.hg/store/data/src/power/_s_d_l__power.c.i new file mode 100644 index 0000000..d7819ca Binary files /dev/null and b/SDL/.hg/store/data/src/power/_s_d_l__power.c.i differ diff --git a/SDL/.hg/store/data/src/power/android/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/android/_s_d_l__syspower.c.i new file mode 100644 index 0000000..b2131d4 Binary files /dev/null and b/SDL/.hg/store/data/src/power/android/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/beos/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/beos/_s_d_l__syspower.c.i new file mode 100644 index 0000000..2c0c505 Binary files /dev/null and b/SDL/.hg/store/data/src/power/beos/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/emscripten/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/emscripten/_s_d_l__syspower.c.i new file mode 100644 index 0000000..c26281b Binary files /dev/null and b/SDL/.hg/store/data/src/power/emscripten/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/haiku/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/haiku/_s_d_l__syspower.c.i new file mode 100644 index 0000000..c329abf Binary files /dev/null and b/SDL/.hg/store/data/src/power/haiku/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/linux/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/linux/_s_d_l__syspower.c.i new file mode 100644 index 0000000..cef41e9 Binary files /dev/null and b/SDL/.hg/store/data/src/power/linux/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/macosx/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/macosx/_s_d_l__syspower.c.i new file mode 100644 index 0000000..19a9548 Binary files /dev/null and b/SDL/.hg/store/data/src/power/macosx/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/nds/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/nds/_s_d_l__syspower.c.i new file mode 100644 index 0000000..b07813e Binary files /dev/null and b/SDL/.hg/store/data/src/power/nds/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/os2/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/os2/_s_d_l__syspower.c.i new file mode 100644 index 0000000..a90b6b1 Binary files /dev/null and b/SDL/.hg/store/data/src/power/os2/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/psp/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/psp/_s_d_l__syspower.c.i new file mode 100644 index 0000000..114e4db Binary files /dev/null and b/SDL/.hg/store/data/src/power/psp/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/uikit/_s_d_l__syspower.h.i b/SDL/.hg/store/data/src/power/uikit/_s_d_l__syspower.h.i new file mode 100644 index 0000000..67d530f Binary files /dev/null and b/SDL/.hg/store/data/src/power/uikit/_s_d_l__syspower.h.i differ diff --git a/SDL/.hg/store/data/src/power/uikit/_s_d_l__syspower.m.i b/SDL/.hg/store/data/src/power/uikit/_s_d_l__syspower.m.i new file mode 100644 index 0000000..debc9f0 Binary files /dev/null and b/SDL/.hg/store/data/src/power/uikit/_s_d_l__syspower.m.i differ diff --git a/SDL/.hg/store/data/src/power/windows/_s_d_l__syspower.c.i b/SDL/.hg/store/data/src/power/windows/_s_d_l__syspower.c.i new file mode 100644 index 0000000..ab9794b Binary files /dev/null and b/SDL/.hg/store/data/src/power/windows/_s_d_l__syspower.c.i differ diff --git a/SDL/.hg/store/data/src/power/winrt/_s_d_l__syspower.cpp.i b/SDL/.hg/store/data/src/power/winrt/_s_d_l__syspower.cpp.i new file mode 100644 index 0000000..8ff6cd6 Binary files /dev/null and b/SDL/.hg/store/data/src/power/winrt/_s_d_l__syspower.cpp.i differ diff --git a/SDL/.hg/store/data/src/render/_s_d_l__d3dmath.c.i b/SDL/.hg/store/data/src/render/_s_d_l__d3dmath.c.i new file mode 100644 index 0000000..82cc8af Binary files /dev/null and b/SDL/.hg/store/data/src/render/_s_d_l__d3dmath.c.i differ diff --git a/SDL/.hg/store/data/src/render/_s_d_l__d3dmath.h.i b/SDL/.hg/store/data/src/render/_s_d_l__d3dmath.h.i new file mode 100644 index 0000000..7525c16 Binary files /dev/null and b/SDL/.hg/store/data/src/render/_s_d_l__d3dmath.h.i differ diff --git a/SDL/.hg/store/data/src/render/_s_d_l__render.c.i b/SDL/.hg/store/data/src/render/_s_d_l__render.c.i new file mode 100644 index 0000000..41367e5 Binary files /dev/null and b/SDL/.hg/store/data/src/render/_s_d_l__render.c.i differ diff --git a/SDL/.hg/store/data/src/render/_s_d_l__sysrender.h.i b/SDL/.hg/store/data/src/render/_s_d_l__sysrender.h.i new file mode 100644 index 0000000..3bfea05 Binary files /dev/null and b/SDL/.hg/store/data/src/render/_s_d_l__sysrender.h.i differ diff --git a/SDL/.hg/store/data/src/render/_s_d_l__yuv__mmx.c.i b/SDL/.hg/store/data/src/render/_s_d_l__yuv__mmx.c.i new file mode 100644 index 0000000..512957b Binary files /dev/null and b/SDL/.hg/store/data/src/render/_s_d_l__yuv__mmx.c.i differ diff --git a/SDL/.hg/store/data/src/render/_s_d_l__yuv__sw.c.i b/SDL/.hg/store/data/src/render/_s_d_l__yuv__sw.c.i new file mode 100644 index 0000000..2d04f82 Binary files /dev/null and b/SDL/.hg/store/data/src/render/_s_d_l__yuv__sw.c.i differ diff --git a/SDL/.hg/store/data/src/render/_s_d_l__yuv__sw__c.h.i b/SDL/.hg/store/data/src/render/_s_d_l__yuv__sw__c.h.i new file mode 100644 index 0000000..7e5cce0 Binary files /dev/null and b/SDL/.hg/store/data/src/render/_s_d_l__yuv__sw__c.h.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d/_s_d_l__d3drender.c.i b/SDL/.hg/store/data/src/render/direct3d/_s_d_l__d3drender.c.i new file mode 100644 index 0000000..97e3c7a Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d/_s_d_l__d3drender.c.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d/_s_d_l__render__d3d.c.i b/SDL/.hg/store/data/src/render/direct3d/_s_d_l__render__d3d.c.i new file mode 100644 index 0000000..934ce5d Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d/_s_d_l__render__d3d.c.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___fixed_color.hlsl.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___fixed_color.hlsl.i new file mode 100644 index 0000000..df21f9d Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___fixed_color.hlsl.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___texture_colored.hlsl.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___texture_colored.hlsl.i new file mode 100644 index 0000000..e279f95 Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___texture_colored.hlsl.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___texture_copy.hlsl.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___texture_copy.hlsl.i new file mode 100644 index 0000000..7334757 Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___pixel_shader___texture_copy.hlsl.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___vertex_shader___default.hlsl.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___vertex_shader___default.hlsl.i new file mode 100644 index 0000000..f9303e9 Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l___d3_d11___vertex_shader___default.hlsl.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11.c.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11.c.i new file mode 100644 index 0000000..e7bad96 Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11.c.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11.cpp.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11.cpp.i new file mode 100644 index 0000000..fb74930 Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11.cpp.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__cpp.h.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__cpp.h.i new file mode 100644 index 0000000..86b734a Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__cpp.h.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__winrthelpers.cpp.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__winrthelpers.cpp.i new file mode 100644 index 0000000..737696c Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__winrthelpers.cpp.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__winrthelpers__cpp.h.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__winrthelpers__cpp.h.i new file mode 100644 index 0000000..4bab762 Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__d3d11__winrthelpers__cpp.h.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__winrt.cpp.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__winrt.cpp.i new file mode 100644 index 0000000..9e716c1 Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__winrt.cpp.i differ diff --git a/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__winrt.h.i b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__winrt.h.i new file mode 100644 index 0000000..b44f69e Binary files /dev/null and b/SDL/.hg/store/data/src/render/direct3d11/_s_d_l__render__winrt.h.i differ diff --git a/SDL/.hg/store/data/src/render/mmx.h.i b/SDL/.hg/store/data/src/render/mmx.h.i new file mode 100644 index 0000000..7d1ca31 Binary files /dev/null and b/SDL/.hg/store/data/src/render/mmx.h.i differ diff --git a/SDL/.hg/store/data/src/render/nds/_s_d_l__libgl2_d.c.i b/SDL/.hg/store/data/src/render/nds/_s_d_l__libgl2_d.c.i new file mode 100644 index 0000000..530e61a Binary files /dev/null and b/SDL/.hg/store/data/src/render/nds/_s_d_l__libgl2_d.c.i differ diff --git a/SDL/.hg/store/data/src/render/nds/_s_d_l__libgl2_d.h.i b/SDL/.hg/store/data/src/render/nds/_s_d_l__libgl2_d.h.i new file mode 100644 index 0000000..5e917c4 Binary files /dev/null and b/SDL/.hg/store/data/src/render/nds/_s_d_l__libgl2_d.h.i differ diff --git a/SDL/.hg/store/data/src/render/nds/_s_d_l__ndsrender.c.i b/SDL/.hg/store/data/src/render/nds/_s_d_l__ndsrender.c.i new file mode 100644 index 0000000..a19f600 Binary files /dev/null and b/SDL/.hg/store/data/src/render/nds/_s_d_l__ndsrender.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengl/_s_d_l__glfuncs.h.i b/SDL/.hg/store/data/src/render/opengl/_s_d_l__glfuncs.h.i new file mode 100644 index 0000000..89d87f6 Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengl/_s_d_l__glfuncs.h.i differ diff --git a/SDL/.hg/store/data/src/render/opengl/_s_d_l__render__gl.c.i b/SDL/.hg/store/data/src/render/opengl/_s_d_l__render__gl.c.i new file mode 100644 index 0000000..b79c480 Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengl/_s_d_l__render__gl.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengl/_s_d_l__renderer__gl.c.i b/SDL/.hg/store/data/src/render/opengl/_s_d_l__renderer__gl.c.i new file mode 100644 index 0000000..95ac94d Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengl/_s_d_l__renderer__gl.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengl/_s_d_l__shaders__gl.c.i b/SDL/.hg/store/data/src/render/opengl/_s_d_l__shaders__gl.c.i new file mode 100644 index 0000000..03da97b Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengl/_s_d_l__shaders__gl.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengl/_s_d_l__shaders__gl.h.i b/SDL/.hg/store/data/src/render/opengl/_s_d_l__shaders__gl.h.i new file mode 100644 index 0000000..41e9295 Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengl/_s_d_l__shaders__gl.h.i differ diff --git a/SDL/.hg/store/data/src/render/opengles/_s_d_l__glesfuncs.h.i b/SDL/.hg/store/data/src/render/opengles/_s_d_l__glesfuncs.h.i new file mode 100644 index 0000000..3f651df Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengles/_s_d_l__glesfuncs.h.i differ diff --git a/SDL/.hg/store/data/src/render/opengles/_s_d_l__render__gles.c.i b/SDL/.hg/store/data/src/render/opengles/_s_d_l__render__gles.c.i new file mode 100644 index 0000000..4eb72e6 Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengles/_s_d_l__render__gles.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengles/_s_d_l__renderer__gles.c.i b/SDL/.hg/store/data/src/render/opengles/_s_d_l__renderer__gles.c.i new file mode 100644 index 0000000..69a1fe1 Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengles/_s_d_l__renderer__gles.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengles2/_s_d_l__gles2funcs.h.i b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__gles2funcs.h.i new file mode 100644 index 0000000..4646dd8 Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__gles2funcs.h.i differ diff --git a/SDL/.hg/store/data/src/render/opengles2/_s_d_l__render__gles2.c.i b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__render__gles2.c.i new file mode 100644 index 0000000..b441303 Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__render__gles2.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengles2/_s_d_l__shaders__gles2.c.i b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__shaders__gles2.c.i new file mode 100644 index 0000000..e16fe1d Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__shaders__gles2.c.i differ diff --git a/SDL/.hg/store/data/src/render/opengles2/_s_d_l__shaders__gles2.h.i b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__shaders__gles2.h.i new file mode 100644 index 0000000..f07266b Binary files /dev/null and b/SDL/.hg/store/data/src/render/opengles2/_s_d_l__shaders__gles2.h.i differ diff --git a/SDL/.hg/store/data/src/render/psp/_s_d_l__render__psp.c.i b/SDL/.hg/store/data/src/render/psp/_s_d_l__render__psp.c.i new file mode 100644 index 0000000..8c61882 Binary files /dev/null and b/SDL/.hg/store/data/src/render/psp/_s_d_l__render__psp.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__blendfillrect.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__blendfillrect.c.i new file mode 100644 index 0000000..f88fae4 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__blendfillrect.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__blendfillrect.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__blendfillrect.h.i new file mode 100644 index 0000000..203fa27 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__blendfillrect.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__blendline.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__blendline.c.i new file mode 100644 index 0000000..fe29aaa Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__blendline.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__blendline.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__blendline.h.i new file mode 100644 index 0000000..260f70d Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__blendline.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__blendpoint.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__blendpoint.c.i new file mode 100644 index 0000000..d955faf Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__blendpoint.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__blendpoint.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__blendpoint.h.i new file mode 100644 index 0000000..9a6d713 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__blendpoint.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__draw.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__draw.h.i new file mode 100644 index 0000000..b446703 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__draw.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__drawline.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__drawline.c.i new file mode 100644 index 0000000..84ee558 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__drawline.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__drawline.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__drawline.h.i new file mode 100644 index 0000000..c4507ca Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__drawline.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__drawpoint.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__drawpoint.c.i new file mode 100644 index 0000000..b0146d2 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__drawpoint.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__drawpoint.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__drawpoint.h.i new file mode 100644 index 0000000..d29d19c Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__drawpoint.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__render__sw.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__render__sw.c.i new file mode 100644 index 0000000..18eb116 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__render__sw.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__render__sw__c.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__render__sw__c.h.i new file mode 100644 index 0000000..d7510a2 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__render__sw__c.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__renderer__sw.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__renderer__sw.c.i new file mode 100644 index 0000000..1da3694 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__renderer__sw.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__renderer__sw__c.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__renderer__sw__c.h.i new file mode 100644 index 0000000..2af21e1 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__renderer__sw__c.h.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__rotate.c.i b/SDL/.hg/store/data/src/render/software/_s_d_l__rotate.c.i new file mode 100644 index 0000000..6106efe Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__rotate.c.i differ diff --git a/SDL/.hg/store/data/src/render/software/_s_d_l__rotate.h.i b/SDL/.hg/store/data/src/render/software/_s_d_l__rotate.h.i new file mode 100644 index 0000000..cbc5669 Binary files /dev/null and b/SDL/.hg/store/data/src/render/software/_s_d_l__rotate.h.i differ diff --git a/SDL/.hg/store/data/src/stdlib/_makefile.am.i b/SDL/.hg/store/data/src/stdlib/_makefile.am.i new file mode 100644 index 0000000..cab34a9 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/stdlib/_s_d_l__getenv.c.i b/SDL/.hg/store/data/src/stdlib/_s_d_l__getenv.c.i new file mode 100644 index 0000000..170624b Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_s_d_l__getenv.c.i differ diff --git a/SDL/.hg/store/data/src/stdlib/_s_d_l__iconv.c.i b/SDL/.hg/store/data/src/stdlib/_s_d_l__iconv.c.i new file mode 100644 index 0000000..4a5c6e1 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_s_d_l__iconv.c.i differ diff --git a/SDL/.hg/store/data/src/stdlib/_s_d_l__malloc.c.d b/SDL/.hg/store/data/src/stdlib/_s_d_l__malloc.c.d new file mode 100644 index 0000000..2057933 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_s_d_l__malloc.c.d differ diff --git a/SDL/.hg/store/data/src/stdlib/_s_d_l__malloc.c.i b/SDL/.hg/store/data/src/stdlib/_s_d_l__malloc.c.i new file mode 100644 index 0000000..ec48113 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_s_d_l__malloc.c.i differ diff --git a/SDL/.hg/store/data/src/stdlib/_s_d_l__qsort.c.i b/SDL/.hg/store/data/src/stdlib/_s_d_l__qsort.c.i new file mode 100644 index 0000000..0110637 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_s_d_l__qsort.c.i differ diff --git a/SDL/.hg/store/data/src/stdlib/_s_d_l__stdlib.c.i b/SDL/.hg/store/data/src/stdlib/_s_d_l__stdlib.c.i new file mode 100644 index 0000000..4822b89 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_s_d_l__stdlib.c.i differ diff --git a/SDL/.hg/store/data/src/stdlib/_s_d_l__string.c.i b/SDL/.hg/store/data/src/stdlib/_s_d_l__string.c.i new file mode 100644 index 0000000..0dcf689 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/_s_d_l__string.c.i differ diff --git a/SDL/.hg/store/data/src/stdlib/~2ecvsignore.i b/SDL/.hg/store/data/src/stdlib/~2ecvsignore.i new file mode 100644 index 0000000..04b1e21 Binary files /dev/null and b/SDL/.hg/store/data/src/stdlib/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__assert.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__assert.c.i new file mode 100644 index 0000000..a65a105 Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__assert.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__common.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__common.c.i new file mode 100644 index 0000000..9de8af4 Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__common.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__compare.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__compare.c.i new file mode 100644 index 0000000..d4039bd Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__compare.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__crc32.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__crc32.c.i new file mode 100644 index 0000000..b3768bc Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__crc32.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__font.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__font.c.i new file mode 100644 index 0000000..d1fd225 Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__font.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__fuzzer.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__fuzzer.c.i new file mode 100644 index 0000000..27ea565 Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__fuzzer.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__harness.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__harness.c.i new file mode 100644 index 0000000..4d6a684 Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__harness.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__image_blit.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__image_blit.c.i new file mode 100644 index 0000000..f9b37ba Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__image_blit.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__image_blit_blend.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__image_blit_blend.c.i new file mode 100644 index 0000000..fcafc2a Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__image_blit_blend.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__image_face.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__image_face.c.i new file mode 100644 index 0000000..24eb6f8 Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__image_face.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__image_primitives.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__image_primitives.c.i new file mode 100644 index 0000000..9c4e0fc Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__image_primitives.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__image_primitives_blend.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__image_primitives_blend.c.i new file mode 100644 index 0000000..e3455ea Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__image_primitives_blend.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__log.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__log.c.i new file mode 100644 index 0000000..0d04b4b Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__log.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__md5.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__md5.c.i new file mode 100644 index 0000000..4c17fe5 Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__md5.c.i differ diff --git a/SDL/.hg/store/data/src/test/_s_d_l__test__random.c.i b/SDL/.hg/store/data/src/test/_s_d_l__test__random.c.i new file mode 100644 index 0000000..47c85cb Binary files /dev/null and b/SDL/.hg/store/data/src/test/_s_d_l__test__random.c.i differ diff --git a/SDL/.hg/store/data/src/thread/_makefile.am.i b/SDL/.hg/store/data/src/thread/_makefile.am.i new file mode 100644 index 0000000..be7e693 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/thread/_makefile.wat.i b/SDL/.hg/store/data/src/thread/_makefile.wat.i new file mode 100644 index 0000000..f014302 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/thread/_s_d_l__systhread.h.i b/SDL/.hg/store/data/src/thread/_s_d_l__systhread.h.i new file mode 100644 index 0000000..7f26e84 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/_s_d_l__systhread.h.i differ diff --git a/SDL/.hg/store/data/src/thread/_s_d_l__thread.c.i b/SDL/.hg/store/data/src/thread/_s_d_l__thread.c.i new file mode 100644 index 0000000..722712f Binary files /dev/null and b/SDL/.hg/store/data/src/thread/_s_d_l__thread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/_s_d_l__thread__c.h.i b/SDL/.hg/store/data/src/thread/_s_d_l__thread__c.h.i new file mode 100644 index 0000000..3f8a525 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/_s_d_l__thread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__syssem.c.i new file mode 100644 index 0000000..0af91e7 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__systhread.c.i new file mode 100644 index 0000000..20a52b6 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..97e93a8 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__thread.c.i b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__thread.c.i new file mode 100644 index 0000000..4de70f7 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/amigaos/_s_d_l__thread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/beos/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/beos/_s_d_l__syssem.c.i new file mode 100644 index 0000000..b9f183c Binary files /dev/null and b/SDL/.hg/store/data/src/thread/beos/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/beos/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/beos/_s_d_l__systhread.c.i new file mode 100644 index 0000000..8f163cc Binary files /dev/null and b/SDL/.hg/store/data/src/thread/beos/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/beos/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/beos/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..41fb8d4 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/beos/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/beos/_s_d_l__systls.c.i b/SDL/.hg/store/data/src/thread/beos/_s_d_l__systls.c.i new file mode 100644 index 0000000..9ffe13c Binary files /dev/null and b/SDL/.hg/store/data/src/thread/beos/_s_d_l__systls.c.i differ diff --git a/SDL/.hg/store/data/src/thread/bsdi/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/bsdi/_s_d_l__syssem.c.i new file mode 100644 index 0000000..083facc Binary files /dev/null and b/SDL/.hg/store/data/src/thread/bsdi/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syscond.c.i new file mode 100644 index 0000000..1f1578a Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__syscond__c.h.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syscond__c.h.i new file mode 100644 index 0000000..ea74c88 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syscond__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..b15a488 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..ea74c88 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syssem.c.i new file mode 100644 index 0000000..6e3d912 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__syssem__c.h.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syssem__c.h.i new file mode 100644 index 0000000..ea74c88 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__syssem__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__systhread.c.i new file mode 100644 index 0000000..304892f Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/dc/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/dc/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..b1d9f64 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/dc/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/epoc/_s_d_l__sysmutex.cpp.i b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__sysmutex.cpp.i new file mode 100644 index 0000000..ab2e04a Binary files /dev/null and b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__sysmutex.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/epoc/_s_d_l__syssem.cpp.i b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__syssem.cpp.i new file mode 100644 index 0000000..ba79629 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__syssem.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/epoc/_s_d_l__systhread.cpp.i b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__systhread.cpp.i new file mode 100644 index 0000000..065f3a8 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__systhread.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/epoc/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..87a543c Binary files /dev/null and b/SDL/.hg/store/data/src/thread/epoc/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syscond.c.i new file mode 100644 index 0000000..a7990e2 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__syscond__c.h.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syscond__c.h.i new file mode 100644 index 0000000..8fdf437 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syscond__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..f3b1c93 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..6c2b224 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syssem.c.i new file mode 100644 index 0000000..de14c49 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__syssem__c.h.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syssem__c.h.i new file mode 100644 index 0000000..8fdf437 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__syssem__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__systhread.c.i new file mode 100644 index 0000000..5303970 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..10a35d7 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/generic/_s_d_l__systls.c.i b/SDL/.hg/store/data/src/thread/generic/_s_d_l__systls.c.i new file mode 100644 index 0000000..dd698b7 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/generic/_s_d_l__systls.c.i differ diff --git a/SDL/.hg/store/data/src/thread/irix/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/irix/_s_d_l__syssem.c.i new file mode 100644 index 0000000..6b8c47a Binary files /dev/null and b/SDL/.hg/store/data/src/thread/irix/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/irix/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/irix/_s_d_l__systhread.c.i new file mode 100644 index 0000000..37558b6 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/irix/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/irix/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/irix/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..f80fb38 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/irix/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/linux/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/linux/_s_d_l__syscond.c.i new file mode 100644 index 0000000..5b53759 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/linux/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/linux/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/linux/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..a8718b7 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/linux/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/linux/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/linux/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..4e49580 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/linux/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/linux/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/linux/_s_d_l__syssem.c.i new file mode 100644 index 0000000..aed5a7f Binary files /dev/null and b/SDL/.hg/store/data/src/thread/linux/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/linux/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/linux/_s_d_l__systhread.c.i new file mode 100644 index 0000000..e2f9424 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/linux/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/linux/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/linux/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..1b33ee0 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/linux/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/linux/clone._s.i b/SDL/.hg/store/data/src/thread/linux/clone._s.i new file mode 100644 index 0000000..96bdafe Binary files /dev/null and b/SDL/.hg/store/data/src/thread/linux/clone._s.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syscond.c.i new file mode 100644 index 0000000..71ae401 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__syscond__c.h.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syscond__c.h.i new file mode 100644 index 0000000..b898b17 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syscond__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..270d12a Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..b75220f Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syssem.c.i new file mode 100644 index 0000000..00fa69e Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__syssem__c.h.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syssem__c.h.i new file mode 100644 index 0000000..c6940dd Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__syssem__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__systhread.c.i new file mode 100644 index 0000000..ec1f6b5 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/nds/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/nds/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..e661389 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/nds/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/os2/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/os2/_s_d_l__syscond.c.i new file mode 100644 index 0000000..5c59744 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/os2/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/os2/_s_d_l__syscond__c.h.i b/SDL/.hg/store/data/src/thread/os2/_s_d_l__syscond__c.h.i new file mode 100644 index 0000000..5a117a8 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/os2/_s_d_l__syscond__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/os2/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/os2/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..d59404b Binary files /dev/null and b/SDL/.hg/store/data/src/thread/os2/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/os2/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/os2/_s_d_l__syssem.c.i new file mode 100644 index 0000000..7a98b5f Binary files /dev/null and b/SDL/.hg/store/data/src/thread/os2/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/os2/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/os2/_s_d_l__systhread.c.i new file mode 100644 index 0000000..15867b9 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/os2/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/os2/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/os2/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..b0f4c4f Binary files /dev/null and b/SDL/.hg/store/data/src/thread/os2/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/psp/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/psp/_s_d_l__syscond.c.i new file mode 100644 index 0000000..b75819b Binary files /dev/null and b/SDL/.hg/store/data/src/thread/psp/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/psp/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/psp/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..831c5a2 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/psp/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/psp/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/psp/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..13ef429 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/psp/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/psp/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/psp/_s_d_l__syssem.c.i new file mode 100644 index 0000000..6b2e3d9 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/psp/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/psp/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/psp/_s_d_l__systhread.c.i new file mode 100644 index 0000000..3241add Binary files /dev/null and b/SDL/.hg/store/data/src/thread/psp/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/psp/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/psp/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..01439a0 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/psp/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/pth/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/pth/_s_d_l__syscond.c.i new file mode 100644 index 0000000..61ca281 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pth/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/pth/_s_d_l__syscond__c.h.i b/SDL/.hg/store/data/src/thread/pth/_s_d_l__syscond__c.h.i new file mode 100644 index 0000000..223ecfc Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pth/_s_d_l__syscond__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/pth/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/pth/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..112ab15 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pth/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/pth/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/pth/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..9ea20b5 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pth/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/pth/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/pth/_s_d_l__systhread.c.i new file mode 100644 index 0000000..b8af349 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pth/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/pth/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/pth/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..236ef6e Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pth/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/pthread/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__syscond.c.i new file mode 100644 index 0000000..925e766 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/pthread/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..72e2b18 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/pthread/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..6cb5292 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/pthread/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__syssem.c.i new file mode 100644 index 0000000..ed8fe61 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systhread.c.i new file mode 100644 index 0000000..41e6887 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..18655eb Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systls.c.i b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systls.c.i new file mode 100644 index 0000000..7c42875 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/pthread/_s_d_l__systls.c.i differ diff --git a/SDL/.hg/store/data/src/thread/riscos/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__syscond.c.i new file mode 100644 index 0000000..77e2503 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/riscos/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..899ccf2 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/riscos/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..941ecc9 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/riscos/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__syssem.c.i new file mode 100644 index 0000000..f9e33ed Binary files /dev/null and b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/riscos/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__systhread.c.i new file mode 100644 index 0000000..7fff28d Binary files /dev/null and b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/riscos/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..6c04a04 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/riscos/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__syscond.c.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__syscond.c.i new file mode 100644 index 0000000..18163c9 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__syscond.c.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__syscond.cpp.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__syscond.cpp.i new file mode 100644 index 0000000..d9046b3 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__syscond.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..3824879 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex.cpp.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex.cpp.i new file mode 100644 index 0000000..3a7b08d Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex__c.h.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex__c.h.i new file mode 100644 index 0000000..912c86c Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__sysmutex__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread.c.i new file mode 100644 index 0000000..4d65858 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread.cpp.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread.cpp.i new file mode 100644 index 0000000..ed89c7e Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..13bcab2 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/stdcpp/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/symbian/_s_d_l__sysmutex.cpp.i b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__sysmutex.cpp.i new file mode 100644 index 0000000..64db744 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__sysmutex.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/symbian/_s_d_l__syssem.cpp.i b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__syssem.cpp.i new file mode 100644 index 0000000..cfa603b Binary files /dev/null and b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__syssem.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/symbian/_s_d_l__systhread.cpp.i b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__systhread.cpp.i new file mode 100644 index 0000000..5159fc2 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__systhread.cpp.i differ diff --git a/SDL/.hg/store/data/src/thread/symbian/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..5db19d8 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/symbian/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/win32/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/win32/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..d1d7a3b Binary files /dev/null and b/SDL/.hg/store/data/src/thread/win32/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/win32/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/win32/_s_d_l__syssem.c.i new file mode 100644 index 0000000..df262a1 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/win32/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/win32/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/win32/_s_d_l__systhread.c.i new file mode 100644 index 0000000..fbb35bb Binary files /dev/null and b/SDL/.hg/store/data/src/thread/win32/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/win32/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/win32/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..79b029d Binary files /dev/null and b/SDL/.hg/store/data/src/thread/win32/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/win32/win__ce__semaphore.c.i b/SDL/.hg/store/data/src/thread/win32/win__ce__semaphore.c.i new file mode 100644 index 0000000..b0a5755 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/win32/win__ce__semaphore.c.i differ diff --git a/SDL/.hg/store/data/src/thread/win32/win__ce__semaphore.h.i b/SDL/.hg/store/data/src/thread/win32/win__ce__semaphore.h.i new file mode 100644 index 0000000..7860782 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/win32/win__ce__semaphore.h.i differ diff --git a/SDL/.hg/store/data/src/thread/windows/_s_d_l__sysmutex.c.i b/SDL/.hg/store/data/src/thread/windows/_s_d_l__sysmutex.c.i new file mode 100644 index 0000000..b31fcf8 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/windows/_s_d_l__sysmutex.c.i differ diff --git a/SDL/.hg/store/data/src/thread/windows/_s_d_l__syssem.c.i b/SDL/.hg/store/data/src/thread/windows/_s_d_l__syssem.c.i new file mode 100644 index 0000000..3f0d908 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/windows/_s_d_l__syssem.c.i differ diff --git a/SDL/.hg/store/data/src/thread/windows/_s_d_l__systhread.c.i b/SDL/.hg/store/data/src/thread/windows/_s_d_l__systhread.c.i new file mode 100644 index 0000000..ab54954 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/windows/_s_d_l__systhread.c.i differ diff --git a/SDL/.hg/store/data/src/thread/windows/_s_d_l__systhread__c.h.i b/SDL/.hg/store/data/src/thread/windows/_s_d_l__systhread__c.h.i new file mode 100644 index 0000000..c5e8a78 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/windows/_s_d_l__systhread__c.h.i differ diff --git a/SDL/.hg/store/data/src/thread/windows/_s_d_l__systls.c.i b/SDL/.hg/store/data/src/thread/windows/_s_d_l__systls.c.i new file mode 100644 index 0000000..894b8c4 Binary files /dev/null and b/SDL/.hg/store/data/src/thread/windows/_s_d_l__systls.c.i differ diff --git a/SDL/.hg/store/data/src/thread/windows/win__ce__semaphore.c.i b/SDL/.hg/store/data/src/thread/windows/win__ce__semaphore.c.i new file mode 100644 index 0000000..b7d0a6c Binary files /dev/null and b/SDL/.hg/store/data/src/thread/windows/win__ce__semaphore.c.i differ diff --git a/SDL/.hg/store/data/src/thread/windows/win__ce__semaphore.h.i b/SDL/.hg/store/data/src/thread/windows/win__ce__semaphore.h.i new file mode 100644 index 0000000..4948fbe Binary files /dev/null and b/SDL/.hg/store/data/src/thread/windows/win__ce__semaphore.h.i differ diff --git a/SDL/.hg/store/data/src/thread/~2ecvsignore.i b/SDL/.hg/store/data/src/thread/~2ecvsignore.i new file mode 100644 index 0000000..17fbd2c Binary files /dev/null and b/SDL/.hg/store/data/src/thread/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/timer/_makefile.am.i b/SDL/.hg/store/data/src/timer/_makefile.am.i new file mode 100644 index 0000000..6b6b6fe Binary files /dev/null and b/SDL/.hg/store/data/src/timer/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/timer/_makefile.wat.i b/SDL/.hg/store/data/src/timer/_makefile.wat.i new file mode 100644 index 0000000..6aeb380 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/timer/_s_d_l__systimer.h.i b/SDL/.hg/store/data/src/timer/_s_d_l__systimer.h.i new file mode 100644 index 0000000..285364d Binary files /dev/null and b/SDL/.hg/store/data/src/timer/_s_d_l__systimer.h.i differ diff --git a/SDL/.hg/store/data/src/timer/_s_d_l__timer.c.i b/SDL/.hg/store/data/src/timer/_s_d_l__timer.c.i new file mode 100644 index 0000000..6a92aef Binary files /dev/null and b/SDL/.hg/store/data/src/timer/_s_d_l__timer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/_s_d_l__timer__c.h.i b/SDL/.hg/store/data/src/timer/_s_d_l__timer__c.h.i new file mode 100644 index 0000000..856e4f8 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/_s_d_l__timer__c.h.i differ diff --git a/SDL/.hg/store/data/src/timer/amigaos/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/amigaos/_s_d_l__systimer.c.i new file mode 100644 index 0000000..f05ce03 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/amigaos/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/beos/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/beos/_s_d_l__systimer.c.i new file mode 100644 index 0000000..bb1020e Binary files /dev/null and b/SDL/.hg/store/data/src/timer/beos/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/dc/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/dc/_s_d_l__systimer.c.i new file mode 100644 index 0000000..73e34bb Binary files /dev/null and b/SDL/.hg/store/data/src/timer/dc/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/dummy/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/dummy/_s_d_l__systimer.c.i new file mode 100644 index 0000000..11b75e7 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/dummy/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/epoc/_s_d_l__systimer.cpp.i b/SDL/.hg/store/data/src/timer/epoc/_s_d_l__systimer.cpp.i new file mode 100644 index 0000000..a2b75b0 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/epoc/_s_d_l__systimer.cpp.i differ diff --git a/SDL/.hg/store/data/src/timer/haiku/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/haiku/_s_d_l__systimer.c.i new file mode 100644 index 0000000..d79e30c Binary files /dev/null and b/SDL/.hg/store/data/src/timer/haiku/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/linux/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/linux/_s_d_l__systimer.c.i new file mode 100644 index 0000000..c7083cf Binary files /dev/null and b/SDL/.hg/store/data/src/timer/linux/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/macos/_fast_times.c.i b/SDL/.hg/store/data/src/timer/macos/_fast_times.c.i new file mode 100644 index 0000000..ea9faea Binary files /dev/null and b/SDL/.hg/store/data/src/timer/macos/_fast_times.c.i differ diff --git a/SDL/.hg/store/data/src/timer/macos/_fast_times.h.i b/SDL/.hg/store/data/src/timer/macos/_fast_times.h.i new file mode 100644 index 0000000..dad2dbe Binary files /dev/null and b/SDL/.hg/store/data/src/timer/macos/_fast_times.h.i differ diff --git a/SDL/.hg/store/data/src/timer/macos/_s_d_l___m_p_wtimer.c.i b/SDL/.hg/store/data/src/timer/macos/_s_d_l___m_p_wtimer.c.i new file mode 100644 index 0000000..4e0b8c0 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/macos/_s_d_l___m_p_wtimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/macos/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/macos/_s_d_l__systimer.c.i new file mode 100644 index 0000000..4a30333 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/macos/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/mint/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/mint/_s_d_l__systimer.c.i new file mode 100644 index 0000000..5d57225 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/mint/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/mint/_s_d_l__vbltimer._s.i b/SDL/.hg/store/data/src/timer/mint/_s_d_l__vbltimer._s.i new file mode 100644 index 0000000..a432701 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/mint/_s_d_l__vbltimer._s.i differ diff --git a/SDL/.hg/store/data/src/timer/mint/_s_d_l__vbltimer__s.h.i b/SDL/.hg/store/data/src/timer/mint/_s_d_l__vbltimer__s.h.i new file mode 100644 index 0000000..f372299 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/mint/_s_d_l__vbltimer__s.h.i differ diff --git a/SDL/.hg/store/data/src/timer/nds/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/nds/_s_d_l__systimer.c.i new file mode 100644 index 0000000..fabc4e1 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/nds/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/os2/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/os2/_s_d_l__systimer.c.i new file mode 100644 index 0000000..6e1e95d Binary files /dev/null and b/SDL/.hg/store/data/src/timer/os2/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/psp/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/psp/_s_d_l__systimer.c.i new file mode 100644 index 0000000..a688bd1 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/psp/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/riscos/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/riscos/_s_d_l__systimer.c.i new file mode 100644 index 0000000..0a6e40b Binary files /dev/null and b/SDL/.hg/store/data/src/timer/riscos/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/symbian/_s_d_l__systimer.cpp.i b/SDL/.hg/store/data/src/timer/symbian/_s_d_l__systimer.cpp.i new file mode 100644 index 0000000..6e0d1e2 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/symbian/_s_d_l__systimer.cpp.i differ diff --git a/SDL/.hg/store/data/src/timer/unix/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/unix/_s_d_l__systimer.c.i new file mode 100644 index 0000000..69fab94 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/unix/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/win32/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/win32/_s_d_l__systimer.c.i new file mode 100644 index 0000000..a931d76 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/win32/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/wince/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/wince/_s_d_l__systimer.c.i new file mode 100644 index 0000000..fda75a3 Binary files /dev/null and b/SDL/.hg/store/data/src/timer/wince/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/windows/_s_d_l__systimer.c.i b/SDL/.hg/store/data/src/timer/windows/_s_d_l__systimer.c.i new file mode 100644 index 0000000..fce416a Binary files /dev/null and b/SDL/.hg/store/data/src/timer/windows/_s_d_l__systimer.c.i differ diff --git a/SDL/.hg/store/data/src/timer/~2ecvsignore.i b/SDL/.hg/store/data/src/timer/~2ecvsignore.i new file mode 100644 index 0000000..f5c6e0a Binary files /dev/null and b/SDL/.hg/store/data/src/timer/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/touchscreen/_s_d_l__systouchscreen.h.i b/SDL/.hg/store/data/src/touchscreen/_s_d_l__systouchscreen.h.i new file mode 100644 index 0000000..c66d881 Binary files /dev/null and b/SDL/.hg/store/data/src/touchscreen/_s_d_l__systouchscreen.h.i differ diff --git a/SDL/.hg/store/data/src/touchscreen/_s_d_l__touchscreen.c.i b/SDL/.hg/store/data/src/touchscreen/_s_d_l__touchscreen.c.i new file mode 100644 index 0000000..fe5b39a Binary files /dev/null and b/SDL/.hg/store/data/src/touchscreen/_s_d_l__touchscreen.c.i differ diff --git a/SDL/.hg/store/data/src/touchscreen/_s_d_l__touchscreen__c.h.i b/SDL/.hg/store/data/src/touchscreen/_s_d_l__touchscreen__c.h.i new file mode 100644 index 0000000..d1fd78f Binary files /dev/null and b/SDL/.hg/store/data/src/touchscreen/_s_d_l__touchscreen__c.h.i differ diff --git a/SDL/.hg/store/data/src/touchscreen/dummy/_s_d_l__systouchscreen.c.i b/SDL/.hg/store/data/src/touchscreen/dummy/_s_d_l__systouchscreen.c.i new file mode 100644 index 0000000..8d8b206 Binary files /dev/null and b/SDL/.hg/store/data/src/touchscreen/dummy/_s_d_l__systouchscreen.c.i differ diff --git a/SDL/.hg/store/data/src/touchscreen/nds/_s_d_l__systouchscreen.c.i b/SDL/.hg/store/data/src/touchscreen/nds/_s_d_l__systouchscreen.c.i new file mode 100644 index 0000000..39f3dc9 Binary files /dev/null and b/SDL/.hg/store/data/src/touchscreen/nds/_s_d_l__systouchscreen.c.i differ diff --git a/SDL/.hg/store/data/src/video/_makefile.am.i b/SDL/.hg/store/data/src/video/_makefile.am.i new file mode 100644 index 0000000..5dd3029 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_makefile.wat.i b/SDL/.hg/store/data/src/video/_makefile.wat.i new file mode 100644 index 0000000..6a19ed7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l___r_l_eaccel.c.i b/SDL/.hg/store/data/src/video/_s_d_l___r_l_eaccel.c.i new file mode 100644 index 0000000..12700d3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l___r_l_eaccel.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l___r_l_eaccel__c.h.i b/SDL/.hg/store/data/src/video/_s_d_l___r_l_eaccel__c.h.i new file mode 100644 index 0000000..0891af3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l___r_l_eaccel__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__alphamult.c.i b/SDL/.hg/store/data/src/video/_s_d_l__alphamult.c.i new file mode 100644 index 0000000..e9e12de Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__alphamult.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__alphamult.h.i b/SDL/.hg/store/data/src/video/_s_d_l__alphamult.h.i new file mode 100644 index 0000000..3e5fe36 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__alphamult.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blendfillrect.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blendfillrect.c.i new file mode 100644 index 0000000..8d9904e Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blendfillrect.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blendline.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blendline.c.i new file mode 100644 index 0000000..f917cf8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blendline.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blendpoint.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blendpoint.c.i new file mode 100644 index 0000000..415fa1b Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blendpoint.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blendrect.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blendrect.c.i new file mode 100644 index 0000000..ac93ace Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blendrect.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit.c.i new file mode 100644 index 0000000..1e0858a Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit.h.i b/SDL/.hg/store/data/src/video/_s_d_l__blit.h.i new file mode 100644 index 0000000..fd29f98 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__0.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__0.c.i new file mode 100644 index 0000000..49c6edc Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__0.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__1.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__1.c.i new file mode 100644 index 0000000..36b7651 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__1.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit___a.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit___a.c.i new file mode 100644 index 0000000..e60df68 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit___a.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit___a.h.i b/SDL/.hg/store/data/src/video/_s_d_l__blit___a.h.i new file mode 100644 index 0000000..a26a7d2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit___a.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit___n.c.d b/SDL/.hg/store/data/src/video/_s_d_l__blit___n.c.d new file mode 100644 index 0000000..fea6fa2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit___n.c.d differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit___n.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit___n.c.i new file mode 100644 index 0000000..f7e52f8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit___n.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__auto.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__auto.c.i new file mode 100644 index 0000000..58109ba Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__auto.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__auto.h.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__auto.h.i new file mode 100644 index 0000000..32b8350 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__auto.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__copy.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__copy.c.i new file mode 100644 index 0000000..34973b4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__copy.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__copy.h.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__copy.h.i new file mode 100644 index 0000000..dfbe16b Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__copy.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__slow.c.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__slow.c.i new file mode 100644 index 0000000..31213f0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__slow.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__blit__slow.h.i b/SDL/.hg/store/data/src/video/_s_d_l__blit__slow.h.i new file mode 100644 index 0000000..cb6b922 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__blit__slow.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__bmp.c.i b/SDL/.hg/store/data/src/video/_s_d_l__bmp.c.i new file mode 100644 index 0000000..901f66f Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__bmp.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__clipboard.c.i b/SDL/.hg/store/data/src/video/_s_d_l__clipboard.c.i new file mode 100644 index 0000000..8dcadef Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__clipboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__copy.c.i b/SDL/.hg/store/data/src/video/_s_d_l__copy.c.i new file mode 100644 index 0000000..6ebd6ed Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__copy.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__copy.h.i b/SDL/.hg/store/data/src/video/_s_d_l__copy.h.i new file mode 100644 index 0000000..95bbd77 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__copy.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__cursor.c.i b/SDL/.hg/store/data/src/video/_s_d_l__cursor.c.i new file mode 100644 index 0000000..0e00852 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__cursor.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__cursor__c.h.i b/SDL/.hg/store/data/src/video/_s_d_l__cursor__c.h.i new file mode 100644 index 0000000..1f43ab6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__cursor__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__draw.h.i b/SDL/.hg/store/data/src/video/_s_d_l__draw.h.i new file mode 100644 index 0000000..a619fcf Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__draw.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__drawline.c.i b/SDL/.hg/store/data/src/video/_s_d_l__drawline.c.i new file mode 100644 index 0000000..065b5c7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__drawline.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__drawpoint.c.i b/SDL/.hg/store/data/src/video/_s_d_l__drawpoint.c.i new file mode 100644 index 0000000..07ce69e Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__drawpoint.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__drawrect.c.i b/SDL/.hg/store/data/src/video/_s_d_l__drawrect.c.i new file mode 100644 index 0000000..79336bf Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__drawrect.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__egl.c.i b/SDL/.hg/store/data/src/video/_s_d_l__egl.c.i new file mode 100644 index 0000000..ec2d3de Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__egl.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__egl.h.i b/SDL/.hg/store/data/src/video/_s_d_l__egl.h.i new file mode 100644 index 0000000..77e2eb3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__egl.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__egl__c.h.i b/SDL/.hg/store/data/src/video/_s_d_l__egl__c.h.i new file mode 100644 index 0000000..0b9962f Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__egl__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__fill.c.i b/SDL/.hg/store/data/src/video/_s_d_l__fill.c.i new file mode 100644 index 0000000..e0a3efa Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__fill.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__fillrect.c.i b/SDL/.hg/store/data/src/video/_s_d_l__fillrect.c.i new file mode 100644 index 0000000..4ae5051 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__fillrect.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__gamma.c.i b/SDL/.hg/store/data/src/video/_s_d_l__gamma.c.i new file mode 100644 index 0000000..0a52f62 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__gamma.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__glesfuncs.h.i b/SDL/.hg/store/data/src/video/_s_d_l__glesfuncs.h.i new file mode 100644 index 0000000..1212eca Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__glesfuncs.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__glfuncs.h.i b/SDL/.hg/store/data/src/video/_s_d_l__glfuncs.h.i new file mode 100644 index 0000000..4778cee Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__glfuncs.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__leaks.h.i b/SDL/.hg/store/data/src/video/_s_d_l__leaks.h.i new file mode 100644 index 0000000..2c4fcba Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__leaks.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__memops.h.i b/SDL/.hg/store/data/src/video/_s_d_l__memops.h.i new file mode 100644 index 0000000..dacf553 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__memops.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__pixels.c.i b/SDL/.hg/store/data/src/video/_s_d_l__pixels.c.i new file mode 100644 index 0000000..b670cbf Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__pixels.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__pixels__c.h.i b/SDL/.hg/store/data/src/video/_s_d_l__pixels__c.h.i new file mode 100644 index 0000000..6e7780d Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__pixels__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__rect.c.i b/SDL/.hg/store/data/src/video/_s_d_l__rect.c.i new file mode 100644 index 0000000..881661f Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__rect.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__rect__c.h.i b/SDL/.hg/store/data/src/video/_s_d_l__rect__c.h.i new file mode 100644 index 0000000..78bdebb Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__rect__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__rendercopy.c.i b/SDL/.hg/store/data/src/video/_s_d_l__rendercopy.c.i new file mode 100644 index 0000000..dc3fc3e Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__rendercopy.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__rendercopy.h.i b/SDL/.hg/store/data/src/video/_s_d_l__rendercopy.h.i new file mode 100644 index 0000000..b6e04c3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__rendercopy.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__renderer__gl.c.i b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gl.c.i new file mode 100644 index 0000000..f20c013 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gl.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__renderer__gl.h.i b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gl.h.i new file mode 100644 index 0000000..1fa7cea Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gl.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__renderer__gles.c.i b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gles.c.i new file mode 100644 index 0000000..6f053ca Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gles.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__renderer__gles.h.i b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gles.h.i new file mode 100644 index 0000000..8173543 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__renderer__gles.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__renderer__sw.c.i b/SDL/.hg/store/data/src/video/_s_d_l__renderer__sw.c.i new file mode 100644 index 0000000..3f22dcf Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__renderer__sw.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__renderer__sw.h.i b/SDL/.hg/store/data/src/video/_s_d_l__renderer__sw.h.i new file mode 100644 index 0000000..5b07420 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__renderer__sw.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__shape.c.i b/SDL/.hg/store/data/src/video/_s_d_l__shape.c.i new file mode 100644 index 0000000..aeff02c Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__shape.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__shape.h.i b/SDL/.hg/store/data/src/video/_s_d_l__shape.h.i new file mode 100644 index 0000000..757845e Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__shape.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__shape__internals.h.i b/SDL/.hg/store/data/src/video/_s_d_l__shape__internals.h.i new file mode 100644 index 0000000..ce5d57f Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__shape__internals.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__stretch.c.i b/SDL/.hg/store/data/src/video/_s_d_l__stretch.c.i new file mode 100644 index 0000000..975ac4a Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__stretch.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__stretch__c.h.i b/SDL/.hg/store/data/src/video/_s_d_l__stretch__c.h.i new file mode 100644 index 0000000..329cef2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__stretch__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__surface.c.i b/SDL/.hg/store/data/src/video/_s_d_l__surface.c.i new file mode 100644 index 0000000..25bcc56 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__surface.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__sysvideo.h.i b/SDL/.hg/store/data/src/video/_s_d_l__sysvideo.h.i new file mode 100644 index 0000000..7e9dee5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__sysvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__video.c.d b/SDL/.hg/store/data/src/video/_s_d_l__video.c.d new file mode 100644 index 0000000..dbb4aa6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__video.c.d differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__video.c.i b/SDL/.hg/store/data/src/video/_s_d_l__video.c.i new file mode 100644 index 0000000..62aa7e6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__video.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__yuv.c.i b/SDL/.hg/store/data/src/video/_s_d_l__yuv.c.i new file mode 100644 index 0000000..b5f8428 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__yuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__yuv__mmx.c.i b/SDL/.hg/store/data/src/video/_s_d_l__yuv__mmx.c.i new file mode 100644 index 0000000..cfd6b1c Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__yuv__mmx.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__yuv__sw.c.i b/SDL/.hg/store/data/src/video/_s_d_l__yuv__sw.c.i new file mode 100644 index 0000000..2d49dd0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__yuv__sw.c.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__yuv__sw__c.h.i b/SDL/.hg/store/data/src/video/_s_d_l__yuv__sw__c.h.i new file mode 100644 index 0000000..682424a Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__yuv__sw__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/_s_d_l__yuvfuncs.h.i b/SDL/.hg/store/data/src/video/_s_d_l__yuvfuncs.h.i new file mode 100644 index 0000000..a529057 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_s_d_l__yuvfuncs.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_makefile.am.i b/SDL/.hg/store/data/src/video/_xext/_makefile.am.i new file mode 100644 index 0000000..f30e8ff Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_r_e_a_d_m_e.i b/SDL/.hg/store/data/src/video/_xext/_r_e_a_d_m_e.i new file mode 100644 index 0000000..5b1a9eb Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_x_m_e/_makefile.am.i b/SDL/.hg/store/data/src/video/_xext/_x_m_e/_makefile.am.i new file mode 100644 index 0000000..d21414a Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_x_m_e/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_x_m_e/xme.c.i b/SDL/.hg/store/data/src/video/_xext/_x_m_e/xme.c.i new file mode 100644 index 0000000..da3d19c Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_x_m_e/xme.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_x_m_e/~2ecvsignore.i b/SDL/.hg/store/data/src/video/_xext/_x_m_e/~2ecvsignore.i new file mode 100644 index 0000000..359ab94 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_x_m_e/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xinerama/_makefile.am.i b/SDL/.hg/store/data/src/video/_xext/_xinerama/_makefile.am.i new file mode 100644 index 0000000..83b77ba Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xinerama/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xinerama/_xinerama.c.i b/SDL/.hg/store/data/src/video/_xext/_xinerama/_xinerama.c.i new file mode 100644 index 0000000..9b84af8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xinerama/_xinerama.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xinerama/~2ecvsignore.i b/SDL/.hg/store/data/src/video/_xext/_xinerama/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xinerama/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_all_cmap.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_all_cmap.c.i new file mode 100644 index 0000000..439e409 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_all_cmap.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_cmap_alloc.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_cmap_alloc.c.i new file mode 100644 index 0000000..69d5f94 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_cmap_alloc.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_cr_cmap.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_cr_cmap.c.i new file mode 100644 index 0000000..f21e870 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_cr_cmap.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_del_cmap.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_del_cmap.c.i new file mode 100644 index 0000000..fd0ad92 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_del_cmap.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_distinct.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_distinct.c.i new file mode 100644 index 0000000..ed366f9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_distinct.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_lookup_cmap.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_lookup_cmap.c.i new file mode 100644 index 0000000..34ae606 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_lookup_cmap.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_std_cmap.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_std_cmap.c.i new file mode 100644 index 0000000..d67d031 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_std_cmap.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_vis_cmap.c.i b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_vis_cmap.c.i new file mode 100644 index 0000000..b4aca03 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xmu_std_cmap/_vis_cmap.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xv/_makefile.am.i b/SDL/.hg/store/data/src/video/_xext/_xv/_makefile.am.i new file mode 100644 index 0000000..6a63228 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xv/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xv/_xv.c.i b/SDL/.hg/store/data/src/video/_xext/_xv/_xv.c.i new file mode 100644 index 0000000..75e8f02 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xv/_xv.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xv/_xvlibint.h.i b/SDL/.hg/store/data/src/video/_xext/_xv/_xvlibint.h.i new file mode 100644 index 0000000..399ecf1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xv/_xvlibint.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xv/~2ecvsignore.i b/SDL/.hg/store/data/src/video/_xext/_xv/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xv/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_makefile.am.i b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_makefile.am.i new file mode 100644 index 0000000..78266b2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_x_f86_d_g_a.c.i b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_x_f86_d_g_a.c.i new file mode 100644 index 0000000..174355c Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_x_f86_d_g_a.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_x_f86_d_g_a2.c.i b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_x_f86_d_g_a2.c.i new file mode 100644 index 0000000..6687174 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/_x_f86_d_g_a2.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xxf86dga/~2ecvsignore.i b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xxf86dga/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xxf86vm/_makefile.am.i b/SDL/.hg/store/data/src/video/_xext/_xxf86vm/_makefile.am.i new file mode 100644 index 0000000..d857268 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xxf86vm/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xxf86vm/_x_f86_v_mode.c.i b/SDL/.hg/store/data/src/video/_xext/_xxf86vm/_x_f86_v_mode.c.i new file mode 100644 index 0000000..88996f9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xxf86vm/_x_f86_v_mode.c.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/_xxf86vm/~2ecvsignore.i b/SDL/.hg/store/data/src/video/_xext/_xxf86vm/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/_xxf86vm/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_makefile.am.i b/SDL/.hg/store/data/src/video/_xext/extensions/_makefile.am.i new file mode 100644 index 0000000..179b01b Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_s_d_lname.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/_s_d_lname.h.i new file mode 100644 index 0000000..910af2b Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_s_d_lname.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_std_cmap.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/_std_cmap.h.i new file mode 100644 index 0000000..36636f5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_std_cmap.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_xext.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/_xext.h.i new file mode 100644 index 0000000..4601e6b Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_xext.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_xinerama.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/_xinerama.h.i new file mode 100644 index 0000000..6deb303 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_xinerama.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_xv.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/_xv.h.i new file mode 100644 index 0000000..f7d92bb Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_xv.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_xvlib.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/_xvlib.h.i new file mode 100644 index 0000000..7c2778e Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_xvlib.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/_xvproto.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/_xvproto.h.i new file mode 100644 index 0000000..a079e76 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/_xvproto.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/extutil.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/extutil.h.i new file mode 100644 index 0000000..ccec725 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/extutil.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/panorami_xext.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/panorami_xext.h.i new file mode 100644 index 0000000..d5d1b17 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/panorami_xext.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/panorami_xproto.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/panorami_xproto.h.i new file mode 100644 index 0000000..1c041af Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/panorami_xproto.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga.h.i new file mode 100644 index 0000000..6491292 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga1.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga1.h.i new file mode 100644 index 0000000..2d31ac3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga1.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga1str.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga1str.h.i new file mode 100644 index 0000000..4175c80 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dga1str.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/xf86dgastr.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dgastr.h.i new file mode 100644 index 0000000..26fd73a Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/xf86dgastr.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/xf86vmode.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/xf86vmode.h.i new file mode 100644 index 0000000..1906138 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/xf86vmode.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/xf86vmstr.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/xf86vmstr.h.i new file mode 100644 index 0000000..76d81fd Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/xf86vmstr.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/xme.h.i b/SDL/.hg/store/data/src/video/_xext/extensions/xme.h.i new file mode 100644 index 0000000..70cf270 Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/xme.h.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/extensions/~2ecvsignore.i b/SDL/.hg/store/data/src/video/_xext/extensions/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/extensions/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/_xext/~2ecvsignore.i b/SDL/.hg/store/data/src/video/_xext/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/_xext/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/_makefile.am.i b/SDL/.hg/store/data/src/video/aalib/_makefile.am.i new file mode 100644 index 0000000..f834648 Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/_s_d_l__aaevents.c.i b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aaevents.c.i new file mode 100644 index 0000000..ef45a4f Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aaevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/_s_d_l__aaevents__c.h.i b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aaevents__c.h.i new file mode 100644 index 0000000..b3c8d5e Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aaevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/_s_d_l__aamouse.c.i b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aamouse.c.i new file mode 100644 index 0000000..7407394 Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aamouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/_s_d_l__aamouse__c.h.i b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aamouse__c.h.i new file mode 100644 index 0000000..608c3ae Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aamouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/_s_d_l__aavideo.c.i b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aavideo.c.i new file mode 100644 index 0000000..cd9306b Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aavideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/_s_d_l__aavideo.h.i b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aavideo.h.i new file mode 100644 index 0000000..ff9c12a Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/_s_d_l__aavideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/aalib/~2ecvsignore.i b/SDL/.hg/store/data/src/video/aalib/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/aalib/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidclipboard.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidclipboard.c.i new file mode 100644 index 0000000..18a6da5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidclipboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidclipboard.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidclipboard.h.i new file mode 100644 index 0000000..37ea795 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidclipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents.c.i new file mode 100644 index 0000000..f31f630 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents.h.i new file mode 100644 index 0000000..767983f Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents__c.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents__c.h.i new file mode 100644 index 0000000..5f3968a Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidgl.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidgl.c.i new file mode 100644 index 0000000..fb8e834 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidgl.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidkeyboard.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidkeyboard.c.i new file mode 100644 index 0000000..f2607f6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidkeyboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidkeyboard.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidkeyboard.h.i new file mode 100644 index 0000000..2ea5623 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidkeyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidmessagebox.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmessagebox.c.i new file mode 100644 index 0000000..cf7b9da Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmessagebox.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidmessagebox.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmessagebox.h.i new file mode 100644 index 0000000..f4df01b Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmessagebox.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidmouse.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmouse.c.i new file mode 100644 index 0000000..7a6d1e2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidmouse.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmouse.h.i new file mode 100644 index 0000000..d0d52e5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender.c.i new file mode 100644 index 0000000..32db42f Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender.h.i new file mode 100644 index 0000000..3732882 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender__c.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender__c.h.i new file mode 100644 index 0000000..0b6d856 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidrender__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidtouch.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidtouch.c.i new file mode 100644 index 0000000..330eeef Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidtouch.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidtouch.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidtouch.h.i new file mode 100644 index 0000000..807b1ff Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidtouch.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidvideo.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidvideo.c.i new file mode 100644 index 0000000..3c1c3f0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidvideo.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidvideo.h.i new file mode 100644 index 0000000..940221a Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidwindow.c.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidwindow.c.i new file mode 100644 index 0000000..000bc1a Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidwindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/android/_s_d_l__androidwindow.h.i b/SDL/.hg/store/data/src/video/android/_s_d_l__androidwindow.h.i new file mode 100644 index 0000000..aa6730e Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/_s_d_l__androidwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/egl.h.i b/SDL/.hg/store/data/src/video/android/egl.h.i new file mode 100644 index 0000000..282137e Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/egl.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/eglext.h.i b/SDL/.hg/store/data/src/video/android/eglext.h.i new file mode 100644 index 0000000..e6c5155 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/eglext.h.i differ diff --git a/SDL/.hg/store/data/src/video/android/eglplatform.h.i b/SDL/.hg/store/data/src/video/android/eglplatform.h.i new file mode 100644 index 0000000..f97cc84 Binary files /dev/null and b/SDL/.hg/store/data/src/video/android/eglplatform.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_makefile.am.i b/SDL/.hg/store/data/src/video/ataricommon/_makefile.am.i new file mode 100644 index 0000000..f5dedcf Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p._s.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p._s.i new file mode 100644 index 0000000..2f30ee9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p._s.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p060.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p060.c.i new file mode 100644 index 0000000..6398f83 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p060.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p060__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p060__c.h.i new file mode 100644 index 0000000..9b3b090 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p060__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p__s.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p__s.h.i new file mode 100644 index 0000000..64e264e Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataric2p__s.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataridevmouse.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataridevmouse.c.i new file mode 100644 index 0000000..b9ad3df Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataridevmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataridevmouse__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataridevmouse__c.h.i new file mode 100644 index 0000000..56d6e6d Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ataridevmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarieddi._s.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarieddi._s.i new file mode 100644 index 0000000..404669a Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarieddi._s.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarieddi__s.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarieddi__s.h.i new file mode 100644 index 0000000..ae6283b Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarieddi__s.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarievents.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarievents.c.i new file mode 100644 index 0000000..a3d6f31 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarievents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarievents__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarievents__c.h.i new file mode 100644 index 0000000..90e5bcd Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarievents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarigl.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarigl.c.i new file mode 100644 index 0000000..4a4e0cf Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarigl.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarigl__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarigl__c.h.i new file mode 100644 index 0000000..28db472 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarigl__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarikeys.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarikeys.h.i new file mode 100644 index 0000000..10cc876 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarikeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarimxalloc.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarimxalloc.c.i new file mode 100644 index 0000000..0422280 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarimxalloc.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarimxalloc__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarimxalloc__c.h.i new file mode 100644 index 0000000..5378ebb Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarimxalloc__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarisuper.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarisuper.h.i new file mode 100644 index 0000000..70950ee Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__atarisuper.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__biosevents.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__biosevents.c.i new file mode 100644 index 0000000..85cae0e Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__biosevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__biosevents__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__biosevents__c.h.i new file mode 100644 index 0000000..494df59 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__biosevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__gemdosevents.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__gemdosevents.c.i new file mode 100644 index 0000000..6e86b59 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__gemdosevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__gemdosevents__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__gemdosevents__c.h.i new file mode 100644 index 0000000..35ca899 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__gemdosevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdevents.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdevents.c.i new file mode 100644 index 0000000..d9923b3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdevents__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdevents__c.h.i new file mode 100644 index 0000000..6705550 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdinterrupt._s.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdinterrupt._s.i new file mode 100644 index 0000000..fe7ff51 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdinterrupt._s.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdinterrupt__s.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdinterrupt__s.h.i new file mode 100644 index 0000000..7c201b5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__ikbdinterrupt__s.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosevents.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosevents.c.i new file mode 100644 index 0000000..ca0a619 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosevents__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosevents__c.h.i new file mode 100644 index 0000000..c3d9e18 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosinterrupt._s.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosinterrupt._s.i new file mode 100644 index 0000000..04a9efa Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosinterrupt._s.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosinterrupt__s.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosinterrupt__s.h.i new file mode 100644 index 0000000..2c51769 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosinterrupt__s.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseevents.c.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseevents.c.i new file mode 100644 index 0000000..15b5675 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseevents__c.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseevents__c.h.i new file mode 100644 index 0000000..66e6904 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseinterrupt._s.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseinterrupt._s.i new file mode 100644 index 0000000..8647966 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseinterrupt._s.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseinterrupt__s.h.i b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseinterrupt__s.h.i new file mode 100644 index 0000000..46e3060 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/_s_d_l__xbiosmouseinterrupt__s.h.i differ diff --git a/SDL/.hg/store/data/src/video/ataricommon/~2ecvsignore.i b/SDL/.hg/store/data/src/video/ataricommon/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/ataricommon/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/blank__cursor.h.i b/SDL/.hg/store/data/src/video/blank__cursor.h.i new file mode 100644 index 0000000..d7e9eb1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/blank__cursor.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_makefile.am.i b/SDL/.hg/store/data/src/video/bwindow/_makefile.am.i new file mode 100644 index 0000000..f44e714 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l___b_view.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l___b_view.h.i new file mode 100644 index 0000000..ed48acd Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l___b_view.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l___b_win.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l___b_win.h.i new file mode 100644 index 0000000..5a11104 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l___b_win.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.c.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.c.i new file mode 100644 index 0000000..24392ff Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.cc.i new file mode 100644 index 0000000..4452773 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.h.i new file mode 100644 index 0000000..7b9e581 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bclipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bevents.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bevents.cc.i new file mode 100644 index 0000000..5175864 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bevents.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bevents.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bevents.h.i new file mode 100644 index 0000000..f606f5d Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bframebuffer.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bframebuffer.cc.i new file mode 100644 index 0000000..a92f0a6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bframebuffer.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bframebuffer.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bframebuffer.h.i new file mode 100644 index 0000000..1b51258 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bframebuffer.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bkeyboard.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bkeyboard.cc.i new file mode 100644 index 0000000..c31e132 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bkeyboard.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bkeyboard.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bkeyboard.h.i new file mode 100644 index 0000000..64baf2f Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bkeyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.c.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.c.i new file mode 100644 index 0000000..91151b7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.c.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.cc.i new file mode 100644 index 0000000..ba16433 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.h.i new file mode 100644 index 0000000..185c2cc Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bmodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.c.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.c.i new file mode 100644 index 0000000..8f671b3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.c.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.cc.i new file mode 100644 index 0000000..ccd335a Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.h.i new file mode 100644 index 0000000..2731d02 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bopengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.c.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.c.i new file mode 100644 index 0000000..3459117 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.cc.i new file mode 100644 index 0000000..cec33dd Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.h.i new file mode 100644 index 0000000..7a81704 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.c.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.c.i new file mode 100644 index 0000000..fa4d821 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.cc.i new file mode 100644 index 0000000..e0c584c Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.h.i new file mode 100644 index 0000000..988aa84 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__bwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__lowvideo.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__lowvideo.h.i new file mode 100644 index 0000000..27bcaaf Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__lowvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysevents.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysevents.cc.i new file mode 100644 index 0000000..078167d Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysevents.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysevents__c.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysevents__c.h.i new file mode 100644 index 0000000..a4fb7d5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysmouse.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysmouse.cc.i new file mode 100644 index 0000000..f94f6e3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysmouse.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysmouse__c.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysmouse__c.h.i new file mode 100644 index 0000000..cf33593 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysvideo.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysvideo.cc.i new file mode 100644 index 0000000..fb0c1c2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysvideo.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__syswm.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__syswm.cc.i new file mode 100644 index 0000000..8870c8f Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__syswm.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__syswm__c.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__syswm__c.h.i new file mode 100644 index 0000000..9967e78 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__syswm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysyuv.cc.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysyuv.cc.i new file mode 100644 index 0000000..71dac8a Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysyuv.cc.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysyuv.h.i b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysyuv.h.i new file mode 100644 index 0000000..fe503a7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/_s_d_l__sysyuv.h.i differ diff --git a/SDL/.hg/store/data/src/video/bwindow/~2ecvsignore.i b/SDL/.hg/store/data/src/video/bwindow/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/bwindow/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/caca/_s_d_l__cacaevents.c.i b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacaevents.c.i new file mode 100644 index 0000000..93d6471 Binary files /dev/null and b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacaevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/caca/_s_d_l__cacaevents__c.h.i b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacaevents__c.h.i new file mode 100644 index 0000000..6592540 Binary files /dev/null and b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacaevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/caca/_s_d_l__cacavideo.c.i b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacavideo.c.i new file mode 100644 index 0000000..5e65d73 Binary files /dev/null and b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacavideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/caca/_s_d_l__cacavideo.h.i b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacavideo.h.i new file mode 100644 index 0000000..5c673e5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/caca/_s_d_l__cacavideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaclipboard.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaclipboard.h.i new file mode 100644 index 0000000..760890f Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaclipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaclipboard.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaclipboard.m.i new file mode 100644 index 0000000..dd668fb Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaclipboard.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaevents.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaevents.h.i new file mode 100644 index 0000000..07c6d08 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaevents.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaevents.m.i new file mode 100644 index 0000000..f851d4e Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaevents.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeyboard.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeyboard.h.i new file mode 100644 index 0000000..9a1db03 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeyboard.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeyboard.m.i new file mode 100644 index 0000000..4a7c969 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeyboard.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeys.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeys.h.i new file mode 100644 index 0000000..cba80eb Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoakeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamessagebox.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamessagebox.h.i new file mode 100644 index 0000000..6dc8035 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamessagebox.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamessagebox.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamessagebox.m.i new file mode 100644 index 0000000..8056a41 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamessagebox.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamodes.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamodes.h.i new file mode 100644 index 0000000..a536451 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamodes.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamodes.m.i new file mode 100644 index 0000000..f50e6cb Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamodes.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamouse.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamouse.h.i new file mode 100644 index 0000000..c7f7b3b Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamouse.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamouse.m.i new file mode 100644 index 0000000..aefc3d6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamouse.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamousetap.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamousetap.h.i new file mode 100644 index 0000000..b04c6bb Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamousetap.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamousetap.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamousetap.m.i new file mode 100644 index 0000000..6328418 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoamousetap.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaopengl.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaopengl.h.i new file mode 100644 index 0000000..ab27f43 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaopengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaopengl.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaopengl.m.i new file mode 100644 index 0000000..ead5f2a Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoaopengl.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.c.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.c.i new file mode 100644 index 0000000..ae4b60a Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.c.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.h.i new file mode 100644 index 0000000..f559844 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.m.i new file mode 100644 index 0000000..5832f38 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoashape.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoatouch.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoatouch.h.i new file mode 100644 index 0000000..6e4bce8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoatouch.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoavideo.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoavideo.h.i new file mode 100644 index 0000000..bb05146 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoavideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoavideo.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoavideo.m.i new file mode 100644 index 0000000..b334389 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoavideo.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoawindow.h.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoawindow.h.i new file mode 100644 index 0000000..bcd8c65 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoawindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoawindow.m.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoawindow.m.i new file mode 100644 index 0000000..9562f9e Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__cocoawindow.m.i differ diff --git a/SDL/.hg/store/data/src/video/cocoa/_s_d_l__shape.c.i b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__shape.c.i new file mode 100644 index 0000000..41da039 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cocoa/_s_d_l__shape.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_makefile.am.i b/SDL/.hg/store/data/src/video/cybergfx/_makefile.am.i new file mode 100644 index 0000000..2c3401a Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigaevents.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigaevents.c.i new file mode 100644 index 0000000..21764db Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigaevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigaevents__c.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigaevents__c.h.i new file mode 100644 index 0000000..d30a4f9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigaevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigamouse.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigamouse.c.i new file mode 100644 index 0000000..1b28397 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigamouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigamouse__c.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigamouse__c.h.i new file mode 100644 index 0000000..b31c973 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__amigamouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxaccel.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxaccel.c.i new file mode 100644 index 0000000..88c8942 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxaccel.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxgl.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxgl.c.i new file mode 100644 index 0000000..1b79764 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxgl.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxgl__c.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxgl__c.h.i new file mode 100644 index 0000000..0a5faa7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxgl__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgximage.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgximage.c.i new file mode 100644 index 0000000..d2470c8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgximage.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgximage__c.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgximage__c.h.i new file mode 100644 index 0000000..a55c3f5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgximage__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxmodes.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxmodes.c.i new file mode 100644 index 0000000..a52b5bf Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxmodes.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxmodes__c.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxmodes__c.h.i new file mode 100644 index 0000000..b9b26de Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxmodes__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxvideo.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxvideo.c.i new file mode 100644 index 0000000..8463c91 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxvideo.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxvideo.h.i new file mode 100644 index 0000000..51bd074 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxwm.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxwm.c.i new file mode 100644 index 0000000..737941b Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxwm.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxwm__c.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxwm__c.h.i new file mode 100644 index 0000000..d867e01 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxwm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxyuv.c.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxyuv.c.i new file mode 100644 index 0000000..a155bb9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxyuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxyuv__c.h.i b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxyuv__c.h.i new file mode 100644 index 0000000..f7f88d3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/_s_d_l__cgxyuv__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/cybergfx/~2ecvsignore.i b/SDL/.hg/store/data/src/video/cybergfx/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/cybergfx/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/dc/_makefile.am.i b/SDL/.hg/store/data/src/video/dc/_makefile.am.i new file mode 100644 index 0000000..735aada Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/dc/_s_d_l__dcevents.c.i b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcevents.c.i new file mode 100644 index 0000000..f674765 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/dc/_s_d_l__dcevents__c.h.i b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcevents__c.h.i new file mode 100644 index 0000000..7aa2522 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dc/_s_d_l__dcmouse.c.i b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcmouse.c.i new file mode 100644 index 0000000..c151510 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/dc/_s_d_l__dcmouse__c.h.i b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcmouse__c.h.i new file mode 100644 index 0000000..3e4c5d5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dc/_s_d_l__dcvideo.c.i b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcvideo.c.i new file mode 100644 index 0000000..aa9e325 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/dc/_s_d_l__dcvideo.h.i b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcvideo.h.i new file mode 100644 index 0000000..3a6897a Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/_s_d_l__dcvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/dc/~2ecvsignore.i b/SDL/.hg/store/data/src/video/dc/~2ecvsignore.i new file mode 100644 index 0000000..3f6541f Binary files /dev/null and b/SDL/.hg/store/data/src/video/dc/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/default__cursor.h.i b/SDL/.hg/store/data/src/video/default__cursor.h.i new file mode 100644 index 0000000..03db0cc Binary files /dev/null and b/SDL/.hg/store/data/src/video/default__cursor.h.i differ diff --git a/SDL/.hg/store/data/src/video/dga/_makefile.am.i b/SDL/.hg/store/data/src/video/dga/_makefile.am.i new file mode 100644 index 0000000..b87b0cc Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/dga/_s_d_l__dgaevents.c.i b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgaevents.c.i new file mode 100644 index 0000000..69100bd Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgaevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/dga/_s_d_l__dgaevents__c.h.i b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgaevents__c.h.i new file mode 100644 index 0000000..7880940 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgaevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dga/_s_d_l__dgamouse.c.i b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgamouse.c.i new file mode 100644 index 0000000..3d57751 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgamouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/dga/_s_d_l__dgamouse__c.h.i b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgamouse__c.h.i new file mode 100644 index 0000000..041f5f2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgamouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dga/_s_d_l__dgavideo.c.i b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgavideo.c.i new file mode 100644 index 0000000..7d8bc69 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgavideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/dga/_s_d_l__dgavideo.h.i b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgavideo.h.i new file mode 100644 index 0000000..f23bf29 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/_s_d_l__dgavideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/dga/~2ecvsignore.i b/SDL/.hg/store/data/src/video/dga/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dga/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_makefile.am.i b/SDL/.hg/store/data/src/video/directfb/_makefile.am.i new file mode 100644 index 0000000..29ffa4e Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b___w_m.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b___w_m.c.i new file mode 100644 index 0000000..f411f13 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b___w_m.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b___w_m.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b___w_m.h.i new file mode 100644 index 0000000..dc5667b Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b___w_m.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__dyn.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__dyn.c.i new file mode 100644 index 0000000..2090329 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__dyn.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__dyn.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__dyn.h.i new file mode 100644 index 0000000..be60a28 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__dyn.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__events.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__events.c.i new file mode 100644 index 0000000..9698b52 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__events.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__events.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__events.h.i new file mode 100644 index 0000000..d7f65fe Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__events.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__keys.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__keys.h.i new file mode 100644 index 0000000..beddfb6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__keys.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__modes.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__modes.c.i new file mode 100644 index 0000000..875578f Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__modes.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__modes.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__modes.h.i new file mode 100644 index 0000000..1955532 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__modes.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__mouse.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__mouse.c.i new file mode 100644 index 0000000..82cc181 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__mouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__mouse.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__mouse.h.i new file mode 100644 index 0000000..9bbea3b Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__mouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__opengl.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__opengl.c.i new file mode 100644 index 0000000..33c4485 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__opengl.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__opengl.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__opengl.h.i new file mode 100644 index 0000000..51da4aa Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__opengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__render.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__render.c.i new file mode 100644 index 0000000..6835a50 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__render.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__render.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__render.h.i new file mode 100644 index 0000000..9d8897b Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__render.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__shape.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__shape.c.i new file mode 100644 index 0000000..016ebc5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__shape.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__shape.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__shape.h.i new file mode 100644 index 0000000..1d8ef24 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__shape.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__video.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__video.c.i new file mode 100644 index 0000000..8a0a028 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__video.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__video.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__video.h.i new file mode 100644 index 0000000..b0f5cc1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__video.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__window.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__window.c.i new file mode 100644 index 0000000..df82492 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__window.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__window.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__window.h.i new file mode 100644 index 0000000..b9c5868 Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__window.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__yuv.c.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__yuv.c.i new file mode 100644 index 0000000..f4ccbbd Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__yuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__yuv.h.i b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__yuv.h.i new file mode 100644 index 0000000..df1607a Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/_s_d_l___direct_f_b__yuv.h.i differ diff --git a/SDL/.hg/store/data/src/video/directfb/~2ecvsignore.i b/SDL/.hg/store/data/src/video/directfb/~2ecvsignore.i new file mode 100644 index 0000000..9aea77b Binary files /dev/null and b/SDL/.hg/store/data/src/video/directfb/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_makefile.am.i b/SDL/.hg/store/data/src/video/dummy/_makefile.am.i new file mode 100644 index 0000000..acf0bc8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullevents.c.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullevents.c.i new file mode 100644 index 0000000..08e7923 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullevents__c.h.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullevents__c.h.i new file mode 100644 index 0000000..55b66d2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullframebuffer.c.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullframebuffer.c.i new file mode 100644 index 0000000..34f8aa9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullframebuffer.c.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullframebuffer__c.h.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullframebuffer__c.h.i new file mode 100644 index 0000000..4f2e808 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullframebuffer__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullmouse.c.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullmouse.c.i new file mode 100644 index 0000000..dfcc49a Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullmouse__c.h.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullmouse__c.h.i new file mode 100644 index 0000000..a0afaad Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullrender.c.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullrender.c.i new file mode 100644 index 0000000..f20c72e Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullrender.c.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullrender__c.h.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullrender__c.h.i new file mode 100644 index 0000000..d3b811c Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullrender__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullvideo.c.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullvideo.c.i new file mode 100644 index 0000000..f3e619c Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullvideo.h.i b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullvideo.h.i new file mode 100644 index 0000000..bc4324b Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/_s_d_l__nullvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/dummy/~2ecvsignore.i b/SDL/.hg/store/data/src/video/dummy/~2ecvsignore.i new file mode 100644 index 0000000..7a5f650 Binary files /dev/null and b/SDL/.hg/store/data/src/video/dummy/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/e__log.h.i b/SDL/.hg/store/data/src/video/e__log.h.i new file mode 100644 index 0000000..fcca271 Binary files /dev/null and b/SDL/.hg/store/data/src/video/e__log.h.i differ diff --git a/SDL/.hg/store/data/src/video/e__pow.h.i b/SDL/.hg/store/data/src/video/e__pow.h.i new file mode 100644 index 0000000..f04ad01 Binary files /dev/null and b/SDL/.hg/store/data/src/video/e__pow.h.i differ diff --git a/SDL/.hg/store/data/src/video/e__sqrt.h.i b/SDL/.hg/store/data/src/video/e__sqrt.h.i new file mode 100644 index 0000000..e3cbae6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/e__sqrt.h.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenevents.c.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenevents.c.i new file mode 100644 index 0000000..c94f606 Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenevents.h.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenevents.h.i new file mode 100644 index 0000000..60bc9dc Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenframebuffer.c.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenframebuffer.c.i new file mode 100644 index 0000000..34a6ed8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenframebuffer.c.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenframebuffer.h.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenframebuffer.h.i new file mode 100644 index 0000000..81c1d9d Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenframebuffer.h.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenmouse.c.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenmouse.c.i new file mode 100644 index 0000000..6cf22b0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenmouse.h.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenmouse.h.i new file mode 100644 index 0000000..7615494 Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenopengles.c.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenopengles.c.i new file mode 100644 index 0000000..aef89a2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenopengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenopengles.h.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenopengles.h.i new file mode 100644 index 0000000..27d0b51 Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenvideo.c.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenvideo.c.i new file mode 100644 index 0000000..6918d8a Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenvideo.h.i b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenvideo.h.i new file mode 100644 index 0000000..dc18216 Binary files /dev/null and b/SDL/.hg/store/data/src/video/emscripten/_s_d_l__emscriptenvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/epoc/_makefile.am.i b/SDL/.hg/store/data/src/video/epoc/_makefile.am.i new file mode 100644 index 0000000..253a1f1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/epoc/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocevents.cpp.i b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocevents.cpp.i new file mode 100644 index 0000000..96e9ffe Binary files /dev/null and b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocevents.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocevents__c.h.i b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocevents__c.h.i new file mode 100644 index 0000000..e3c82e9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocvideo.cpp.i b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocvideo.cpp.i new file mode 100644 index 0000000..8d34dac Binary files /dev/null and b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocvideo.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocvideo.h.i b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocvideo.h.i new file mode 100644 index 0000000..44528bd Binary files /dev/null and b/SDL/.hg/store/data/src/video/epoc/_s_d_l__epocvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/epoc/~2ecvsignore.i b/SDL/.hg/store/data/src/video/epoc/~2ecvsignore.i new file mode 100644 index 0000000..5879448 Binary files /dev/null and b/SDL/.hg/store/data/src/video/epoc/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbevents.c.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbevents.c.i new file mode 100644 index 0000000..43d7e1b Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbevents__c.h.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbevents__c.h.i new file mode 100644 index 0000000..89105c3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbmodes.c.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbmodes.c.i new file mode 100644 index 0000000..2132667 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbmodes.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbmodes__c.h.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbmodes__c.h.i new file mode 100644 index 0000000..c6a9292 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbmodes__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbrender.c.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbrender.c.i new file mode 100644 index 0000000..aaab100 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbrender.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbrender__c.h.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbrender__c.h.i new file mode 100644 index 0000000..b720436 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbrender__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbvideo.c.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbvideo.c.i new file mode 100644 index 0000000..3cc2ee7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbvideo.h.i b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbvideo.h.i new file mode 100644 index 0000000..aa87e35 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon-1.3/_s_d_l__fbvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/3dfx__mmio.h.i b/SDL/.hg/store/data/src/video/fbcon/3dfx__mmio.h.i new file mode 100644 index 0000000..02f24c5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/3dfx__mmio.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/3dfx__regs.h.i b/SDL/.hg/store/data/src/video/fbcon/3dfx__regs.h.i new file mode 100644 index 0000000..d1b6713 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/3dfx__regs.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_makefile.am.i b/SDL/.hg/store/data/src/video/fbcon/_makefile.am.i new file mode 100644 index 0000000..15225a7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fb3dfx.c.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fb3dfx.c.i new file mode 100644 index 0000000..691a37a Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fb3dfx.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fb3dfx.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fb3dfx.h.i new file mode 100644 index 0000000..fbfaa73 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fb3dfx.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbelo.c.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbelo.c.i new file mode 100644 index 0000000..69a896b Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbelo.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbelo.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbelo.h.i new file mode 100644 index 0000000..532ec3c Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbelo.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbevents.c.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbevents.c.i new file mode 100644 index 0000000..9e81109 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbevents__c.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbevents__c.h.i new file mode 100644 index 0000000..3bce886 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbkeys.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbkeys.h.i new file mode 100644 index 0000000..e916bc0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbkeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmatrox.c.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmatrox.c.i new file mode 100644 index 0000000..1960727 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmatrox.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmatrox.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmatrox.h.i new file mode 100644 index 0000000..696f900 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmatrox.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmouse.c.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmouse.c.i new file mode 100644 index 0000000..ebe6062 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmouse__c.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmouse__c.h.i new file mode 100644 index 0000000..91bc069 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbriva.c.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbriva.c.i new file mode 100644 index 0000000..b6abb2b Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbriva.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbriva.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbriva.h.i new file mode 100644 index 0000000..0d93b5e Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbriva.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbvideo.c.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbvideo.c.i new file mode 100644 index 0000000..0d0e8ef Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbvideo.h.i b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbvideo.h.i new file mode 100644 index 0000000..ca6e8b8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/_s_d_l__fbvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/matrox__mmio.h.i b/SDL/.hg/store/data/src/video/fbcon/matrox__mmio.h.i new file mode 100644 index 0000000..4e83afa Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/matrox__mmio.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/matrox__regs.h.i b/SDL/.hg/store/data/src/video/fbcon/matrox__regs.h.i new file mode 100644 index 0000000..c3d0df6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/matrox__regs.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/riva__mmio.h.i b/SDL/.hg/store/data/src/video/fbcon/riva__mmio.h.i new file mode 100644 index 0000000..0d6b3d3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/riva__mmio.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/riva__regs.h.i b/SDL/.hg/store/data/src/video/fbcon/riva__regs.h.i new file mode 100644 index 0000000..1c5995c Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/riva__regs.h.i differ diff --git a/SDL/.hg/store/data/src/video/fbcon/~2ecvsignore.i b/SDL/.hg/store/data/src/video/fbcon/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/fbcon/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/gapi/_makefile.am.i b/SDL/.hg/store/data/src/video/gapi/_makefile.am.i new file mode 100644 index 0000000..40ba4ae Binary files /dev/null and b/SDL/.hg/store/data/src/video/gapi/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/gapi/_s_d_l__gapivideo.c.i b/SDL/.hg/store/data/src/video/gapi/_s_d_l__gapivideo.c.i new file mode 100644 index 0000000..24a3795 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gapi/_s_d_l__gapivideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/gapi/_s_d_l__gapivideo.h.i b/SDL/.hg/store/data/src/video/gapi/_s_d_l__gapivideo.h.i new file mode 100644 index 0000000..dbce9cb Binary files /dev/null and b/SDL/.hg/store/data/src/video/gapi/_s_d_l__gapivideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/gapi/~2ecvsignore.i b/SDL/.hg/store/data/src/video/gapi/~2ecvsignore.i new file mode 100644 index 0000000..e291bcd Binary files /dev/null and b/SDL/.hg/store/data/src/video/gapi/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_makefile.am.i b/SDL/.hg/store/data/src/video/gem/_makefile.am.i new file mode 100644 index 0000000..07f4918 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents.c.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents.c.i new file mode 100644 index 0000000..9727fa0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents.h.i new file mode 100644 index 0000000..7e7561d Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents__c.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents__c.h.i new file mode 100644 index 0000000..9054e74 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemkeyboard.c.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemkeyboard.c.i new file mode 100644 index 0000000..5ebd2a8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemkeyboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemkeyboard.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemkeyboard.h.i new file mode 100644 index 0000000..1a04cba Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemkeyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmodes.c.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmodes.c.i new file mode 100644 index 0000000..017d9e9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmodes.c.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmodes.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmodes.h.i new file mode 100644 index 0000000..4b12e60 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse.c.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse.c.i new file mode 100644 index 0000000..08cb790 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse.h.i new file mode 100644 index 0000000..288856f Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse__c.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse__c.h.i new file mode 100644 index 0000000..6e90fd7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemvideo.c.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemvideo.c.i new file mode 100644 index 0000000..25efe68 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemvideo.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemvideo.h.i new file mode 100644 index 0000000..d66055b Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwindow.c.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwindow.c.i new file mode 100644 index 0000000..03d36a4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwindow.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwindow.h.i new file mode 100644 index 0000000..03fbaf4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwm.c.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwm.c.i new file mode 100644 index 0000000..cb99a92 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwm.c.i differ diff --git a/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwm__c.h.i b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwm__c.h.i new file mode 100644 index 0000000..5a7ae2c Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/_s_d_l__gemwm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/gem/~2ecvsignore.i b/SDL/.hg/store/data/src/video/gem/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/gem/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_makefile.am.i b/SDL/.hg/store/data/src/video/ggi/_makefile.am.i new file mode 100644 index 0000000..ad4923b Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggievents.c.i b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggievents.c.i new file mode 100644 index 0000000..d68171d Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggievents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggievents__c.h.i b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggievents__c.h.i new file mode 100644 index 0000000..c1bc566 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggievents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggikeys.h.i b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggikeys.h.i new file mode 100644 index 0000000..7643c53 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggikeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggimouse.c.i b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggimouse.c.i new file mode 100644 index 0000000..c1448da Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggimouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggimouse__c.h.i b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggimouse__c.h.i new file mode 100644 index 0000000..f7d6a05 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggimouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggivideo.c.i b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggivideo.c.i new file mode 100644 index 0000000..abee988 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggivideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggivideo.h.i b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggivideo.h.i new file mode 100644 index 0000000..a2165cc Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/_s_d_l__ggivideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/ggi/~2ecvsignore.i b/SDL/.hg/store/data/src/video/ggi/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ggi/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__glesfuncs.h.i b/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__glesfuncs.h.i new file mode 100644 index 0000000..5cc1883 Binary files /dev/null and b/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__glesfuncs.h.i differ diff --git a/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__renderer__gles.c.i b/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__renderer__gles.c.i new file mode 100644 index 0000000..373d14f Binary files /dev/null and b/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__renderer__gles.c.i differ diff --git a/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__renderer__gles.h.i b/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__renderer__gles.h.i new file mode 100644 index 0000000..e060cb3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/glesrenderer/_s_d_l__renderer__gles.h.i differ diff --git a/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__glfuncs.h.i b/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__glfuncs.h.i new file mode 100644 index 0000000..71823f2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__glfuncs.h.i differ diff --git a/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__renderer__gl.c.i b/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__renderer__gl.c.i new file mode 100644 index 0000000..fa55e4b Binary files /dev/null and b/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__renderer__gl.c.i differ diff --git a/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__renderer__gl.h.i b/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__renderer__gl.h.i new file mode 100644 index 0000000..82762de Binary files /dev/null and b/SDL/.hg/store/data/src/video/glrenderer/_s_d_l__renderer__gl.h.i differ diff --git a/SDL/.hg/store/data/src/video/glsdl/_s_d_l__glsdl.c.i b/SDL/.hg/store/data/src/video/glsdl/_s_d_l__glsdl.c.i new file mode 100644 index 0000000..139700b Binary files /dev/null and b/SDL/.hg/store/data/src/video/glsdl/_s_d_l__glsdl.c.i differ diff --git a/SDL/.hg/store/data/src/video/glsdl/_s_d_l__glsdl.h.i b/SDL/.hg/store/data/src/video/glsdl/_s_d_l__glsdl.h.i new file mode 100644 index 0000000..dce871a Binary files /dev/null and b/SDL/.hg/store/data/src/video/glsdl/_s_d_l__glsdl.h.i differ diff --git a/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkevents.c.i b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkevents.c.i new file mode 100644 index 0000000..0c25e25 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkevents__c.h.i b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkevents__c.h.i new file mode 100644 index 0000000..21a3803 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkmouse.c.i b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkmouse.c.i new file mode 100644 index 0000000..36322fd Binary files /dev/null and b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkmouse__c.h.i b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkmouse__c.h.i new file mode 100644 index 0000000..75b96a0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkvideo.c.i b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkvideo.c.i new file mode 100644 index 0000000..8229169 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkvideo.h.i b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkvideo.h.i new file mode 100644 index 0000000..1b56216 Binary files /dev/null and b/SDL/.hg/store/data/src/video/gtk/_s_d_l__gtkvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l___b_win.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l___b_win.h.i new file mode 100644 index 0000000..adea866 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l___b_win.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bclipboard.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bclipboard.cc.i new file mode 100644 index 0000000..c7d8373 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bclipboard.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bclipboard.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bclipboard.h.i new file mode 100644 index 0000000..9ed8943 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bclipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bevents.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bevents.cc.i new file mode 100644 index 0000000..420375d Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bevents.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bevents.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bevents.h.i new file mode 100644 index 0000000..07230bc Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bframebuffer.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bframebuffer.cc.i new file mode 100644 index 0000000..79c26d2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bframebuffer.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bframebuffer.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bframebuffer.h.i new file mode 100644 index 0000000..68ebe84 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bframebuffer.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bkeyboard.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bkeyboard.cc.i new file mode 100644 index 0000000..e8072a5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bkeyboard.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bkeyboard.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bkeyboard.h.i new file mode 100644 index 0000000..2a18cb3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bkeyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bmodes.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bmodes.cc.i new file mode 100644 index 0000000..921c692 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bmodes.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bmodes.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bmodes.h.i new file mode 100644 index 0000000..8ac487f Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bmodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bopengl.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bopengl.cc.i new file mode 100644 index 0000000..54c5017 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bopengl.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bopengl.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bopengl.h.i new file mode 100644 index 0000000..90cce8a Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bopengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bvideo.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bvideo.cc.i new file mode 100644 index 0000000..f33ae56 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bvideo.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bvideo.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bvideo.h.i new file mode 100644 index 0000000..9458137 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bwindow.cc.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bwindow.cc.i new file mode 100644 index 0000000..d932ca5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bwindow.cc.i differ diff --git a/SDL/.hg/store/data/src/video/haiku/_s_d_l__bwindow.h.i b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bwindow.h.i new file mode 100644 index 0000000..13d3e61 Binary files /dev/null and b/SDL/.hg/store/data/src/video/haiku/_s_d_l__bwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/ipod/_makefile.am.i b/SDL/.hg/store/data/src/video/ipod/_makefile.am.i new file mode 100644 index 0000000..8ebb01b Binary files /dev/null and b/SDL/.hg/store/data/src/video/ipod/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/ipod/_s_d_l__ipodvideo.c.i b/SDL/.hg/store/data/src/video/ipod/_s_d_l__ipodvideo.c.i new file mode 100644 index 0000000..b5bf59c Binary files /dev/null and b/SDL/.hg/store/data/src/video/ipod/_s_d_l__ipodvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/ipod/_s_d_l__ipodvideo.h.i b/SDL/.hg/store/data/src/video/ipod/_s_d_l__ipodvideo.h.i new file mode 100644 index 0000000..af88056 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ipod/_s_d_l__ipodvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/ipod/~2ecvsignore.i b/SDL/.hg/store/data/src/video/ipod/~2ecvsignore.i new file mode 100644 index 0000000..c703b48 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ipod/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_makefile.am.i b/SDL/.hg/store/data/src/video/maccommon/_makefile.am.i new file mode 100644 index 0000000..2f44b3c Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__lowvideo.h.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__lowvideo.h.i new file mode 100644 index 0000000..6a7cd2d Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__lowvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macevents.c.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macevents.c.i new file mode 100644 index 0000000..bc5805a Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macevents__c.h.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macevents__c.h.i new file mode 100644 index 0000000..4c02952 Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macgl.c.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macgl.c.i new file mode 100644 index 0000000..ab37b69 Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macgl.c.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macgl__c.h.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macgl__c.h.i new file mode 100644 index 0000000..6fbd2ff Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macgl__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__mackeys.h.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__mackeys.h.i new file mode 100644 index 0000000..b4cb54e Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__mackeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macmouse.c.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macmouse.c.i new file mode 100644 index 0000000..c18653f Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macmouse__c.h.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macmouse__c.h.i new file mode 100644 index 0000000..305e1ff Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macwm.c.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macwm.c.i new file mode 100644 index 0000000..e10724c Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macwm.c.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macwm__c.h.i b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macwm__c.h.i new file mode 100644 index 0000000..82ca828 Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/_s_d_l__macwm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/maccommon/~2ecvsignore.i b/SDL/.hg/store/data/src/video/maccommon/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/maccommon/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/macdsp/_makefile.am.i b/SDL/.hg/store/data/src/video/macdsp/_makefile.am.i new file mode 100644 index 0000000..c480506 Binary files /dev/null and b/SDL/.hg/store/data/src/video/macdsp/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/macdsp/_s_d_l__dspvideo.c.i b/SDL/.hg/store/data/src/video/macdsp/_s_d_l__dspvideo.c.i new file mode 100644 index 0000000..5f978a2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/macdsp/_s_d_l__dspvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/macdsp/_s_d_l__dspvideo.h.i b/SDL/.hg/store/data/src/video/macdsp/_s_d_l__dspvideo.h.i new file mode 100644 index 0000000..92d2841 Binary files /dev/null and b/SDL/.hg/store/data/src/video/macdsp/_s_d_l__dspvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/macdsp/~2ecvsignore.i b/SDL/.hg/store/data/src/video/macdsp/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/macdsp/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/macrom/_makefile.am.i b/SDL/.hg/store/data/src/video/macrom/_makefile.am.i new file mode 100644 index 0000000..c63ff94 Binary files /dev/null and b/SDL/.hg/store/data/src/video/macrom/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/macrom/_s_d_l__romvideo.c.i b/SDL/.hg/store/data/src/video/macrom/_s_d_l__romvideo.c.i new file mode 100644 index 0000000..d14d2ff Binary files /dev/null and b/SDL/.hg/store/data/src/video/macrom/_s_d_l__romvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/macrom/_s_d_l__romvideo.h.i b/SDL/.hg/store/data/src/video/macrom/_s_d_l__romvideo.h.i new file mode 100644 index 0000000..a5efc37 Binary files /dev/null and b/SDL/.hg/store/data/src/video/macrom/_s_d_l__romvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/macrom/~2ecvsignore.i b/SDL/.hg/store/data/src/video/macrom/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/macrom/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/math__private.h.i b/SDL/.hg/store/data/src/video/math__private.h.i new file mode 100644 index 0000000..54b9256 Binary files /dev/null and b/SDL/.hg/store/data/src/video/math__private.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirdyn.c.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirdyn.c.i new file mode 100644 index 0000000..dd56e8a Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirdyn.c.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirdyn.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirdyn.h.i new file mode 100644 index 0000000..f22d380 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirdyn.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirevents.c.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirevents.c.i new file mode 100644 index 0000000..890f5c7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirevents.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirevents.h.i new file mode 100644 index 0000000..95479c9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirframebuffer.c.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirframebuffer.c.i new file mode 100644 index 0000000..37072a0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirframebuffer.c.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirframebuffer.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirframebuffer.h.i new file mode 100644 index 0000000..170781d Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirframebuffer.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirmouse.c.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirmouse.c.i new file mode 100644 index 0000000..4e500f2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirmouse.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirmouse.h.i new file mode 100644 index 0000000..c11b6dc Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__miropengl.c.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__miropengl.c.i new file mode 100644 index 0000000..0b3e93e Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__miropengl.c.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__miropengl.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__miropengl.h.i new file mode 100644 index 0000000..46d740b Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__miropengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirsym.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirsym.h.i new file mode 100644 index 0000000..0c35c45 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirsym.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirvideo.c.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirvideo.c.i new file mode 100644 index 0000000..27df2c0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirvideo.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirvideo.h.i new file mode 100644 index 0000000..3a9c511 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirwindow.c.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirwindow.c.i new file mode 100644 index 0000000..74a2347 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirwindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/mir/_s_d_l__mirwindow.h.i b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirwindow.h.i new file mode 100644 index 0000000..346ec95 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mir/_s_d_l__mirwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/mmx.h.i b/SDL/.hg/store/data/src/video/mmx.h.i new file mode 100644 index 0000000..81cc306 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mmx.h.i differ diff --git a/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6events.c.i b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6events.c.i new file mode 100644 index 0000000..181ebd0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6events.c.i differ diff --git a/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6events__c.h.i b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6events__c.h.i new file mode 100644 index 0000000..28b06f9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6events__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6opengles.c.i b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6opengles.c.i new file mode 100644 index 0000000..b654d74 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6opengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6opengles.h.i b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6opengles.h.i new file mode 100644 index 0000000..847ea90 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6opengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6video.c.i b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6video.c.i new file mode 100644 index 0000000..4bd1d70 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6video.c.i differ diff --git a/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6video.h.i b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6video.h.i new file mode 100644 index 0000000..1cbd467 Binary files /dev/null and b/SDL/.hg/store/data/src/video/mx6/_s_d_l__mx6video.h.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclevents.c.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclevents.c.i new file mode 100644 index 0000000..05d2ba8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclevents__c.h.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclevents__c.h.i new file mode 100644 index 0000000..c62bafe Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclglue.c.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclglue.c.i new file mode 100644 index 0000000..00eaeed Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclglue.c.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclopengles.c.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclopengles.c.i new file mode 100644 index 0000000..5c3b198 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclopengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclopengles.h.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclopengles.h.i new file mode 100644 index 0000000..60799f7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclvideo.c.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclvideo.c.i new file mode 100644 index 0000000..e46caf3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclvideo.h.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclvideo.h.i new file mode 100644 index 0000000..cff2a2d Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclwindow.c.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclwindow.c.i new file mode 100644 index 0000000..74688d5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclwindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclwindow.h.i b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclwindow.h.i new file mode 100644 index 0000000..c41f453 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nacl/_s_d_l__naclwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_makefile.am.i b/SDL/.hg/store/data/src/video/nanox/_makefile.am.i new file mode 100644 index 0000000..fe5b582 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxevents.c.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxevents.c.i new file mode 100644 index 0000000..45c6b59 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxevents__c.h.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxevents__c.h.i new file mode 100644 index 0000000..2eb3390 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nximage.c.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nximage.c.i new file mode 100644 index 0000000..a500a1a Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nximage.c.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nximage__c.h.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nximage__c.h.i new file mode 100644 index 0000000..1d28245 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nximage__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmodes.c.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmodes.c.i new file mode 100644 index 0000000..14f845d Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmodes.c.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmodes__c.h.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmodes__c.h.i new file mode 100644 index 0000000..1d427bb Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmodes__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmouse.c.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmouse.c.i new file mode 100644 index 0000000..d33b123 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmouse__c.h.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmouse__c.h.i new file mode 100644 index 0000000..d611a38 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxvideo.c.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxvideo.c.i new file mode 100644 index 0000000..24232bb Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxvideo.h.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxvideo.h.i new file mode 100644 index 0000000..5d28b64 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxwm.c.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxwm.c.i new file mode 100644 index 0000000..e49104c Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxwm.c.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxwm__c.h.i b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxwm__c.h.i new file mode 100644 index 0000000..fca8f1a Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/_s_d_l__nxwm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nanox/~2ecvsignore.i b/SDL/.hg/store/data/src/video/nanox/~2ecvsignore.i new file mode 100644 index 0000000..fbf7896 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nanox/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsevents.c.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsevents.c.i new file mode 100644 index 0000000..3095473 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsevents__c.h.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsevents__c.h.i new file mode 100644 index 0000000..f45c1d7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsmouse.c.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsmouse.c.i new file mode 100644 index 0000000..55ca144 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsmouse__c.h.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsmouse__c.h.i new file mode 100644 index 0000000..1dce786 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsrender.c.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsrender.c.i new file mode 100644 index 0000000..a55e606 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsrender.c.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsrender__c.h.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsrender__c.h.i new file mode 100644 index 0000000..c29b6b1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsrender__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsvideo.c.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsvideo.c.i new file mode 100644 index 0000000..dc03edc Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsvideo.h.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsvideo.h.i new file mode 100644 index 0000000..daef765 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndsvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndswindow.c.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndswindow.c.i new file mode 100644 index 0000000..d0d3522 Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndswindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/nds/_s_d_l__ndswindow.h.i b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndswindow.h.i new file mode 100644 index 0000000..2c9ab2b Binary files /dev/null and b/SDL/.hg/store/data/src/video/nds/_s_d_l__ndswindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/os2fslib/_makefile.am.i b/SDL/.hg/store/data/src/video/os2fslib/_makefile.am.i new file mode 100644 index 0000000..405bf24 Binary files /dev/null and b/SDL/.hg/store/data/src/video/os2fslib/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__os2fslib.c.i b/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__os2fslib.c.i new file mode 100644 index 0000000..7118e0d Binary files /dev/null and b/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__os2fslib.c.i differ diff --git a/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__os2fslib.h.i b/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__os2fslib.h.i new file mode 100644 index 0000000..31f4dc5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__os2fslib.h.i differ diff --git a/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__vkeys.h.i b/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__vkeys.h.i new file mode 100644 index 0000000..d577b95 Binary files /dev/null and b/SDL/.hg/store/data/src/video/os2fslib/_s_d_l__vkeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/os2fslib/~2ecvsignore.i b/SDL/.hg/store/data/src/video/os2fslib/~2ecvsignore.i new file mode 100644 index 0000000..c703b48 Binary files /dev/null and b/SDL/.hg/store/data/src/video/os2fslib/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora.c.i b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora.c.i new file mode 100644 index 0000000..f9eb96f Binary files /dev/null and b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora.c.i differ diff --git a/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora.h.i b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora.h.i new file mode 100644 index 0000000..31cb057 Binary files /dev/null and b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora.h.i differ diff --git a/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora__events.c.i b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora__events.c.i new file mode 100644 index 0000000..60de297 Binary files /dev/null and b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora__events.c.i differ diff --git a/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora__events.h.i b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora__events.h.i new file mode 100644 index 0000000..09abb03 Binary files /dev/null and b/SDL/.hg/store/data/src/video/pandora/_s_d_l__pandora__events.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_makefile.am.i b/SDL/.hg/store/data/src/video/photon/_makefile.am.i new file mode 100644 index 0000000..e89b1ac Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__events.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__events.c.i new file mode 100644 index 0000000..61a72dc Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__events.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__events__c.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__events__c.h.i new file mode 100644 index 0000000..bb6e81a Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__events__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__gl.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__gl.c.i new file mode 100644 index 0000000..a8dbf96 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__gl.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__gl.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__gl.h.i new file mode 100644 index 0000000..c80ec04 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__gl.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__image.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__image.c.i new file mode 100644 index 0000000..aab9ee8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__image.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__image__c.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__image__c.h.i new file mode 100644 index 0000000..6f0041f Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__image__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__modes.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__modes.c.i new file mode 100644 index 0000000..20c2cc1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__modes.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__modes__c.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__modes__c.h.i new file mode 100644 index 0000000..33b6d8e Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__modes__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__mouse.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__mouse.c.i new file mode 100644 index 0000000..aa3544f Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__mouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__mouse__c.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__mouse__c.h.i new file mode 100644 index 0000000..c4d7b20 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__mouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__video.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__video.c.i new file mode 100644 index 0000000..34bf78b Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__video.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__video.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__video.h.i new file mode 100644 index 0000000..0b1bcba Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__video.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__wm.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__wm.c.i new file mode 100644 index 0000000..890d786 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__wm.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__wm__c.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__wm__c.h.i new file mode 100644 index 0000000..1c92898 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__ph__wm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon.c.i new file mode 100644 index 0000000..4ad78fd Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon.h.i new file mode 100644 index 0000000..5ba5ba7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__input.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__input.c.i new file mode 100644 index 0000000..957d8bd Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__input.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__input.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__input.h.i new file mode 100644 index 0000000..6850805 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__input.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__keycodes.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__keycodes.h.i new file mode 100644 index 0000000..8c82dab Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__keycodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__pixelfmt.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__pixelfmt.c.i new file mode 100644 index 0000000..3a1cb2a Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__pixelfmt.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__pixelfmt.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__pixelfmt.h.i new file mode 100644 index 0000000..9a8944f Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__pixelfmt.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__render.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__render.c.i new file mode 100644 index 0000000..0127a62 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__render.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__render.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__render.h.i new file mode 100644 index 0000000..0ca0f78 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__photon__render.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__phyuv.c.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__phyuv.c.i new file mode 100644 index 0000000..66e9a97 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__phyuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/photon/_s_d_l__phyuv__c.h.i b/SDL/.hg/store/data/src/video/photon/_s_d_l__phyuv__c.h.i new file mode 100644 index 0000000..1eec193 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/_s_d_l__phyuv__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/photon/~2ecvsignore.i b/SDL/.hg/store/data/src/video/photon/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/photon/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/picogui/_makefile.am.i b/SDL/.hg/store/data/src/video/picogui/_makefile.am.i new file mode 100644 index 0000000..c1b389e Binary files /dev/null and b/SDL/.hg/store/data/src/video/picogui/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgevents.c.i b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgevents.c.i new file mode 100644 index 0000000..4fe345e Binary files /dev/null and b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgevents__c.h.i b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgevents__c.h.i new file mode 100644 index 0000000..846d810 Binary files /dev/null and b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgvideo.c.i b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgvideo.c.i new file mode 100644 index 0000000..b17ce40 Binary files /dev/null and b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgvideo.h.i b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgvideo.h.i new file mode 100644 index 0000000..b8c87bf Binary files /dev/null and b/SDL/.hg/store/data/src/video/picogui/_s_d_l__pgvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/picogui/~2ecvsignore.i b/SDL/.hg/store/data/src/video/picogui/~2ecvsignore.i new file mode 100644 index 0000000..743692c Binary files /dev/null and b/SDL/.hg/store/data/src/video/picogui/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_makefile.am.i b/SDL/.hg/store/data/src/video/ps2gs/_makefile.am.i new file mode 100644 index 0000000..75ea9f7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsevents.c.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsevents.c.i new file mode 100644 index 0000000..02a3daa Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsevents__c.h.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsevents__c.h.i new file mode 100644 index 0000000..92d5019 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gskeys.h.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gskeys.h.i new file mode 100644 index 0000000..712203c Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gskeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsmouse.c.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsmouse.c.i new file mode 100644 index 0000000..f5110d4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsmouse__c.h.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsmouse__c.h.i new file mode 100644 index 0000000..57afda6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsvideo.c.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsvideo.c.i new file mode 100644 index 0000000..b4985a6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsvideo.h.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsvideo.h.i new file mode 100644 index 0000000..d764078 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsyuv.c.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsyuv.c.i new file mode 100644 index 0000000..43c7112 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsyuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsyuv__c.h.i b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsyuv__c.h.i new file mode 100644 index 0000000..0fb8e25 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/_s_d_l__gsyuv__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps2gs/~2ecvsignore.i b/SDL/.hg/store/data/src/video/ps2gs/~2ecvsignore.i new file mode 100644 index 0000000..f0dd0e0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps2gs/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3events.c.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3events.c.i new file mode 100644 index 0000000..0300666 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3events.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3events__c.h.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3events__c.h.i new file mode 100644 index 0000000..7dc5243 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3events__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3modes.c.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3modes.c.i new file mode 100644 index 0000000..9dfeb2c Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3modes.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3modes__c.h.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3modes__c.h.i new file mode 100644 index 0000000..226080d Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3modes__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3render.c.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3render.c.i new file mode 100644 index 0000000..9118561 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3render.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3render__c.h.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3render__c.h.i new file mode 100644 index 0000000..7bbe675 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3render__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3spe.c.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3spe.c.i new file mode 100644 index 0000000..633f087 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3spe.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3spe__c.h.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3spe__c.h.i new file mode 100644 index 0000000..f7e1455 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3spe__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3video.c.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3video.c.i new file mode 100644 index 0000000..5050796 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3video.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3video.h.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3video.h.i new file mode 100644 index 0000000..64d7332 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3video.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3yuv.c.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3yuv.c.i new file mode 100644 index 0000000..3d36167 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3yuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3yuv__c.h.i b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3yuv__c.h.i new file mode 100644 index 0000000..a0be929 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/_s_d_l__ps3yuv__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/spulibs/_makefile.i b/SDL/.hg/store/data/src/video/ps3/spulibs/_makefile.i new file mode 100644 index 0000000..3f86c8d Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/spulibs/_makefile.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/spulibs/bilin__scaler.c.i b/SDL/.hg/store/data/src/video/ps3/spulibs/bilin__scaler.c.i new file mode 100644 index 0000000..7a67b07 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/spulibs/bilin__scaler.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/spulibs/fb__writer.c.i b/SDL/.hg/store/data/src/video/ps3/spulibs/fb__writer.c.i new file mode 100644 index 0000000..1227bf8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/spulibs/fb__writer.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/spulibs/spu__common.h.i b/SDL/.hg/store/data/src/video/ps3/spulibs/spu__common.h.i new file mode 100644 index 0000000..b1ef9db Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/spulibs/spu__common.h.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/spulibs/yuv2rgb.c.i b/SDL/.hg/store/data/src/video/ps3/spulibs/yuv2rgb.c.i new file mode 100644 index 0000000..21e8da0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/spulibs/yuv2rgb.c.i differ diff --git a/SDL/.hg/store/data/src/video/ps3/spulibs/yuv2rgb__converter.c.i b/SDL/.hg/store/data/src/video/ps3/spulibs/yuv2rgb__converter.c.i new file mode 100644 index 0000000..acc8d68 Binary files /dev/null and b/SDL/.hg/store/data/src/video/ps3/spulibs/yuv2rgb__converter.c.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspevents.c.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspevents.c.i new file mode 100644 index 0000000..61007cd Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspevents__c.h.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspevents__c.h.i new file mode 100644 index 0000000..5aa4c13 Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspgl.c.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspgl.c.i new file mode 100644 index 0000000..5b4302f Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspgl.c.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspgl__c.h.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspgl__c.h.i new file mode 100644 index 0000000..4c1cca9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspgl__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspmouse.c.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspmouse.c.i new file mode 100644 index 0000000..9c98875 Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspmouse__c.h.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspmouse__c.h.i new file mode 100644 index 0000000..adb4a7e Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspvideo.c.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspvideo.c.i new file mode 100644 index 0000000..f0dec1b Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/psp/_s_d_l__pspvideo.h.i b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspvideo.h.i new file mode 100644 index 0000000..b5ef610 Binary files /dev/null and b/SDL/.hg/store/data/src/video/psp/_s_d_l__pspvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__input.c.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__input.c.i new file mode 100644 index 0000000..00a6d64 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__input.c.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__input.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__input.h.i new file mode 100644 index 0000000..480265e Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__input.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__opengles.c.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__opengles.c.i new file mode 100644 index 0000000..119bc84 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__opengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__opengles.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__opengles.h.i new file mode 100644 index 0000000..1a9c862 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__opengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__pixelfmt.c.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__pixelfmt.c.i new file mode 100644 index 0000000..a2dc46b Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__pixelfmt.c.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__pixelfmt.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__pixelfmt.h.i new file mode 100644 index 0000000..133b497 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__pixelfmt.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__render.c.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__render.c.i new file mode 100644 index 0000000..53761e1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__render.c.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__render.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__render.h.i new file mode 100644 index 0000000..707abae Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__gf__render.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__joystick.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__joystick.h.i new file mode 100644 index 0000000..d1a7149 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__joystick.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__keyboard.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__keyboard.h.i new file mode 100644 index 0000000..c36ab79 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__keyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__mouse.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__mouse.h.i new file mode 100644 index 0000000..80f79c3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__hiddi__mouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__qnxgf.c.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__qnxgf.c.i new file mode 100644 index 0000000..7f7d32e Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__qnxgf.c.i differ diff --git a/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__qnxgf.h.i b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__qnxgf.h.i new file mode 100644 index 0000000..d2b36c0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qnxgf/_s_d_l__qnxgf.h.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_makefile.am.i b/SDL/.hg/store/data/src/video/qtopia/_makefile.am.i new file mode 100644 index 0000000..843258f Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_p_e_app.cc.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_p_e_app.cc.i new file mode 100644 index 0000000..965479b Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_p_e_app.cc.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_p_e_app.h.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_p_e_app.h.i new file mode 100644 index 0000000..0b56e4f Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_p_e_app.h.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_win.cc.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_win.cc.i new file mode 100644 index 0000000..36a6c51 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_win.cc.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_win.h.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_win.h.i new file mode 100644 index 0000000..cdd68d9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l___q_win.h.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__lowvideo.h.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__lowvideo.h.i new file mode 100644 index 0000000..28ad4dc Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__lowvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysevents.cc.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysevents.cc.i new file mode 100644 index 0000000..3f074ce Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysevents.cc.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysevents__c.h.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysevents__c.h.i new file mode 100644 index 0000000..bea8ac9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysmouse.cc.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysmouse.cc.i new file mode 100644 index 0000000..fb5a7b5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysmouse.cc.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysmouse__c.h.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysmouse__c.h.i new file mode 100644 index 0000000..d841058 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysvideo.cc.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysvideo.cc.i new file mode 100644 index 0000000..718da43 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__sysvideo.cc.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__syswm.cc.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__syswm.cc.i new file mode 100644 index 0000000..da824cd Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__syswm.cc.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/_s_d_l__syswm__c.h.i b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__syswm__c.h.i new file mode 100644 index 0000000..adbed8f Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/_s_d_l__syswm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/qtopia/~2ecvsignore.i b/SDL/.hg/store/data/src/video/qtopia/~2ecvsignore.i new file mode 100644 index 0000000..6976862 Binary files /dev/null and b/SDL/.hg/store/data/src/video/qtopia/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_c_g_s.h.i b/SDL/.hg/store/data/src/video/quartz/_c_g_s.h.i new file mode 100644 index 0000000..c7db035 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_c_g_s.h.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_makefile.am.i b/SDL/.hg/store/data/src/video/quartz/_makefile.am.i new file mode 100644 index 0000000..c20c09b Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_events.m.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_events.m.i new file mode 100644 index 0000000..4992e8d Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_events.m.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_g_l.m.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_g_l.m.i new file mode 100644 index 0000000..c2ab9d6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_g_l.m.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_keys.h.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_keys.h.i new file mode 100644 index 0000000..5c3fa6c Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_keys.h.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_video.h.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_video.h.i new file mode 100644 index 0000000..c4bdc5b Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_video.h.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_video.m.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_video.m.i new file mode 100644 index 0000000..939e310 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_video.m.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_w_m.h.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_w_m.h.i new file mode 100644 index 0000000..94644f8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_w_m.h.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_w_m.m.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_w_m.m.i new file mode 100644 index 0000000..78ecae3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_w_m.m.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_window.h.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_window.h.i new file mode 100644 index 0000000..bf2e6c9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_window.h.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_window.m.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_window.m.i new file mode 100644 index 0000000..eb4c302 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_window.m.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_y_u_v.m.i b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_y_u_v.m.i new file mode 100644 index 0000000..931aeaf Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/_s_d_l___quartz_y_u_v.m.i differ diff --git a/SDL/.hg/store/data/src/video/quartz/~2ecvsignore.i b/SDL/.hg/store/data/src/video/quartz/~2ecvsignore.i new file mode 100644 index 0000000..e53dc58 Binary files /dev/null and b/SDL/.hg/store/data/src/video/quartz/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpievents.c.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpievents.c.i new file mode 100644 index 0000000..4c67248 Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpievents.c.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpievents__c.h.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpievents__c.h.i new file mode 100644 index 0000000..b1fbe31 Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpievents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpimouse.c.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpimouse.c.i new file mode 100644 index 0000000..f4ff27c Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpimouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpimouse.h.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpimouse.h.i new file mode 100644 index 0000000..50b9d27 Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpimouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpiopengles.c.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpiopengles.c.i new file mode 100644 index 0000000..1e49525 Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpiopengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpiopengles.h.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpiopengles.h.i new file mode 100644 index 0000000..d1cb53c Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpiopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpivideo.c.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpivideo.c.i new file mode 100644 index 0000000..d1ee39f Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpivideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpivideo.h.i b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpivideo.h.i new file mode 100644 index 0000000..b87a69b Binary files /dev/null and b/SDL/.hg/store/data/src/video/raspberry/_s_d_l__rpivideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_makefile.am.i b/SDL/.hg/store/data/src/video/riscos/_makefile.am.i new file mode 100644 index 0000000..6b1eea5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_a_s_m._s.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_a_s_m._s.i new file mode 100644 index 0000000..183e7c6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_a_s_m._s.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_a_s_m.s.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_a_s_m.s.i new file mode 100644 index 0000000..14e2db5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_a_s_m.s.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_full_screen_video.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_full_screen_video.c.i new file mode 100644 index 0000000..e30bcce Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscos_full_screen_video.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosevents.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosevents.c.i new file mode 100644 index 0000000..48ab452 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosevents__c.h.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosevents__c.h.i new file mode 100644 index 0000000..6eb05cc Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosmouse.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosmouse.c.i new file mode 100644 index 0000000..539b6b5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosmouse__c.h.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosmouse__c.h.i new file mode 100644 index 0000000..97244e3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscossprite.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscossprite.c.i new file mode 100644 index 0000000..2b8c2e6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscossprite.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscostask.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscostask.c.i new file mode 100644 index 0000000..3d82e40 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscostask.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscostask.h.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscostask.h.i new file mode 100644 index 0000000..24226f6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscostask.h.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosvideo.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosvideo.c.i new file mode 100644 index 0000000..2a028a0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosvideo.h.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosvideo.h.i new file mode 100644 index 0000000..3c4759a Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__riscosvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__wimppoll.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__wimppoll.c.i new file mode 100644 index 0000000..169823d Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__wimppoll.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/_s_d_l__wimpvideo.c.i b/SDL/.hg/store/data/src/video/riscos/_s_d_l__wimpvideo.c.i new file mode 100644 index 0000000..d4451ae Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/_s_d_l__wimpvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/riscos/~2ecvsignore.i b/SDL/.hg/store/data/src/video/riscos/~2ecvsignore.i new file mode 100644 index 0000000..a2dfb6a Binary files /dev/null and b/SDL/.hg/store/data/src/video/riscos/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/sdlgenblit.pl.i b/SDL/.hg/store/data/src/video/sdlgenblit.pl.i new file mode 100644 index 0000000..96afafe Binary files /dev/null and b/SDL/.hg/store/data/src/video/sdlgenblit.pl.i differ diff --git a/SDL/.hg/store/data/src/video/svga/_makefile.am.i b/SDL/.hg/store/data/src/video/svga/_makefile.am.i new file mode 100644 index 0000000..e21313b Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/svga/_s_d_l__svgaevents.c.i b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgaevents.c.i new file mode 100644 index 0000000..d70c89b Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgaevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/svga/_s_d_l__svgaevents__c.h.i b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgaevents__c.h.i new file mode 100644 index 0000000..1936643 Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgaevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/svga/_s_d_l__svgamouse.c.i b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgamouse.c.i new file mode 100644 index 0000000..dc22e02 Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgamouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/svga/_s_d_l__svgamouse__c.h.i b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgamouse__c.h.i new file mode 100644 index 0000000..07171bc Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgamouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/svga/_s_d_l__svgavideo.c.i b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgavideo.c.i new file mode 100644 index 0000000..d7570aa Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgavideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/svga/_s_d_l__svgavideo.h.i b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgavideo.h.i new file mode 100644 index 0000000..73569bf Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/_s_d_l__svgavideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/svga/~2ecvsignore.i b/SDL/.hg/store/data/src/video/svga/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/svga/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocevents.cpp.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocevents.cpp.i new file mode 100644 index 0000000..dcf530f Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocevents.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocvideo.cpp.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocvideo.cpp.i new file mode 100644 index 0000000..09e76f3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocvideo.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocvideo.h.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocvideo.h.i new file mode 100644 index 0000000..0951466 Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a1/_s_d_l__epocvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocevents.cpp.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocevents.cpp.i new file mode 100644 index 0000000..5ea5534 Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocevents.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocvideo.cpp.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocvideo.cpp.i new file mode 100644 index 0000000..c9d3067 Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocvideo.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocvideo.h.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocvideo.h.i new file mode 100644 index 0000000..b4e3ce1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/_s_d_l__epocvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa.cpp.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa.cpp.i new file mode 100644 index 0000000..fc8770d Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa__new.cpp.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa__new.cpp.i new file mode 100644 index 0000000..35c7ada Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa__new.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa__old.cpp.i b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa__old.cpp.i new file mode 100644 index 0000000..00f72e4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_e_k_a2/dsa__old.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/symbian/_s_d_l__epocevents__c.h.i b/SDL/.hg/store/data/src/video/symbian/_s_d_l__epocevents__c.h.i new file mode 100644 index 0000000..6419ccb Binary files /dev/null and b/SDL/.hg/store/data/src/video/symbian/_s_d_l__epocevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitappdelegate.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitappdelegate.h.i new file mode 100644 index 0000000..c5d8f24 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitappdelegate.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitappdelegate.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitappdelegate.m.i new file mode 100644 index 0000000..fd0be56 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitappdelegate.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitclipboard.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitclipboard.h.i new file mode 100644 index 0000000..d74f021 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitclipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitclipboard.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitclipboard.m.i new file mode 100644 index 0000000..a4f4d0c Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitclipboard.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitevents.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitevents.h.i new file mode 100644 index 0000000..d068d22 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitevents.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitevents.m.i new file mode 100644 index 0000000..7c6a3da Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitevents.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitkeyboard.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitkeyboard.h.i new file mode 100644 index 0000000..b74a3eb Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitkeyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitkeyboard.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitkeyboard.m.i new file mode 100644 index 0000000..fcf8d1b Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitkeyboard.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmessagebox.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmessagebox.h.i new file mode 100644 index 0000000..67594e6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmessagebox.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmessagebox.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmessagebox.m.i new file mode 100644 index 0000000..5efa341 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmessagebox.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmodes.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmodes.h.i new file mode 100644 index 0000000..cdc8ffb Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmodes.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmodes.m.i new file mode 100644 index 0000000..6f94355 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitmodes.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopengles.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopengles.h.i new file mode 100644 index 0000000..ee641de Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopengles.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopengles.m.i new file mode 100644 index 0000000..e7aaf44 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopengles.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopenglview.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopenglview.h.i new file mode 100644 index 0000000..ab6b4ce Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopenglview.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopenglview.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopenglview.m.i new file mode 100644 index 0000000..f6805f3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitopenglview.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitvideo.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitvideo.h.i new file mode 100644 index 0000000..f6039b5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitvideo.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitvideo.m.i new file mode 100644 index 0000000..ddfbe8c Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitvideo.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitview.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitview.h.i new file mode 100644 index 0000000..2131180 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitview.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitview.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitview.m.i new file mode 100644 index 0000000..a31c357 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitview.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitviewcontroller.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitviewcontroller.h.i new file mode 100644 index 0000000..6f73ddd Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitviewcontroller.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitviewcontroller.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitviewcontroller.m.i new file mode 100644 index 0000000..d713d81 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitviewcontroller.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitwindow.h.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitwindow.h.i new file mode 100644 index 0000000..584f5ea Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitwindow.m.i b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitwindow.m.i new file mode 100644 index 0000000..4ab8e8b Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/_s_d_l__uikitwindow.m.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/jump.c.i b/SDL/.hg/store/data/src/video/uikit/jump.c.i new file mode 100644 index 0000000..085ad5f Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/jump.c.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/jump.h.i b/SDL/.hg/store/data/src/video/uikit/jump.h.i new file mode 100644 index 0000000..d94823e Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/jump.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/jumphack.c.i b/SDL/.hg/store/data/src/video/uikit/jumphack.c.i new file mode 100644 index 0000000..aac4054 Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/jumphack.c.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/jumphack.h.i b/SDL/.hg/store/data/src/video/uikit/jumphack.h.i new file mode 100644 index 0000000..15bb6ae Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/jumphack.h.i differ diff --git a/SDL/.hg/store/data/src/video/uikit/keyinfotable.h.i b/SDL/.hg/store/data/src/video/uikit/keyinfotable.h.i new file mode 100644 index 0000000..751824d Binary files /dev/null and b/SDL/.hg/store/data/src/video/uikit/keyinfotable.h.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/_makefile.am.i b/SDL/.hg/store/data/src/video/vgl/_makefile.am.i new file mode 100644 index 0000000..67ed93b Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglevents.c.i b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglevents.c.i new file mode 100644 index 0000000..d19f43b Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglevents__c.h.i b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglevents__c.h.i new file mode 100644 index 0000000..89aad88 Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglmouse.c.i b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglmouse.c.i new file mode 100644 index 0000000..dd6e113 Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglmouse__c.h.i b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglmouse__c.h.i new file mode 100644 index 0000000..51bb62d Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglvideo.c.i b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglvideo.c.i new file mode 100644 index 0000000..f0f773f Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglvideo.h.i b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglvideo.h.i new file mode 100644 index 0000000..282c0f5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/_s_d_l__vglvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/vgl/~2ecvsignore.i b/SDL/.hg/store/data/src/video/vgl/~2ecvsignore.i new file mode 100644 index 0000000..7383617 Binary files /dev/null and b/SDL/.hg/store/data/src/video/vgl/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteopengles.c.i b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteopengles.c.i new file mode 100644 index 0000000..c5f03fe Binary files /dev/null and b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteopengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteopengles.h.i b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteopengles.h.i new file mode 100644 index 0000000..2182cde Binary files /dev/null and b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteplatform.c.i b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteplatform.c.i new file mode 100644 index 0000000..d983125 Binary files /dev/null and b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteplatform.c.i differ diff --git a/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteplatform.h.i b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteplatform.h.i new file mode 100644 index 0000000..793911a Binary files /dev/null and b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivanteplatform.h.i differ diff --git a/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivantevideo.c.i b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivantevideo.c.i new file mode 100644 index 0000000..cb5088d Binary files /dev/null and b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivantevideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivantevideo.h.i b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivantevideo.h.i new file mode 100644 index 0000000..336eb26 Binary files /dev/null and b/SDL/.hg/store/data/src/video/vivante/_s_d_l__vivantevideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylanddyn.c.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylanddyn.c.i new file mode 100644 index 0000000..de411a5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylanddyn.c.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylanddyn.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylanddyn.h.i new file mode 100644 index 0000000..029f68e Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylanddyn.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandevents.c.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandevents.c.i new file mode 100644 index 0000000..bb9b680 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandevents__c.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandevents__c.h.i new file mode 100644 index 0000000..2c453a6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandmouse.c.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandmouse.c.i new file mode 100644 index 0000000..5fb277d Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandmouse.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandmouse.h.i new file mode 100644 index 0000000..7595abd Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandopengles.c.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandopengles.c.i new file mode 100644 index 0000000..c05e096 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandopengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandopengles.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandopengles.h.i new file mode 100644 index 0000000..989f350 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandsym.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandsym.h.i new file mode 100644 index 0000000..ae3e8e5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandsym.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandtouch.c.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandtouch.c.i new file mode 100644 index 0000000..7d93442 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandtouch.c.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandtouch.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandtouch.h.i new file mode 100644 index 0000000..d66196c Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandtouch.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandvideo.c.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandvideo.c.i new file mode 100644 index 0000000..87d4c20 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandvideo.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandvideo.h.i new file mode 100644 index 0000000..864451c Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandwindow.c.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandwindow.c.i new file mode 100644 index 0000000..ff13ca5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandwindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandwindow.h.i b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandwindow.h.i new file mode 100644 index 0000000..a919d1e Binary files /dev/null and b/SDL/.hg/store/data/src/video/wayland/_s_d_l__waylandwindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__ceddrawrender.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__ceddrawrender.c.i new file mode 100644 index 0000000..c8bfed8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__ceddrawrender.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__ceddrawrender.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__ceddrawrender.h.i new file mode 100644 index 0000000..06351c3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__ceddrawrender.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__d3drender.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__d3drender.c.i new file mode 100644 index 0000000..d35fd78 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__d3drender.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__d3drender.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__d3drender.h.i new file mode 100644 index 0000000..964a19b Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__d3drender.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__dibrender.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__dibrender.c.i new file mode 100644 index 0000000..a544e22 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__dibrender.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__dibrender.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__dibrender.h.i new file mode 100644 index 0000000..7783ab6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__dibrender.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender.c.i new file mode 100644 index 0000000..5fb7f85 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender.h.i new file mode 100644 index 0000000..d05d791 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender__c.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender__c.h.i new file mode 100644 index 0000000..f3fc0d5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__gapirender__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__gdirender.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__gdirender.c.i new file mode 100644 index 0000000..abe763e Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__gdirender.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__gdirender.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__gdirender.h.i new file mode 100644 index 0000000..b78c1f1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__gdirender.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__msctf.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__msctf.h.i new file mode 100644 index 0000000..3bb9ce0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__msctf.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__shape.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__shape.c.i new file mode 100644 index 0000000..41da039 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__shape.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__vkeys.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__vkeys.h.i new file mode 100644 index 0000000..25c9f09 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__vkeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32clipboard.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32clipboard.c.i new file mode 100644 index 0000000..6d3a525 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32clipboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32clipboard.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32clipboard.h.i new file mode 100644 index 0000000..aabf31e Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32clipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32events.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32events.c.i new file mode 100644 index 0000000..a071b8a Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32events.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32events.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32events.h.i new file mode 100644 index 0000000..72dbf45 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32events.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32gamma.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32gamma.c.i new file mode 100644 index 0000000..ff04717 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32gamma.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32gamma.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32gamma.h.i new file mode 100644 index 0000000..ba1145b Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32gamma.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32keyboard.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32keyboard.c.i new file mode 100644 index 0000000..40ab1e8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32keyboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32keyboard.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32keyboard.h.i new file mode 100644 index 0000000..5a47726 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32keyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32modes.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32modes.c.i new file mode 100644 index 0000000..fca20d0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32modes.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32modes.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32modes.h.i new file mode 100644 index 0000000..7a7a26a Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32modes.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32mouse.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32mouse.c.i new file mode 100644 index 0000000..b8caafe Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32mouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32mouse.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32mouse.h.i new file mode 100644 index 0000000..445ca51 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32mouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32opengl.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32opengl.c.i new file mode 100644 index 0000000..ff119fd Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32opengl.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32opengl.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32opengl.h.i new file mode 100644 index 0000000..888918d Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32opengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32shape.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32shape.c.i new file mode 100644 index 0000000..cc831c8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32shape.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32shape.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32shape.h.i new file mode 100644 index 0000000..87dec41 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32shape.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32video.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32video.c.i new file mode 100644 index 0000000..a58a322 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32video.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32video.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32video.h.i new file mode 100644 index 0000000..c90c1de Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32video.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32window.c.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32window.c.i new file mode 100644 index 0000000..854de96 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32window.c.i differ diff --git a/SDL/.hg/store/data/src/video/win32/_s_d_l__win32window.h.i b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32window.h.i new file mode 100644 index 0000000..f26692b Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/_s_d_l__win32window.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/wactab/pktdef.h.i b/SDL/.hg/store/data/src/video/win32/wactab/pktdef.h.i new file mode 100644 index 0000000..4cff8e6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/wactab/pktdef.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/wactab/wintab.h.i b/SDL/.hg/store/data/src/video/win32/wactab/wintab.h.i new file mode 100644 index 0000000..305bbd6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/wactab/wintab.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/wactab/wintabx.h.i b/SDL/.hg/store/data/src/video/win32/wactab/wintabx.h.i new file mode 100644 index 0000000..a0a242a Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/wactab/wintabx.h.i differ diff --git a/SDL/.hg/store/data/src/video/win32/wmmsg.h.i b/SDL/.hg/store/data/src/video/win32/wmmsg.h.i new file mode 100644 index 0000000..f3127c4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/win32/wmmsg.h.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_makefile.am.i b/SDL/.hg/store/data/src/video/wincommon/_makefile.am.i new file mode 100644 index 0000000..16abb20 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__lowvideo.h.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__lowvideo.h.i new file mode 100644 index 0000000..516c939 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__lowvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysevents.c.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysevents.c.i new file mode 100644 index 0000000..7ef5382 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysmouse.c.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysmouse.c.i new file mode 100644 index 0000000..257f07e Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysmouse__c.h.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysmouse__c.h.i new file mode 100644 index 0000000..5f9ea6e Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__sysmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__syswm.c.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__syswm.c.i new file mode 100644 index 0000000..b2bd661 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__syswm.c.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__syswm__c.h.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__syswm__c.h.i new file mode 100644 index 0000000..7acda52 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__syswm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__wingl.c.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__wingl.c.i new file mode 100644 index 0000000..2c19ad4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__wingl.c.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/_s_d_l__wingl__c.h.i b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__wingl__c.h.i new file mode 100644 index 0000000..457e551 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/_s_d_l__wingl__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/wmmsg.h.i b/SDL/.hg/store/data/src/video/wincommon/wmmsg.h.i new file mode 100644 index 0000000..f1ec3dc Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/wmmsg.h.i differ diff --git a/SDL/.hg/store/data/src/video/wincommon/~2ecvsignore.i b/SDL/.hg/store/data/src/video/wincommon/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wincommon/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/windib/_makefile.am.i b/SDL/.hg/store/data/src/video/windib/_makefile.am.i new file mode 100644 index 0000000..2ba8d8d Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/windib/_s_d_l__dibevents.c.i b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibevents.c.i new file mode 100644 index 0000000..5452910 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/windib/_s_d_l__dibevents__c.h.i b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibevents__c.h.i new file mode 100644 index 0000000..0c3df14 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/windib/_s_d_l__dibvideo.c.i b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibvideo.c.i new file mode 100644 index 0000000..f1e9b0e Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/windib/_s_d_l__dibvideo.h.i b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibvideo.h.i new file mode 100644 index 0000000..c561c5f Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/_s_d_l__dibvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/windib/_s_d_l__gapidibvideo.h.i b/SDL/.hg/store/data/src/video/windib/_s_d_l__gapidibvideo.h.i new file mode 100644 index 0000000..f3eb0dd Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/_s_d_l__gapidibvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/windib/_s_d_l__vkeys.h.i b/SDL/.hg/store/data/src/video/windib/_s_d_l__vkeys.h.i new file mode 100644 index 0000000..b1ac46e Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/_s_d_l__vkeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/windib/~2ecvsignore.i b/SDL/.hg/store/data/src/video/windib/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windib/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__ceddrawrender.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__ceddrawrender.c.i new file mode 100644 index 0000000..93f8da9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__ceddrawrender.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__ceddrawrender.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__ceddrawrender.h.i new file mode 100644 index 0000000..fcb34b4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__ceddrawrender.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__d3drender.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__d3drender.c.i new file mode 100644 index 0000000..8d4e732 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__d3drender.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__d3drender.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__d3drender.h.i new file mode 100644 index 0000000..1363849 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__d3drender.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender.c.i new file mode 100644 index 0000000..2ebae1c Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender.h.i new file mode 100644 index 0000000..aa3dcd0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender__c.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender__c.h.i new file mode 100644 index 0000000..b0066ea Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__gapirender__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__gdirender.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__gdirender.c.i new file mode 100644 index 0000000..c292069 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__gdirender.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__gdirender.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__gdirender.h.i new file mode 100644 index 0000000..329ca1d Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__gdirender.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__msctf.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__msctf.h.i new file mode 100644 index 0000000..8f95736 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__msctf.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__vkeys.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__vkeys.h.i new file mode 100644 index 0000000..b79ee29 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__vkeys.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsclipboard.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsclipboard.c.i new file mode 100644 index 0000000..1869878 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsclipboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsclipboard.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsclipboard.h.i new file mode 100644 index 0000000..de7ba73 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsclipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsevents.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsevents.c.i new file mode 100644 index 0000000..b8daecf Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsevents.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsevents.h.i new file mode 100644 index 0000000..8d6f096 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsevents.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsframebuffer.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsframebuffer.c.i new file mode 100644 index 0000000..d491492 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsframebuffer.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsframebuffer.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsframebuffer.h.i new file mode 100644 index 0000000..ea5e119 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsframebuffer.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsgamma.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsgamma.c.i new file mode 100644 index 0000000..f4a3f8f Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsgamma.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsgamma.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsgamma.h.i new file mode 100644 index 0000000..30da439 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsgamma.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowskeyboard.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowskeyboard.c.i new file mode 100644 index 0000000..50e431e Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowskeyboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowskeyboard.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowskeyboard.h.i new file mode 100644 index 0000000..f91336a Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowskeyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmessagebox.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmessagebox.c.i new file mode 100644 index 0000000..c10b2f2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmessagebox.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmessagebox.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmessagebox.h.i new file mode 100644 index 0000000..50fbad3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmessagebox.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmodes.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmodes.c.i new file mode 100644 index 0000000..4f7148d Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmodes.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmodes.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmodes.h.i new file mode 100644 index 0000000..2329904 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmouse.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmouse.c.i new file mode 100644 index 0000000..388a495 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmouse.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmouse.h.i new file mode 100644 index 0000000..2f7a924 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengl.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengl.c.i new file mode 100644 index 0000000..7ec52b5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengl.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengl.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengl.h.i new file mode 100644 index 0000000..a16d248 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengles.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengles.c.i new file mode 100644 index 0000000..77ac7b7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengles.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengles.h.i new file mode 100644 index 0000000..de8280f Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsshape.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsshape.c.i new file mode 100644 index 0000000..c932269 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsshape.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsshape.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsshape.h.i new file mode 100644 index 0000000..cf09abb Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsshape.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsvideo.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsvideo.c.i new file mode 100644 index 0000000..83dcb60 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsvideo.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsvideo.h.i new file mode 100644 index 0000000..45502da Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowsvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowswindow.c.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowswindow.c.i new file mode 100644 index 0000000..0984aeb Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowswindow.c.i differ diff --git a/SDL/.hg/store/data/src/video/windows/_s_d_l__windowswindow.h.i b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowswindow.h.i new file mode 100644 index 0000000..37c7ee9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/_s_d_l__windowswindow.h.i differ diff --git a/SDL/.hg/store/data/src/video/windows/wmmsg.h.i b/SDL/.hg/store/data/src/video/windows/wmmsg.h.i new file mode 100644 index 0000000..fdc27b9 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windows/wmmsg.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_basic_timer.h.i b/SDL/.hg/store/data/src/video/windowsrt/_basic_timer.h.i new file mode 100644 index 0000000..2295bcd Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_basic_timer.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_cube_renderer.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_cube_renderer.cpp.i new file mode 100644 index 0000000..2003502 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_cube_renderer.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_cube_renderer.h.i b/SDL/.hg/store/data/src/video/windowsrt/_cube_renderer.h.i new file mode 100644 index 0000000..64dfa39 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_cube_renderer.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_direct3_d_base.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_direct3_d_base.cpp.i new file mode 100644 index 0000000..a1672b4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_direct3_d_base.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_direct3_d_base.h.i b/SDL/.hg/store/data/src/video/windowsrt/_direct3_d_base.h.i new file mode 100644 index 0000000..b411eba Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_direct3_d_base.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_direct_x_helper.h.i b/SDL/.hg/store/data/src/video/windowsrt/_direct_x_helper.h.i new file mode 100644 index 0000000..a5cfa9b Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_direct_x_helper.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l___win_r_t_app.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l___win_r_t_app.cpp.i new file mode 100644 index 0000000..e9e3db1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l___win_r_t_app.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l___win_r_t_app.h.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l___win_r_t_app.h.i new file mode 100644 index 0000000..6261b36 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l___win_r_t_app.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents.c.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents.c.i new file mode 100644 index 0000000..403e597 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents.cpp.i new file mode 100644 index 0000000..24b2a5c Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents__c.h.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents__c.h.i new file mode 100644 index 0000000..f86af42 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer.c.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer.c.i new file mode 100644 index 0000000..a491a0c Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer.c.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer.cpp.i new file mode 100644 index 0000000..cd3fa36 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer__c.h.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer__c.h.i new file mode 100644 index 0000000..29454d6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtframebuffer__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtmouse.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtmouse.cpp.i new file mode 100644 index 0000000..4518d1b Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtmouse.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtmouse.h.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtmouse.h.i new file mode 100644 index 0000000..1cff7df Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtrenderer.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtrenderer.cpp.i new file mode 100644 index 0000000..7f7d509 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtrenderer.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtrenderer.h.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtrenderer.h.i new file mode 100644 index 0000000..9d677d1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtrenderer.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.c.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.c.i new file mode 100644 index 0000000..38d83b4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.cpp.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.cpp.i new file mode 100644 index 0000000..98b0569 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.h.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.h.i new file mode 100644 index 0000000..ef642ab Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_l__winrtvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_s_d_lmain___win_r_t__common.h.i b/SDL/.hg/store/data/src/video/windowsrt/_s_d_lmain___win_r_t__common.h.i new file mode 100644 index 0000000..7b4f96c Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_s_d_lmain___win_r_t__common.h.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_simple_pixel_shader.hlsl.i b/SDL/.hg/store/data/src/video/windowsrt/_simple_pixel_shader.hlsl.i new file mode 100644 index 0000000..a55f7ef Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_simple_pixel_shader.hlsl.i differ diff --git a/SDL/.hg/store/data/src/video/windowsrt/_simple_vertex_shader.hlsl.i b/SDL/.hg/store/data/src/video/windowsrt/_simple_vertex_shader.hlsl.i new file mode 100644 index 0000000..10b2761 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windowsrt/_simple_vertex_shader.hlsl.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/_makefile.am.i b/SDL/.hg/store/data/src/video/windx5/_makefile.am.i new file mode 100644 index 0000000..d3129ab Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5events.c.i b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5events.c.i new file mode 100644 index 0000000..95cde99 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5events.c.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5events__c.h.i b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5events__c.h.i new file mode 100644 index 0000000..362148d Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5events__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5video.c.i b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5video.c.i new file mode 100644 index 0000000..7e844a0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5video.c.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5video.h.i b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5video.h.i new file mode 100644 index 0000000..4fb90e8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5video.h.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5yuv.c.i b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5yuv.c.i new file mode 100644 index 0000000..984914f Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5yuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5yuv__c.h.i b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5yuv__c.h.i new file mode 100644 index 0000000..f0c91ff Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/_s_d_l__dx5yuv__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/directx.h.i b/SDL/.hg/store/data/src/video/windx5/directx.h.i new file mode 100644 index 0000000..2659e75 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/directx.h.i differ diff --git a/SDL/.hg/store/data/src/video/windx5/~2ecvsignore.i b/SDL/.hg/store/data/src/video/windx5/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/windx5/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtegl.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtegl.h.i new file mode 100644 index 0000000..7dd2e2d Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtegl.h.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtevents.cpp.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtevents.cpp.i new file mode 100644 index 0000000..47ab7cd Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtevents.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtevents__c.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtevents__c.h.i new file mode 100644 index 0000000..135a5e5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtkeyboard.cpp.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtkeyboard.cpp.i new file mode 100644 index 0000000..5034726 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtkeyboard.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmessagebox.cpp.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmessagebox.cpp.i new file mode 100644 index 0000000..d8b92fc Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmessagebox.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmessagebox.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmessagebox.h.i new file mode 100644 index 0000000..587332d Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmessagebox.h.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse.cpp.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse.cpp.i new file mode 100644 index 0000000..18d43f3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse.h.i new file mode 100644 index 0000000..9728f03 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse__c.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse__c.h.i new file mode 100644 index 0000000..96a8173 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtopengles.cpp.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtopengles.cpp.i new file mode 100644 index 0000000..3762eae Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtopengles.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtopengles.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtopengles.h.i new file mode 100644 index 0000000..671aa52 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtopengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtpointerinput.cpp.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtpointerinput.cpp.i new file mode 100644 index 0000000..66f2c5a Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtpointerinput.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo.cpp.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo.cpp.i new file mode 100644 index 0000000..31a8c0d Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo.cpp.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo.h.i new file mode 100644 index 0000000..88c92e7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo__cpp.h.i b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo__cpp.h.i new file mode 100644 index 0000000..0f43c95 Binary files /dev/null and b/SDL/.hg/store/data/src/video/winrt/_s_d_l__winrtvideo__cpp.h.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/_makefile.am.i b/SDL/.hg/store/data/src/video/wscons/_makefile.am.i new file mode 100644 index 0000000..fb509f4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsevents.c.i b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsevents.c.i new file mode 100644 index 0000000..45a0c61 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsevents.c.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsevents__c.h.i b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsevents__c.h.i new file mode 100644 index 0000000..7c4cbe0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsevents__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsmouse.c.i b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsmouse.c.i new file mode 100644 index 0000000..ab84595 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsmouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsmouse__c.h.i b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsmouse__c.h.i new file mode 100644 index 0000000..b39d7a0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsmouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsvideo.c.i b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsvideo.c.i new file mode 100644 index 0000000..723348c Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsvideo.c.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsvideo.h.i b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsvideo.h.i new file mode 100644 index 0000000..49988ea Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/_s_d_l__wsconsvideo.h.i differ diff --git a/SDL/.hg/store/data/src/video/wscons/~2ecvsignore.i b/SDL/.hg/store/data/src/video/wscons/~2ecvsignore.i new file mode 100644 index 0000000..c703b48 Binary files /dev/null and b/SDL/.hg/store/data/src/video/wscons/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_makefile.am.i b/SDL/.hg/store/data/src/video/x11/_makefile.am.i new file mode 100644 index 0000000..fa6383a Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__eventtouch.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__eventtouch.c.i new file mode 100644 index 0000000..d7b19a3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__eventtouch.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__eventtouch.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__eventtouch.h.i new file mode 100644 index 0000000..05f8908 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__eventtouch.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__shape.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__shape.c.i new file mode 100644 index 0000000..41da039 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__shape.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11clipboard.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11clipboard.c.i new file mode 100644 index 0000000..de367bd Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11clipboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11clipboard.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11clipboard.h.i new file mode 100644 index 0000000..64bee9d Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11clipboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dga.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dga.c.i new file mode 100644 index 0000000..503532f Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dga.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dga__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dga__c.h.i new file mode 100644 index 0000000..a67f6e8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dga__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dyn.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dyn.c.i new file mode 100644 index 0000000..7bc5a9c Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dyn.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dyn.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dyn.h.i new file mode 100644 index 0000000..d422aed Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11dyn.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.c.d b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.c.d new file mode 100644 index 0000000..974dd25 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.c.d differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.c.i new file mode 100644 index 0000000..18f592c Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.h.i new file mode 100644 index 0000000..2d7fc7f Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events__c.h.i new file mode 100644 index 0000000..3ac4458 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11events__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11framebuffer.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11framebuffer.c.i new file mode 100644 index 0000000..cd9635e Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11framebuffer.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11framebuffer.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11framebuffer.h.i new file mode 100644 index 0000000..6387f40 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11framebuffer.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma.c.i new file mode 100644 index 0000000..2a68324 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma.h.i new file mode 100644 index 0000000..bf3bd32 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma__c.h.i new file mode 100644 index 0000000..091f0cb Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gamma__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gl.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gl.c.i new file mode 100644 index 0000000..b93bbfa Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gl.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gl__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gl__c.h.i new file mode 100644 index 0000000..22136b6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11gl__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11image.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11image.c.i new file mode 100644 index 0000000..35d88a0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11image.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11image__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11image__c.h.i new file mode 100644 index 0000000..a004225 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11image__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11keyboard.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11keyboard.c.i new file mode 100644 index 0000000..1ea7225 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11keyboard.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11keyboard.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11keyboard.h.i new file mode 100644 index 0000000..65adbbc Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11keyboard.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11messagebox.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11messagebox.c.i new file mode 100644 index 0000000..3ec71f4 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11messagebox.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11messagebox.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11messagebox.h.i new file mode 100644 index 0000000..c1d1d84 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11messagebox.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.c.d b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.c.d new file mode 100644 index 0000000..9e39467 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.c.d differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.c.i new file mode 100644 index 0000000..8c73dd0 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.h.i new file mode 100644 index 0000000..0771b4b Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes__c.h.i new file mode 100644 index 0000000..76f1707 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11modes__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse.c.i new file mode 100644 index 0000000..34031a2 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse.h.i new file mode 100644 index 0000000..0acded1 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse__c.h.i new file mode 100644 index 0000000..c5b3aee Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11mouse__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengl.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengl.c.i new file mode 100644 index 0000000..9faf365 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengl.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengl.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengl.h.i new file mode 100644 index 0000000..20f083a Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengl.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengles.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengles.c.i new file mode 100644 index 0000000..c9db807 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengles.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengles.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengles.h.i new file mode 100644 index 0000000..3442253 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11opengles.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11render.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11render.c.i new file mode 100644 index 0000000..628fdd8 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11render.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11render.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11render.h.i new file mode 100644 index 0000000..483e923 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11render.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11shape.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11shape.c.i new file mode 100644 index 0000000..152a294 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11shape.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11shape.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11shape.h.i new file mode 100644 index 0000000..97abf2b Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11shape.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11sym.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11sym.h.i new file mode 100644 index 0000000..a8e5778 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11sym.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11touch.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11touch.c.i new file mode 100644 index 0000000..2900cf7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11touch.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11touch.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11touch.h.i new file mode 100644 index 0000000..9fc0413 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11touch.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.c.d b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.c.d new file mode 100644 index 0000000..ebcebbf Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.c.d differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.c.i new file mode 100644 index 0000000..8563696 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.h.i new file mode 100644 index 0000000..787a234 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11video.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11window.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11window.c.i new file mode 100644 index 0000000..8eb955a Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11window.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11window.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11window.h.i new file mode 100644 index 0000000..eabfa38 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11window.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11wm.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11wm.c.i new file mode 100644 index 0000000..9f7283f Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11wm.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11wm__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11wm__c.h.i new file mode 100644 index 0000000..f064415 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11wm__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11xinput2.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11xinput2.c.i new file mode 100644 index 0000000..e2b404c Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11xinput2.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11xinput2.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11xinput2.h.i new file mode 100644 index 0000000..ee6c399 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11xinput2.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11yuv.c.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11yuv.c.i new file mode 100644 index 0000000..f254cda Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11yuv.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/_s_d_l__x11yuv__c.h.i b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11yuv__c.h.i new file mode 100644 index 0000000..1a157e5 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/_s_d_l__x11yuv__c.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/edid-parse.c.i b/SDL/.hg/store/data/src/video/x11/edid-parse.c.i new file mode 100644 index 0000000..fba69c6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/edid-parse.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/edid.h.i b/SDL/.hg/store/data/src/video/x11/edid.h.i new file mode 100644 index 0000000..ca27d5c Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/edid.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/im_k_sto_u_c_s.c.i b/SDL/.hg/store/data/src/video/x11/im_k_sto_u_c_s.c.i new file mode 100644 index 0000000..1a22b59 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/im_k_sto_u_c_s.c.i differ diff --git a/SDL/.hg/store/data/src/video/x11/im_k_sto_u_c_s.h.i b/SDL/.hg/store/data/src/video/x11/im_k_sto_u_c_s.h.i new file mode 100644 index 0000000..428b393 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/im_k_sto_u_c_s.h.i differ diff --git a/SDL/.hg/store/data/src/video/x11/~2ecvsignore.i b/SDL/.hg/store/data/src/video/x11/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/x11/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_makefile.am.i b/SDL/.hg/store/data/src/video/xbios/_makefile.am.i new file mode 100644 index 0000000..9e6cf3f Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_makefile.am.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios.c.i new file mode 100644 index 0000000..bc70a3b Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios.h.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios.h.i new file mode 100644 index 0000000..c752c7d Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios.h.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__blowup.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__blowup.c.i new file mode 100644 index 0000000..3139d3f Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__blowup.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__blowup.h.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__blowup.h.i new file mode 100644 index 0000000..4664677 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__blowup.h.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__centscreen.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__centscreen.c.i new file mode 100644 index 0000000..75e95e6 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__centscreen.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__centscreen.h.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__centscreen.h.i new file mode 100644 index 0000000..b4a0f67 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__centscreen.h.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__ctpci.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__ctpci.c.i new file mode 100644 index 0000000..c4a3f07 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__ctpci.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__f30.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__f30.c.i new file mode 100644 index 0000000..0c7ff6a Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__f30.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__milan.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__milan.c.i new file mode 100644 index 0000000..af83256 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__milan.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__milan.h.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__milan.h.i new file mode 100644 index 0000000..b35fae7 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__milan.h.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__sb3.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__sb3.c.i new file mode 100644 index 0000000..b3a0c54 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__sb3.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__sb3.h.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__sb3.h.i new file mode 100644 index 0000000..405e49c Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__sb3.h.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__st.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__st.c.i new file mode 100644 index 0000000..3c6c62d Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__st.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tt.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tt.c.i new file mode 100644 index 0000000..7205578 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tt.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tveille.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tveille.c.i new file mode 100644 index 0000000..5ebaa48 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tveille.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tveille.h.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tveille.h.i new file mode 100644 index 0000000..0d81c27 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbios__tveille.h.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbiosmodes.c.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbiosmodes.c.i new file mode 100644 index 0000000..feeb0c3 Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbiosmodes.c.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbiosmodes.h.i b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbiosmodes.h.i new file mode 100644 index 0000000..eb32d3c Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/_s_d_l__xbiosmodes.h.i differ diff --git a/SDL/.hg/store/data/src/video/xbios/~2ecvsignore.i b/SDL/.hg/store/data/src/video/xbios/~2ecvsignore.i new file mode 100644 index 0000000..1c363af Binary files /dev/null and b/SDL/.hg/store/data/src/video/xbios/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/video/~2ecvsignore.i b/SDL/.hg/store/data/src/video/~2ecvsignore.i new file mode 100644 index 0000000..90e6304 Binary files /dev/null and b/SDL/.hg/store/data/src/video/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/src/~2ecvsignore.i b/SDL/.hg/store/data/src/~2ecvsignore.i new file mode 100644 index 0000000..53cf28a Binary files /dev/null and b/SDL/.hg/store/data/src/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/strip__f_p_i_c.sh.i b/SDL/.hg/store/data/strip__f_p_i_c.sh.i new file mode 100644 index 0000000..30e2a95 Binary files /dev/null and b/SDL/.hg/store/data/strip__f_p_i_c.sh.i differ diff --git a/SDL/.hg/store/data/symbian.zip.d b/SDL/.hg/store/data/symbian.zip.d new file mode 100644 index 0000000..0c24c52 Binary files /dev/null and b/SDL/.hg/store/data/symbian.zip.d differ diff --git a/SDL/.hg/store/data/symbian.zip.i b/SDL/.hg/store/data/symbian.zip.i new file mode 100644 index 0000000..0bc69f6 Binary files /dev/null and b/SDL/.hg/store/data/symbian.zip.i differ diff --git a/SDL/.hg/store/data/test/_c_o_p_y_i_n_g.i b/SDL/.hg/store/data/test/_c_o_p_y_i_n_g.i new file mode 100644 index 0000000..baaa0e1 Binary files /dev/null and b/SDL/.hg/store/data/test/_c_o_p_y_i_n_g.i differ diff --git a/SDL/.hg/store/data/test/_makefile.am.i b/SDL/.hg/store/data/test/_makefile.am.i new file mode 100644 index 0000000..a373eab Binary files /dev/null and b/SDL/.hg/store/data/test/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/_makefile.in.i b/SDL/.hg/store/data/test/_makefile.in.i new file mode 100644 index 0000000..aa416a0 Binary files /dev/null and b/SDL/.hg/store/data/test/_makefile.in.i differ diff --git a/SDL/.hg/store/data/test/_makefile.wat.i b/SDL/.hg/store/data/test/_makefile.wat.i new file mode 100644 index 0000000..fec98d3 Binary files /dev/null and b/SDL/.hg/store/data/test/_makefile.wat.i differ diff --git a/SDL/.hg/store/data/test/_r_e_a_d_m_e.i b/SDL/.hg/store/data/test/_r_e_a_d_m_e.i new file mode 100644 index 0000000..89a0928 Binary files /dev/null and b/SDL/.hg/store/data/test/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/test/acinclude.m4.i b/SDL/.hg/store/data/test/acinclude.m4.i new file mode 100644 index 0000000..8c1f71f Binary files /dev/null and b/SDL/.hg/store/data/test/acinclude.m4.i differ diff --git a/SDL/.hg/store/data/test/aclocal.m4.i b/SDL/.hg/store/data/test/aclocal.m4.i new file mode 100644 index 0000000..e950075 Binary files /dev/null and b/SDL/.hg/store/data/test/aclocal.m4.i differ diff --git a/SDL/.hg/store/data/test/autogen.sh.i b/SDL/.hg/store/data/test/autogen.sh.i new file mode 100644 index 0000000..baf3190 Binary files /dev/null and b/SDL/.hg/store/data/test/autogen.sh.i differ diff --git a/SDL/.hg/store/data/test/automated/_makefile.i b/SDL/.hg/store/data/test/automated/_makefile.i new file mode 100644 index 0000000..1278d3c Binary files /dev/null and b/SDL/.hg/store/data/test/automated/_makefile.i differ diff --git a/SDL/.hg/store/data/test/automated/_r_e_a_d_m_e.i b/SDL/.hg/store/data/test/automated/_r_e_a_d_m_e.i new file mode 100644 index 0000000..d44fe96 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/test/automated/_s_d_l__at.c.i b/SDL/.hg/store/data/test/automated/_s_d_l__at.c.i new file mode 100644 index 0000000..f1a28ce Binary files /dev/null and b/SDL/.hg/store/data/test/automated/_s_d_l__at.c.i differ diff --git a/SDL/.hg/store/data/test/automated/_s_d_l__at.h.i b/SDL/.hg/store/data/test/automated/_s_d_l__at.h.i new file mode 100644 index 0000000..0a70c00 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/_s_d_l__at.h.i differ diff --git a/SDL/.hg/store/data/test/automated/audio/audio.c.i b/SDL/.hg/store/data/test/automated/audio/audio.c.i new file mode 100644 index 0000000..38bf7cc Binary files /dev/null and b/SDL/.hg/store/data/test/automated/audio/audio.c.i differ diff --git a/SDL/.hg/store/data/test/automated/audio/audio.h.i b/SDL/.hg/store/data/test/automated/audio/audio.h.i new file mode 100644 index 0000000..16da57b Binary files /dev/null and b/SDL/.hg/store/data/test/automated/audio/audio.h.i differ diff --git a/SDL/.hg/store/data/test/automated/common/common.c.i b/SDL/.hg/store/data/test/automated/common/common.c.i new file mode 100644 index 0000000..f4218bb Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/common.c.i differ diff --git a/SDL/.hg/store/data/test/automated/common/common.h.i b/SDL/.hg/store/data/test/automated/common/common.h.i new file mode 100644 index 0000000..d2b10c8 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/common.h.i differ diff --git a/SDL/.hg/store/data/test/automated/common/images.h.i b/SDL/.hg/store/data/test/automated/common/images.h.i new file mode 100644 index 0000000..afe2913 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/images.h.i differ diff --git a/SDL/.hg/store/data/test/automated/common/img__blit.c.i b/SDL/.hg/store/data/test/automated/common/img__blit.c.i new file mode 100644 index 0000000..f16c482 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/img__blit.c.i differ diff --git a/SDL/.hg/store/data/test/automated/common/img__blitblend.c.i b/SDL/.hg/store/data/test/automated/common/img__blitblend.c.i new file mode 100644 index 0000000..c019b59 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/img__blitblend.c.i differ diff --git a/SDL/.hg/store/data/test/automated/common/img__face.c.i b/SDL/.hg/store/data/test/automated/common/img__face.c.i new file mode 100644 index 0000000..4af27aa Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/img__face.c.i differ diff --git a/SDL/.hg/store/data/test/automated/common/img__primitives.c.i b/SDL/.hg/store/data/test/automated/common/img__primitives.c.i new file mode 100644 index 0000000..efeabc1 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/img__primitives.c.i differ diff --git a/SDL/.hg/store/data/test/automated/common/img__primitivesblend.c.i b/SDL/.hg/store/data/test/automated/common/img__primitivesblend.c.i new file mode 100644 index 0000000..94cbc80 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/common/img__primitivesblend.c.i differ diff --git a/SDL/.hg/store/data/test/automated/platform/platform.c.i b/SDL/.hg/store/data/test/automated/platform/platform.c.i new file mode 100644 index 0000000..25d3cce Binary files /dev/null and b/SDL/.hg/store/data/test/automated/platform/platform.c.i differ diff --git a/SDL/.hg/store/data/test/automated/platform/platform.h.i b/SDL/.hg/store/data/test/automated/platform/platform.h.i new file mode 100644 index 0000000..870984e Binary files /dev/null and b/SDL/.hg/store/data/test/automated/platform/platform.h.i differ diff --git a/SDL/.hg/store/data/test/automated/rect/rect.c.i b/SDL/.hg/store/data/test/automated/rect/rect.c.i new file mode 100644 index 0000000..1f32821 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rect/rect.c.i differ diff --git a/SDL/.hg/store/data/test/automated/rect/rect.h.i b/SDL/.hg/store/data/test/automated/rect/rect.h.i new file mode 100644 index 0000000..96fa166 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rect/rect.h.i differ diff --git a/SDL/.hg/store/data/test/automated/render/render.c.i b/SDL/.hg/store/data/test/automated/render/render.c.i new file mode 100644 index 0000000..78668f7 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/render/render.c.i differ diff --git a/SDL/.hg/store/data/test/automated/render/render.h.i b/SDL/.hg/store/data/test/automated/render/render.h.i new file mode 100644 index 0000000..6376581 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/render/render.h.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops.c.i b/SDL/.hg/store/data/test/automated/rwops.c.i new file mode 100644 index 0000000..e4581f0 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops.c.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/_test__rwopsbundlesupport.h.i b/SDL/.hg/store/data/test/automated/rwops/_test__rwopsbundlesupport.h.i new file mode 100644 index 0000000..0dd3181 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/_test__rwopsbundlesupport.h.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/_test__rwopsbundlesupport.m.i b/SDL/.hg/store/data/test/automated/rwops/_test__rwopsbundlesupport.m.i new file mode 100644 index 0000000..1222627 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/_test__rwopsbundlesupport.m.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops.h.i b/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops.h.i new file mode 100644 index 0000000..207f7f7 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops.h.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops___cocoa.m.i b/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops___cocoa.m.i new file mode 100644 index 0000000..82aa46e Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops___cocoa.m.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops___generic.c.i b/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops___generic.c.i new file mode 100644 index 0000000..ed2312c Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/_test_support_r_wops___generic.c.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/read.i b/SDL/.hg/store/data/test/automated/rwops/read.i new file mode 100644 index 0000000..1df2fa7 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/read.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/rwops.c.i b/SDL/.hg/store/data/test/automated/rwops/rwops.c.i new file mode 100644 index 0000000..6de5963 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/rwops.c.i differ diff --git a/SDL/.hg/store/data/test/automated/rwops/rwops.h.i b/SDL/.hg/store/data/test/automated/rwops/rwops.h.i new file mode 100644 index 0000000..ed994cc Binary files /dev/null and b/SDL/.hg/store/data/test/automated/rwops/rwops.h.i differ diff --git a/SDL/.hg/store/data/test/automated/surface/blend.c.i b/SDL/.hg/store/data/test/automated/surface/blend.c.i new file mode 100644 index 0000000..263aa8f Binary files /dev/null and b/SDL/.hg/store/data/test/automated/surface/blend.c.i differ diff --git a/SDL/.hg/store/data/test/automated/surface/blit.c.i b/SDL/.hg/store/data/test/automated/surface/blit.c.i new file mode 100644 index 0000000..f84a856 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/surface/blit.c.i differ diff --git a/SDL/.hg/store/data/test/automated/surface/blitblend.c.i b/SDL/.hg/store/data/test/automated/surface/blitblend.c.i new file mode 100644 index 0000000..9e19fe4 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/surface/blitblend.c.i differ diff --git a/SDL/.hg/store/data/test/automated/surface/face.c.i b/SDL/.hg/store/data/test/automated/surface/face.c.i new file mode 100644 index 0000000..aabc248 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/surface/face.c.i differ diff --git a/SDL/.hg/store/data/test/automated/surface/primitives.c.i b/SDL/.hg/store/data/test/automated/surface/primitives.c.i new file mode 100644 index 0000000..a9731ac Binary files /dev/null and b/SDL/.hg/store/data/test/automated/surface/primitives.c.i differ diff --git a/SDL/.hg/store/data/test/automated/surface/surface.c.i b/SDL/.hg/store/data/test/automated/surface/surface.c.i new file mode 100644 index 0000000..5b818f0 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/surface/surface.c.i differ diff --git a/SDL/.hg/store/data/test/automated/surface/surface.h.i b/SDL/.hg/store/data/test/automated/surface/surface.h.i new file mode 100644 index 0000000..2996001 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/surface/surface.h.i differ diff --git a/SDL/.hg/store/data/test/automated/testsdl.c.i b/SDL/.hg/store/data/test/automated/testsdl.c.i new file mode 100644 index 0000000..17bbea3 Binary files /dev/null and b/SDL/.hg/store/data/test/automated/testsdl.c.i differ diff --git a/SDL/.hg/store/data/test/axis.bmp.i b/SDL/.hg/store/data/test/axis.bmp.i new file mode 100644 index 0000000..277f3e7 Binary files /dev/null and b/SDL/.hg/store/data/test/axis.bmp.i differ diff --git a/SDL/.hg/store/data/test/button.bmp.i b/SDL/.hg/store/data/test/button.bmp.i new file mode 100644 index 0000000..100792e Binary files /dev/null and b/SDL/.hg/store/data/test/button.bmp.i differ diff --git a/SDL/.hg/store/data/test/checkkeys.c.i b/SDL/.hg/store/data/test/checkkeys.c.i new file mode 100644 index 0000000..91dbc96 Binary files /dev/null and b/SDL/.hg/store/data/test/checkkeys.c.i differ diff --git a/SDL/.hg/store/data/test/common.c.i b/SDL/.hg/store/data/test/common.c.i new file mode 100644 index 0000000..04f6c3a Binary files /dev/null and b/SDL/.hg/store/data/test/common.c.i differ diff --git a/SDL/.hg/store/data/test/common.h.i b/SDL/.hg/store/data/test/common.h.i new file mode 100644 index 0000000..f71c62b Binary files /dev/null and b/SDL/.hg/store/data/test/common.h.i differ diff --git a/SDL/.hg/store/data/test/config.guess.i b/SDL/.hg/store/data/test/config.guess.i new file mode 100644 index 0000000..1a6b871 Binary files /dev/null and b/SDL/.hg/store/data/test/config.guess.i differ diff --git a/SDL/.hg/store/data/test/config.sub.i b/SDL/.hg/store/data/test/config.sub.i new file mode 100644 index 0000000..0b86abe Binary files /dev/null and b/SDL/.hg/store/data/test/config.sub.i differ diff --git a/SDL/.hg/store/data/test/configure.d b/SDL/.hg/store/data/test/configure.d new file mode 100644 index 0000000..27f131e Binary files /dev/null and b/SDL/.hg/store/data/test/configure.d differ diff --git a/SDL/.hg/store/data/test/configure.i b/SDL/.hg/store/data/test/configure.i new file mode 100644 index 0000000..5a4f632 Binary files /dev/null and b/SDL/.hg/store/data/test/configure.i differ diff --git a/SDL/.hg/store/data/test/configure.in.i b/SDL/.hg/store/data/test/configure.in.i new file mode 100644 index 0000000..ea6a40a Binary files /dev/null and b/SDL/.hg/store/data/test/configure.in.i differ diff --git a/SDL/.hg/store/data/test/controllermap.bmp.i b/SDL/.hg/store/data/test/controllermap.bmp.i new file mode 100644 index 0000000..06cebac Binary files /dev/null and b/SDL/.hg/store/data/test/controllermap.bmp.i differ diff --git a/SDL/.hg/store/data/test/controllermap.c.i b/SDL/.hg/store/data/test/controllermap.c.i new file mode 100644 index 0000000..1dbe14c Binary files /dev/null and b/SDL/.hg/store/data/test/controllermap.c.i differ diff --git a/SDL/.hg/store/data/test/emscripten/joystick-pre.js.i b/SDL/.hg/store/data/test/emscripten/joystick-pre.js.i new file mode 100644 index 0000000..675b96e Binary files /dev/null and b/SDL/.hg/store/data/test/emscripten/joystick-pre.js.i differ diff --git a/SDL/.hg/store/data/test/gcc-fat.sh.i b/SDL/.hg/store/data/test/gcc-fat.sh.i new file mode 100644 index 0000000..27d2899 Binary files /dev/null and b/SDL/.hg/store/data/test/gcc-fat.sh.i differ diff --git a/SDL/.hg/store/data/test/graywin.c.i b/SDL/.hg/store/data/test/graywin.c.i new file mode 100644 index 0000000..234d900 Binary files /dev/null and b/SDL/.hg/store/data/test/graywin.c.i differ diff --git a/SDL/.hg/store/data/test/icon.bmp.i b/SDL/.hg/store/data/test/icon.bmp.i new file mode 100644 index 0000000..7090e67 Binary files /dev/null and b/SDL/.hg/store/data/test/icon.bmp.i differ diff --git a/SDL/.hg/store/data/test/install-sh.i b/SDL/.hg/store/data/test/install-sh.i new file mode 100644 index 0000000..16b4eb0 Binary files /dev/null and b/SDL/.hg/store/data/test/install-sh.i differ diff --git a/SDL/.hg/store/data/test/loopwave.c.i b/SDL/.hg/store/data/test/loopwave.c.i new file mode 100644 index 0000000..046725e Binary files /dev/null and b/SDL/.hg/store/data/test/loopwave.c.i differ diff --git a/SDL/.hg/store/data/test/loopwavequeue.c.i b/SDL/.hg/store/data/test/loopwavequeue.c.i new file mode 100644 index 0000000..53c6475 Binary files /dev/null and b/SDL/.hg/store/data/test/loopwavequeue.c.i differ diff --git a/SDL/.hg/store/data/test/missing.i b/SDL/.hg/store/data/test/missing.i new file mode 100644 index 0000000..425b45c Binary files /dev/null and b/SDL/.hg/store/data/test/missing.i differ diff --git a/SDL/.hg/store/data/test/mkinstalldirs.i b/SDL/.hg/store/data/test/mkinstalldirs.i new file mode 100644 index 0000000..ae396e5 Binary files /dev/null and b/SDL/.hg/store/data/test/mkinstalldirs.i differ diff --git a/SDL/.hg/store/data/test/moose.dat.i b/SDL/.hg/store/data/test/moose.dat.i new file mode 100644 index 0000000..98bc664 Binary files /dev/null and b/SDL/.hg/store/data/test/moose.dat.i differ diff --git a/SDL/.hg/store/data/test/nacl/_makefile.i b/SDL/.hg/store/data/test/nacl/_makefile.i new file mode 100644 index 0000000..fb72bd9 Binary files /dev/null and b/SDL/.hg/store/data/test/nacl/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nacl/background.js.i b/SDL/.hg/store/data/test/nacl/background.js.i new file mode 100644 index 0000000..0f70a83 Binary files /dev/null and b/SDL/.hg/store/data/test/nacl/background.js.i differ diff --git a/SDL/.hg/store/data/test/nacl/common.js.i b/SDL/.hg/store/data/test/nacl/common.js.i new file mode 100644 index 0000000..ac439dd Binary files /dev/null and b/SDL/.hg/store/data/test/nacl/common.js.i differ diff --git a/SDL/.hg/store/data/test/nacl/index.html.i b/SDL/.hg/store/data/test/nacl/index.html.i new file mode 100644 index 0000000..aabd638 Binary files /dev/null and b/SDL/.hg/store/data/test/nacl/index.html.i differ diff --git a/SDL/.hg/store/data/test/nacl/manifest.json.i b/SDL/.hg/store/data/test/nacl/manifest.json.i new file mode 100644 index 0000000..a2c27db Binary files /dev/null and b/SDL/.hg/store/data/test/nacl/manifest.json.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/_makefile.i b/SDL/.hg/store/data/test/nds-test-progs/_makefile.i new file mode 100644 index 0000000..b79603e Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/general/_makefile.i b/SDL/.hg/store/data/test/nds-test-progs/general/_makefile.i new file mode 100644 index 0000000..37647d9 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/general/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/general/source/main.c.i b/SDL/.hg/store/data/test/nds-test-progs/general/source/main.c.i new file mode 100644 index 0000000..b040a2b Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/general/source/main.c.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite/_makefile.i b/SDL/.hg/store/data/test/nds-test-progs/sprite/_makefile.i new file mode 100644 index 0000000..31c6eac Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite/source/common.c.i b/SDL/.hg/store/data/test/nds-test-progs/sprite/source/common.c.i new file mode 100644 index 0000000..b5199a7 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite/source/common.c.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite/source/common.h.i b/SDL/.hg/store/data/test/nds-test-progs/sprite/source/common.h.i new file mode 100644 index 0000000..766b253 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite/source/common.h.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite/source/testsprite.c.i b/SDL/.hg/store/data/test/nds-test-progs/sprite/source/testsprite.c.i new file mode 100644 index 0000000..40c6b35 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite/source/testsprite.c.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite2/_makefile.i b/SDL/.hg/store/data/test/nds-test-progs/sprite2/_makefile.i new file mode 100644 index 0000000..fa16add Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite2/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite2/icon.bmp.i b/SDL/.hg/store/data/test/nds-test-progs/sprite2/icon.bmp.i new file mode 100644 index 0000000..302a3b4 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite2/icon.bmp.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/common.c.i b/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/common.c.i new file mode 100644 index 0000000..b5199a7 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/common.c.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/common.h.i b/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/common.h.i new file mode 100644 index 0000000..766b253 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/common.h.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/testsprite2.c.i b/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/testsprite2.c.i new file mode 100644 index 0000000..0ae2bc6 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/sprite2/source/testsprite2.c.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/testscale/_makefile.i b/SDL/.hg/store/data/test/nds-test-progs/testscale/_makefile.i new file mode 100644 index 0000000..9705372 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/testscale/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/testsprite2/_makefile.i b/SDL/.hg/store/data/test/nds-test-progs/testsprite2/_makefile.i new file mode 100644 index 0000000..20c9d76 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/testsprite2/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test-progs/testspriteminimal/_makefile.i b/SDL/.hg/store/data/test/nds-test-progs/testspriteminimal/_makefile.i new file mode 100644 index 0000000..faea629 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test-progs/testspriteminimal/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test/_makefile.i b/SDL/.hg/store/data/test/nds-test/_makefile.i new file mode 100644 index 0000000..a771a8d Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/_makefile.i differ diff --git a/SDL/.hg/store/data/test/nds-test/build/main.d.i b/SDL/.hg/store/data/test/nds-test/build/main.d.i new file mode 100644 index 0000000..5bfcd9c Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/build/main.d.i differ diff --git a/SDL/.hg/store/data/test/nds-test/build/main.i.i b/SDL/.hg/store/data/test/nds-test/build/main.i.i new file mode 100644 index 0000000..d401dff Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/build/main.i.i differ diff --git a/SDL/.hg/store/data/test/nds-test/build/main.s.i b/SDL/.hg/store/data/test/nds-test/build/main.s.i new file mode 100644 index 0000000..a8e10d7 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/build/main.s.i differ diff --git a/SDL/.hg/store/data/test/nds-test/build/nds-test.map.i b/SDL/.hg/store/data/test/nds-test/build/nds-test.map.i new file mode 100644 index 0000000..746d024 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/build/nds-test.map.i differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.arm9.d b/SDL/.hg/store/data/test/nds-test/nds-test.arm9.d new file mode 100644 index 0000000..9960e0b Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.arm9.d differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.arm9.i b/SDL/.hg/store/data/test/nds-test/nds-test.arm9.i new file mode 100644 index 0000000..92a663f Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.arm9.i differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.ds.gba.d b/SDL/.hg/store/data/test/nds-test/nds-test.ds.gba.d new file mode 100644 index 0000000..c9012fc Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.ds.gba.d differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.ds.gba.i b/SDL/.hg/store/data/test/nds-test/nds-test.ds.gba.i new file mode 100644 index 0000000..406c00d Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.ds.gba.i differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.elf.d b/SDL/.hg/store/data/test/nds-test/nds-test.elf.d new file mode 100644 index 0000000..de647d7 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.elf.d differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.elf.i b/SDL/.hg/store/data/test/nds-test/nds-test.elf.i new file mode 100644 index 0000000..e381ab5 Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.elf.i differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.nds.d b/SDL/.hg/store/data/test/nds-test/nds-test.nds.d new file mode 100644 index 0000000..511597a Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.nds.d differ diff --git a/SDL/.hg/store/data/test/nds-test/nds-test.nds.i b/SDL/.hg/store/data/test/nds-test/nds-test.nds.i new file mode 100644 index 0000000..a7aedda Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/nds-test.nds.i differ diff --git a/SDL/.hg/store/data/test/nds-test/source/main.c.i b/SDL/.hg/store/data/test/nds-test/source/main.c.i new file mode 100644 index 0000000..b0b8baf Binary files /dev/null and b/SDL/.hg/store/data/test/nds-test/source/main.c.i differ diff --git a/SDL/.hg/store/data/test/picture.xbm.i b/SDL/.hg/store/data/test/picture.xbm.i new file mode 100644 index 0000000..4a69bcf Binary files /dev/null and b/SDL/.hg/store/data/test/picture.xbm.i differ diff --git a/SDL/.hg/store/data/test/relative__mode.markdown.i b/SDL/.hg/store/data/test/relative__mode.markdown.i new file mode 100644 index 0000000..92a5ea8 Binary files /dev/null and b/SDL/.hg/store/data/test/relative__mode.markdown.i differ diff --git a/SDL/.hg/store/data/test/sail.bmp.i b/SDL/.hg/store/data/test/sail.bmp.i new file mode 100644 index 0000000..cd4da02 Binary files /dev/null and b/SDL/.hg/store/data/test/sail.bmp.i differ diff --git a/SDL/.hg/store/data/test/sample.bmp.i b/SDL/.hg/store/data/test/sample.bmp.i new file mode 100644 index 0000000..33e8340 Binary files /dev/null and b/SDL/.hg/store/data/test/sample.bmp.i differ diff --git a/SDL/.hg/store/data/test/sample.wav.i b/SDL/.hg/store/data/test/sample.wav.i new file mode 100644 index 0000000..eb04e7d Binary files /dev/null and b/SDL/.hg/store/data/test/sample.wav.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p01__shape24.bmp.i new file mode 100644 index 0000000..c9b8f69 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape24.png.i b/SDL/.hg/store/data/test/shapes/p01__shape24.png.i new file mode 100644 index 0000000..6b24171 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p01__shape32alpha.bmp.i new file mode 100644 index 0000000..42824c0 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p01__shape32alpha.png.i new file mode 100644 index 0000000..28a4349 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p01__shape8.bmp.i new file mode 100644 index 0000000..2fbba0f Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape8.png.i b/SDL/.hg/store/data/test/shapes/p01__shape8.png.i new file mode 100644 index 0000000..ad2342f Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p01__shape8alpha.bmp.i new file mode 100644 index 0000000..e474336 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p01__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p01__shape8alpha.png.i new file mode 100644 index 0000000..f5033a1 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p01__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p02__shape24.bmp.i new file mode 100644 index 0000000..93299e6 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape24.png.i b/SDL/.hg/store/data/test/shapes/p02__shape24.png.i new file mode 100644 index 0000000..222828d Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p02__shape32alpha.bmp.i new file mode 100644 index 0000000..f7d4c55 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p02__shape32alpha.png.i new file mode 100644 index 0000000..1a56da2 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p02__shape8.bmp.i new file mode 100644 index 0000000..0789d07 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape8.png.i b/SDL/.hg/store/data/test/shapes/p02__shape8.png.i new file mode 100644 index 0000000..c0edb72 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p02__shape8alpha.bmp.i new file mode 100644 index 0000000..55c1a0c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p02__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p02__shape8alpha.png.i new file mode 100644 index 0000000..7c698e9 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p02__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p03__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p03__shape24.bmp.i new file mode 100644 index 0000000..901f5a5 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p03__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p03__shape24.png.i b/SDL/.hg/store/data/test/shapes/p03__shape24.png.i new file mode 100644 index 0000000..b7875ba Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p03__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p03__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p03__shape8.bmp.i new file mode 100644 index 0000000..6401a81 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p03__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p03__shape8.png.i b/SDL/.hg/store/data/test/shapes/p03__shape8.png.i new file mode 100644 index 0000000..3ce8fa2 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p03__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape1.bmp.i b/SDL/.hg/store/data/test/shapes/p04__shape1.bmp.i new file mode 100644 index 0000000..c32b942 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape1.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape1.png.i b/SDL/.hg/store/data/test/shapes/p04__shape1.png.i new file mode 100644 index 0000000..e5a313c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape1.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p04__shape24.bmp.i new file mode 100644 index 0000000..c5cbed1 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape24.png.i b/SDL/.hg/store/data/test/shapes/p04__shape24.png.i new file mode 100644 index 0000000..1ada079 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p04__shape32alpha.bmp.i new file mode 100644 index 0000000..b6e57b3 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p04__shape32alpha.png.i new file mode 100644 index 0000000..ad9d04c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p04__shape8.bmp.i new file mode 100644 index 0000000..42d80e6 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p04__shape8.png.i b/SDL/.hg/store/data/test/shapes/p04__shape8.png.i new file mode 100644 index 0000000..4c238b7 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p04__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p05__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p05__shape8.bmp.i new file mode 100644 index 0000000..f63ee0e Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p05__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p05__shape8.png.i b/SDL/.hg/store/data/test/shapes/p05__shape8.png.i new file mode 100644 index 0000000..5f3993e Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p05__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape1alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p06__shape1alpha.bmp.i new file mode 100644 index 0000000..8aaba5c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape1alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape1alpha.png.i b/SDL/.hg/store/data/test/shapes/p06__shape1alpha.png.i new file mode 100644 index 0000000..021bae9 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape1alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p06__shape24.bmp.i new file mode 100644 index 0000000..e393219 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape24.png.i b/SDL/.hg/store/data/test/shapes/p06__shape24.png.i new file mode 100644 index 0000000..03e0765 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p06__shape32alpha.bmp.i new file mode 100644 index 0000000..1756a9b Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p06__shape32alpha.png.i new file mode 100644 index 0000000..cfb2220 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p06__shape8.bmp.i new file mode 100644 index 0000000..3350e11 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape8.png.i b/SDL/.hg/store/data/test/shapes/p06__shape8.png.i new file mode 100644 index 0000000..fc228e5 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p06__shape8alpha.bmp.i new file mode 100644 index 0000000..dd12377 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p06__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p06__shape8alpha.png.i new file mode 100644 index 0000000..6a0c1cb Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p06__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape1alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p07__shape1alpha.bmp.i new file mode 100644 index 0000000..8f0f92d Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape1alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape1alpha.png.i b/SDL/.hg/store/data/test/shapes/p07__shape1alpha.png.i new file mode 100644 index 0000000..4da4200 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape1alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p07__shape24.bmp.i new file mode 100644 index 0000000..a93caef Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape24.png.i b/SDL/.hg/store/data/test/shapes/p07__shape24.png.i new file mode 100644 index 0000000..a05c315 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p07__shape32alpha.bmp.i new file mode 100644 index 0000000..2555cc5 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p07__shape32alpha.png.i new file mode 100644 index 0000000..8f98582 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p07__shape8.bmp.i new file mode 100644 index 0000000..87fb03e Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape8.png.i b/SDL/.hg/store/data/test/shapes/p07__shape8.png.i new file mode 100644 index 0000000..4016526 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p07__shape8alpha.bmp.i new file mode 100644 index 0000000..7c65f9c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p07__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p07__shape8alpha.png.i new file mode 100644 index 0000000..785d672 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p07__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape1alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p08__shape1alpha.bmp.i new file mode 100644 index 0000000..f17a63d Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape1alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape1alpha.png.i b/SDL/.hg/store/data/test/shapes/p08__shape1alpha.png.i new file mode 100644 index 0000000..2e5f927 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape1alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p08__shape24.bmp.i new file mode 100644 index 0000000..406449d Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape24.png.i b/SDL/.hg/store/data/test/shapes/p08__shape24.png.i new file mode 100644 index 0000000..c892426 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p08__shape32alpha.bmp.i new file mode 100644 index 0000000..d88573f Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p08__shape32alpha.png.i new file mode 100644 index 0000000..a2adb73 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p08__shape8.bmp.i new file mode 100644 index 0000000..8e84b17 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape8.png.i b/SDL/.hg/store/data/test/shapes/p08__shape8.png.i new file mode 100644 index 0000000..fd0224c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p08__shape8alpha.bmp.i new file mode 100644 index 0000000..a4252a6 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p08__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p08__shape8alpha.png.i new file mode 100644 index 0000000..e0ebbf8 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p08__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p09__shape24.bmp.i new file mode 100644 index 0000000..32fb016 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape24.png.i b/SDL/.hg/store/data/test/shapes/p09__shape24.png.i new file mode 100644 index 0000000..7918c41 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p09__shape32alpha.bmp.i new file mode 100644 index 0000000..f7efcce Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p09__shape32alpha.png.i new file mode 100644 index 0000000..6f711ae Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p09__shape8.bmp.i new file mode 100644 index 0000000..7366303 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape8.png.i b/SDL/.hg/store/data/test/shapes/p09__shape8.png.i new file mode 100644 index 0000000..fbb1e6a Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p09__shape8alpha.bmp.i new file mode 100644 index 0000000..87d4934 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p09__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p09__shape8alpha.png.i new file mode 100644 index 0000000..ae0e402 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p09__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape1.bmp.i b/SDL/.hg/store/data/test/shapes/p10__shape1.bmp.i new file mode 100644 index 0000000..0c3a100 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape1.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape1.png.i b/SDL/.hg/store/data/test/shapes/p10__shape1.png.i new file mode 100644 index 0000000..d8d46c8 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape1.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape1alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p10__shape1alpha.bmp.i new file mode 100644 index 0000000..0706870 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape1alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape1alpha.png.i b/SDL/.hg/store/data/test/shapes/p10__shape1alpha.png.i new file mode 100644 index 0000000..0ee692a Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape1alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p10__shape24.bmp.i new file mode 100644 index 0000000..10f7c29 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape24.png.i b/SDL/.hg/store/data/test/shapes/p10__shape24.png.i new file mode 100644 index 0000000..1034187 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p10__shape32alpha.bmp.i new file mode 100644 index 0000000..c2a4a75 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p10__shape32alpha.png.i new file mode 100644 index 0000000..ba0bb69 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p10__shape8.bmp.i new file mode 100644 index 0000000..5e82feb Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape8.png.i b/SDL/.hg/store/data/test/shapes/p10__shape8.png.i new file mode 100644 index 0000000..bf3d56c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p10__shape8alpha.bmp.i new file mode 100644 index 0000000..8f2baa1 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p10__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p10__shape8alpha.png.i new file mode 100644 index 0000000..2b6e560 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p10__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p11__shape24.bmp.i new file mode 100644 index 0000000..17ea602 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape24.png.i b/SDL/.hg/store/data/test/shapes/p11__shape24.png.i new file mode 100644 index 0000000..73c262d Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p11__shape32alpha.bmp.i new file mode 100644 index 0000000..478b656 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p11__shape32alpha.png.i new file mode 100644 index 0000000..0797e67 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p11__shape8.bmp.i new file mode 100644 index 0000000..1aea1f9 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape8.png.i b/SDL/.hg/store/data/test/shapes/p11__shape8.png.i new file mode 100644 index 0000000..5d3c6f2 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p11__shape8alpha.bmp.i new file mode 100644 index 0000000..79dd46f Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p11__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p11__shape8alpha.png.i new file mode 100644 index 0000000..ed97f27 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p11__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p12__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p12__shape24.bmp.i new file mode 100644 index 0000000..271efc9 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p12__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p12__shape24.png.i b/SDL/.hg/store/data/test/shapes/p12__shape24.png.i new file mode 100644 index 0000000..5d1f21d Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p12__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p12__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p12__shape8.bmp.i new file mode 100644 index 0000000..fe2e156 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p12__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p12__shape8.png.i b/SDL/.hg/store/data/test/shapes/p12__shape8.png.i new file mode 100644 index 0000000..885ceb0 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p12__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p13__shape24.bmp.i new file mode 100644 index 0000000..ec85674 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape24.png.i b/SDL/.hg/store/data/test/shapes/p13__shape24.png.i new file mode 100644 index 0000000..6e73085 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p13__shape32alpha.bmp.i new file mode 100644 index 0000000..dcc7e85 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p13__shape32alpha.png.i new file mode 100644 index 0000000..768d2fc Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p13__shape8.bmp.i new file mode 100644 index 0000000..ecb675c Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape8.png.i b/SDL/.hg/store/data/test/shapes/p13__shape8.png.i new file mode 100644 index 0000000..c9fe3ca Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p13__shape8alpha.bmp.i new file mode 100644 index 0000000..83c370a Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p13__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p13__shape8alpha.png.i new file mode 100644 index 0000000..90074e4 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p13__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p14__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p14__shape24.bmp.i new file mode 100644 index 0000000..7b9373a Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p14__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p14__shape24.png.i b/SDL/.hg/store/data/test/shapes/p14__shape24.png.i new file mode 100644 index 0000000..6cf1241 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p14__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p14__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p14__shape8.bmp.i new file mode 100644 index 0000000..8931c03 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p14__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p14__shape8.png.i b/SDL/.hg/store/data/test/shapes/p14__shape8.png.i new file mode 100644 index 0000000..56fa61d Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p14__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p15__shape24.bmp.i new file mode 100644 index 0000000..e3bf94f Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape24.png.i b/SDL/.hg/store/data/test/shapes/p15__shape24.png.i new file mode 100644 index 0000000..08abcfa Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p15__shape32alpha.bmp.i new file mode 100644 index 0000000..96da35e Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape32alpha.png.i b/SDL/.hg/store/data/test/shapes/p15__shape32alpha.png.i new file mode 100644 index 0000000..331f83e Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape32alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p15__shape8.bmp.i new file mode 100644 index 0000000..4fc7da3 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape8.png.i b/SDL/.hg/store/data/test/shapes/p15__shape8.png.i new file mode 100644 index 0000000..44f4f47 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape8alpha.bmp.i b/SDL/.hg/store/data/test/shapes/p15__shape8alpha.bmp.i new file mode 100644 index 0000000..e99ee07 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape8alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p15__shape8alpha.png.i b/SDL/.hg/store/data/test/shapes/p15__shape8alpha.png.i new file mode 100644 index 0000000..327c4bc Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p15__shape8alpha.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p16__shape1.bmp.i b/SDL/.hg/store/data/test/shapes/p16__shape1.bmp.i new file mode 100644 index 0000000..6708053 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p16__shape1.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p16__shape1.png.i b/SDL/.hg/store/data/test/shapes/p16__shape1.png.i new file mode 100644 index 0000000..3c73192 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p16__shape1.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p16__shape24.bmp.i b/SDL/.hg/store/data/test/shapes/p16__shape24.bmp.i new file mode 100644 index 0000000..9685017 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p16__shape24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p16__shape24.png.i b/SDL/.hg/store/data/test/shapes/p16__shape24.png.i new file mode 100644 index 0000000..7e1b397 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p16__shape24.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/p16__shape8.bmp.i b/SDL/.hg/store/data/test/shapes/p16__shape8.bmp.i new file mode 100644 index 0000000..ee8f26e Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p16__shape8.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/p16__shape8.png.i b/SDL/.hg/store/data/test/shapes/p16__shape8.png.i new file mode 100644 index 0000000..0b1c570 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/p16__shape8.png.i differ diff --git a/SDL/.hg/store/data/test/shapes/trollface__24.bmp.i b/SDL/.hg/store/data/test/shapes/trollface__24.bmp.i new file mode 100644 index 0000000..413c76f Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/trollface__24.bmp.i differ diff --git a/SDL/.hg/store/data/test/shapes/trollface__32alpha.bmp.i b/SDL/.hg/store/data/test/shapes/trollface__32alpha.bmp.i new file mode 100644 index 0000000..f688586 Binary files /dev/null and b/SDL/.hg/store/data/test/shapes/trollface__32alpha.bmp.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_a_u_t_h_o_r_s.i b/SDL/.hg/store/data/test/test-automation/_a_u_t_h_o_r_s.i new file mode 100644 index 0000000..99e28cf Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_a_u_t_h_o_r_s.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_c_o_p_y_i_n_g.i b/SDL/.hg/store/data/test/test-automation/_c_o_p_y_i_n_g.i new file mode 100644 index 0000000..e4122ff Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_c_o_p_y_i_n_g.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_change_log.i b/SDL/.hg/store/data/test/test-automation/_change_log.i new file mode 100644 index 0000000..99e28cf Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_change_log.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_doxy_file.i b/SDL/.hg/store/data/test/test-automation/_doxy_file.i new file mode 100644 index 0000000..b6a1dc7 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_doxy_file.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_i_n_s_t_a_l_l.i b/SDL/.hg/store/data/test/test-automation/_i_n_s_t_a_l_l.i new file mode 100644 index 0000000..136adfe Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_i_n_s_t_a_l_l.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/_makefile.am.i new file mode 100644 index 0000000..193155c Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_makefile.in.i b/SDL/.hg/store/data/test/test-automation/_makefile.in.i new file mode 100644 index 0000000..153e1de Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_makefile.in.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_n_e_w_s.i b/SDL/.hg/store/data/test/test-automation/_n_e_w_s.i new file mode 100644 index 0000000..99e28cf Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_n_e_w_s.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_r_e_a_d_m_e.i b/SDL/.hg/store/data/test/test-automation/_r_e_a_d_m_e.i new file mode 100644 index 0000000..7d7d7c4 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_r_e_a_d_m_e.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_s_d_l__test.c.i b/SDL/.hg/store/data/test/test-automation/_s_d_l__test.c.i new file mode 100644 index 0000000..b20e04b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_s_d_l__test.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_s_d_l__test.h.i b/SDL/.hg/store/data/test/test-automation/_s_d_l__test.h.i new file mode 100644 index 0000000..bb7153e Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_s_d_l__test.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/_t_o_d_o.i b/SDL/.hg/store/data/test/test-automation/_t_o_d_o.i new file mode 100644 index 0000000..e990f98 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/_t_o_d_o.i differ diff --git a/SDL/.hg/store/data/test/test-automation/acinclude/libtool.m4.i b/SDL/.hg/store/data/test/test-automation/acinclude/libtool.m4.i new file mode 100644 index 0000000..167108d Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/acinclude/libtool.m4.i differ diff --git a/SDL/.hg/store/data/test/test-automation/acinclude/ltoptions.m4.i b/SDL/.hg/store/data/test/test-automation/acinclude/ltoptions.m4.i new file mode 100644 index 0000000..a8a396c Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/acinclude/ltoptions.m4.i differ diff --git a/SDL/.hg/store/data/test/test-automation/acinclude/ltsugar.m4.i b/SDL/.hg/store/data/test/test-automation/acinclude/ltsugar.m4.i new file mode 100644 index 0000000..f3804eb Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/acinclude/ltsugar.m4.i differ diff --git a/SDL/.hg/store/data/test/test-automation/acinclude/ltversion.m4.i b/SDL/.hg/store/data/test/test-automation/acinclude/ltversion.m4.i new file mode 100644 index 0000000..c9a813e Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/acinclude/ltversion.m4.i differ diff --git a/SDL/.hg/store/data/test/test-automation/acinclude/lt~7eobsolete.m4.i b/SDL/.hg/store/data/test/test-automation/acinclude/lt~7eobsolete.m4.i new file mode 100644 index 0000000..1eb4f6c Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/acinclude/lt~7eobsolete.m4.i differ diff --git a/SDL/.hg/store/data/test/test-automation/aclocal.m4.i b/SDL/.hg/store/data/test/test-automation/aclocal.m4.i new file mode 100644 index 0000000..68fd2e0 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/aclocal.m4.i differ diff --git a/SDL/.hg/store/data/test/test-automation/asserts.c.i b/SDL/.hg/store/data/test/test-automation/asserts.c.i new file mode 100644 index 0000000..b08d1f9 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/asserts.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/asserts.h.i b/SDL/.hg/store/data/test/test-automation/asserts.h.i new file mode 100644 index 0000000..199b0f8 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/asserts.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/autogen.sh.i b/SDL/.hg/store/data/test/test-automation/autogen.sh.i new file mode 100644 index 0000000..f164341 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/autogen.sh.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/compile.i b/SDL/.hg/store/data/test/test-automation/build-scripts/compile.i new file mode 100644 index 0000000..aaab8ab Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/compile.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/config.guess.i b/SDL/.hg/store/data/test/test-automation/build-scripts/config.guess.i new file mode 100644 index 0000000..e727365 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/config.guess.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/config.sub.i b/SDL/.hg/store/data/test/test-automation/build-scripts/config.sub.i new file mode 100644 index 0000000..ed2cbd4 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/config.sub.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/depcomp.i b/SDL/.hg/store/data/test/test-automation/build-scripts/depcomp.i new file mode 100644 index 0000000..3842723 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/depcomp.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/distclean.sh.i b/SDL/.hg/store/data/test/test-automation/build-scripts/distclean.sh.i new file mode 100644 index 0000000..af8463b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/distclean.sh.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/install-runner.sh.i b/SDL/.hg/store/data/test/test-automation/build-scripts/install-runner.sh.i new file mode 100644 index 0000000..3eecc16 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/install-runner.sh.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/install-sh.i b/SDL/.hg/store/data/test/test-automation/build-scripts/install-sh.i new file mode 100644 index 0000000..b0800f6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/install-sh.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/install-tests.sh.i b/SDL/.hg/store/data/test/test-automation/build-scripts/install-tests.sh.i new file mode 100644 index 0000000..011d758 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/install-tests.sh.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/ltmain.sh.i b/SDL/.hg/store/data/test/test-automation/build-scripts/ltmain.sh.i new file mode 100644 index 0000000..676c476 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/ltmain.sh.i differ diff --git a/SDL/.hg/store/data/test/test-automation/build-scripts/missing.i b/SDL/.hg/store/data/test/test-automation/build-scripts/missing.i new file mode 100644 index 0000000..5f81fbf Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/build-scripts/missing.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/common.c.i b/SDL/.hg/store/data/test/test-automation/common/common.c.i new file mode 100644 index 0000000..6fe283f Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/common.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/common.h.i b/SDL/.hg/store/data/test/test-automation/common/common.h.i new file mode 100644 index 0000000..3fde7f6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/common.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/images.h.i b/SDL/.hg/store/data/test/test-automation/common/images.h.i new file mode 100644 index 0000000..3dade6d Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/images.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/img__blit.c.i b/SDL/.hg/store/data/test/test-automation/common/img__blit.c.i new file mode 100644 index 0000000..a68e890 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/img__blit.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/img__blitblend.c.i b/SDL/.hg/store/data/test/test-automation/common/img__blitblend.c.i new file mode 100644 index 0000000..54051ad Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/img__blitblend.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/img__face.c.i b/SDL/.hg/store/data/test/test-automation/common/img__face.c.i new file mode 100644 index 0000000..fff6468 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/img__face.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/img__primitives.c.i b/SDL/.hg/store/data/test/test-automation/common/img__primitives.c.i new file mode 100644 index 0000000..bf203f6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/img__primitives.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/common/img__primitivesblend.c.i b/SDL/.hg/store/data/test/test-automation/common/img__primitivesblend.c.i new file mode 100644 index 0000000..e502509 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/common/img__primitivesblend.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/config.h.in.i b/SDL/.hg/store/data/test/test-automation/config.h.in.i new file mode 100644 index 0000000..40139c6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/config.h.in.i differ diff --git a/SDL/.hg/store/data/test/test-automation/configure.ac.i b/SDL/.hg/store/data/test/test-automation/configure.ac.i new file mode 100644 index 0000000..6a8dcd9 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/configure.ac.i differ diff --git a/SDL/.hg/store/data/test/test-automation/data/images/icon.bmp.i b/SDL/.hg/store/data/test/test-automation/data/images/icon.bmp.i new file mode 100644 index 0000000..65a92b4 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/data/images/icon.bmp.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/fuzzer.c.i b/SDL/.hg/store/data/test/test-automation/fuzzer/fuzzer.c.i new file mode 100644 index 0000000..6fca7fa Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/fuzzer.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/fuzzer.h.i b/SDL/.hg/store/data/test/test-automation/fuzzer/fuzzer.h.i new file mode 100644 index 0000000..3a48a67 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/fuzzer.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/utl__crc32.c.i b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__crc32.c.i new file mode 100644 index 0000000..b79086d Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__crc32.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/utl__crc32.h.i b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__crc32.h.i new file mode 100644 index 0000000..50314de Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__crc32.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/utl__md5.c.i b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__md5.c.i new file mode 100644 index 0000000..fc46af8 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__md5.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/utl__md5.h.i b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__md5.h.i new file mode 100644 index 0000000..9afbb24 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__md5.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/utl__random.c.i b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__random.c.i new file mode 100644 index 0000000..79fa17e Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__random.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/fuzzer/utl__random.h.i b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__random.h.i new file mode 100644 index 0000000..0de2a96 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/fuzzer/utl__random.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/icon.bmp.i b/SDL/.hg/store/data/test/test-automation/icon.bmp.i new file mode 100644 index 0000000..e9ea4ec Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/icon.bmp.i differ diff --git a/SDL/.hg/store/data/test/test-automation/include/_s_d_l__test.h.i b/SDL/.hg/store/data/test/test-automation/include/_s_d_l__test.h.i new file mode 100644 index 0000000..8e8d6c8 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/include/_s_d_l__test.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/install-tests.sh.i b/SDL/.hg/store/data/test/test-automation/install-tests.sh.i new file mode 100644 index 0000000..cb81981 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/install-tests.sh.i differ diff --git a/SDL/.hg/store/data/test/test-automation/logger.c.i b/SDL/.hg/store/data/test/test-automation/logger.c.i new file mode 100644 index 0000000..373300d Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/logger.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/logger.h.i b/SDL/.hg/store/data/test/test-automation/logger.h.i new file mode 100644 index 0000000..99123d3 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/logger__helpers.c.i b/SDL/.hg/store/data/test/test-automation/logger__helpers.c.i new file mode 100644 index 0000000..3a4cea5 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/logger__helpers.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/logger__helpers.h.i b/SDL/.hg/store/data/test/test-automation/logger__helpers.h.i new file mode 100644 index 0000000..07f4456 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/logger__helpers.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/plain__logger.c.i b/SDL/.hg/store/data/test/test-automation/plain__logger.c.i new file mode 100644 index 0000000..7c585f1 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/plain__logger.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/plain__logger.h.i b/SDL/.hg/store/data/test/test-automation/plain__logger.h.i new file mode 100644 index 0000000..2d53fe7 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/plain__logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/runner.c.i b/SDL/.hg/store/data/test/test-automation/runner.c.i new file mode 100644 index 0000000..e189e7f Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/runner.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/skeleton.xsl.i b/SDL/.hg/store/data/test/test-automation/skeleton.xsl.i new file mode 100644 index 0000000..9644770 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/skeleton.xsl.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/_makefile.am.i new file mode 100644 index 0000000..5a317e9 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/_s_d_l__test.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/_s_d_l__test.c.i new file mode 100644 index 0000000..3f483ef Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/_s_d_l__test.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/common.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/common.c.i new file mode 100644 index 0000000..8bf8f5a Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/common.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/common.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/common.h.i new file mode 100644 index 0000000..dadffd6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/common.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/images.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/images.h.i new file mode 100644 index 0000000..2b7e85f Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/images.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__blit.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__blit.c.i new file mode 100644 index 0000000..193c40b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__blit.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__blitblend.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__blitblend.c.i new file mode 100644 index 0000000..48ea1c1 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__blitblend.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__face.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__face.c.i new file mode 100644 index 0000000..0aec9cd Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__face.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__primitives.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__primitives.c.i new file mode 100644 index 0000000..dec25e9 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__primitives.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__primitivesblend.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__primitivesblend.c.i new file mode 100644 index 0000000..741947f Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/common/img__primitivesblend.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/fuzzer.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/fuzzer.c.i new file mode 100644 index 0000000..2899020 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/fuzzer.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/fuzzer.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/fuzzer.h.i new file mode 100644 index 0000000..9750477 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/fuzzer.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__crc32.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__crc32.c.i new file mode 100644 index 0000000..8dfd1ff Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__crc32.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__crc32.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__crc32.h.i new file mode 100644 index 0000000..6e9fd2e Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__crc32.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__md5.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__md5.c.i new file mode 100644 index 0000000..2e9f5f7 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__md5.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__md5.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__md5.h.i new file mode 100644 index 0000000..6f6ac1b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__md5.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__random.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__random.c.i new file mode 100644 index 0000000..783e287 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__random.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__random.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__random.h.i new file mode 100644 index 0000000..f016682 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/fuzzer/utl__random.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/logger__helpers.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/logger__helpers.c.i new file mode 100644 index 0000000..965df43 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/logger__helpers.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/logger__helpers.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/logger__helpers.h.i new file mode 100644 index 0000000..0c48600 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/logger__helpers.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/plain__logger.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/plain__logger.c.i new file mode 100644 index 0000000..e55a240 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/plain__logger.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/plain__logger.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/plain__logger.h.i new file mode 100644 index 0000000..1d9e853 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/plain__logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml.c.i new file mode 100644 index 0000000..cd9da76 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml.h.i new file mode 100644 index 0000000..b784ba5 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml__logger.c.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml__logger.c.i new file mode 100644 index 0000000..dceda9a Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml__logger.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml__logger.h.i b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml__logger.h.i new file mode 100644 index 0000000..e9c24ac Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/lib_s_d_ltest/xml__logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/src/libtest/_makefile.am.i new file mode 100644 index 0000000..7172daa Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/_s_d_l__test.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/_s_d_l__test.c.i new file mode 100644 index 0000000..d84e5a2 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/_s_d_l__test.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/common.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/common.c.i new file mode 100644 index 0000000..16f6264 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/common.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/common.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/common.h.i new file mode 100644 index 0000000..a69aa19 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/common.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/images.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/images.h.i new file mode 100644 index 0000000..8611e66 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/images.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__blit.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__blit.c.i new file mode 100644 index 0000000..9b78421 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__blit.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__blitblend.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__blitblend.c.i new file mode 100644 index 0000000..f85b7ea Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__blitblend.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__face.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__face.c.i new file mode 100644 index 0000000..a8e5522 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__face.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__primitives.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__primitives.c.i new file mode 100644 index 0000000..b7a7776 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__primitives.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__primitivesblend.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__primitivesblend.c.i new file mode 100644 index 0000000..15e5ca7 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/common/img__primitivesblend.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/fuzzer.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/fuzzer.c.i new file mode 100644 index 0000000..1316e12 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/fuzzer.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/fuzzer.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/fuzzer.h.i new file mode 100644 index 0000000..251ed36 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/fuzzer.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__crc32.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__crc32.c.i new file mode 100644 index 0000000..758e004 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__crc32.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__crc32.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__crc32.h.i new file mode 100644 index 0000000..257f8a9 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__crc32.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__md5.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__md5.c.i new file mode 100644 index 0000000..9b40b7d Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__md5.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__md5.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__md5.h.i new file mode 100644 index 0000000..53e5009 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__md5.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__random.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__random.c.i new file mode 100644 index 0000000..3dc648c Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__random.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__random.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__random.h.i new file mode 100644 index 0000000..b8c06d9 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/fuzzer/utl__random.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/logger__helpers.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/logger__helpers.c.i new file mode 100644 index 0000000..be30304 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/logger__helpers.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/logger__helpers.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/logger__helpers.h.i new file mode 100644 index 0000000..5c0c679 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/logger__helpers.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/plain__logger.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/plain__logger.c.i new file mode 100644 index 0000000..e3d069b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/plain__logger.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/plain__logger.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/plain__logger.h.i new file mode 100644 index 0000000..98f421a Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/plain__logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/xml.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/xml.c.i new file mode 100644 index 0000000..bf9bebc Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/xml.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/xml.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/xml.h.i new file mode 100644 index 0000000..5cc81e6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/xml.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/xml__logger.c.i b/SDL/.hg/store/data/test/test-automation/src/libtest/xml__logger.c.i new file mode 100644 index 0000000..4dad0b5 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/xml__logger.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/libtest/xml__logger.h.i b/SDL/.hg/store/data/test/test-automation/src/libtest/xml__logger.h.i new file mode 100644 index 0000000..ffa55c3 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/libtest/xml__logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/runner/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/src/runner/_makefile.am.i new file mode 100644 index 0000000..7c9f9dc Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/runner/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/runner/logger.h.i b/SDL/.hg/store/data/test/test-automation/src/runner/logger.h.i new file mode 100644 index 0000000..77a2111 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/runner/logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/runner/runner.c.i b/SDL/.hg/store/data/test/test-automation/src/runner/runner.c.i new file mode 100644 index 0000000..f916fcc Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/runner/runner.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/runner/support.c.i b/SDL/.hg/store/data/test/test-automation/src/runner/support.c.i new file mode 100644 index 0000000..b87f240 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/runner/support.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/src/runner/support.h.i b/SDL/.hg/store/data/test/test-automation/src/runner/support.h.i new file mode 100644 index 0000000..441092b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/src/runner/support.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/style.xsl.i b/SDL/.hg/store/data/test/test-automation/style.xsl.i new file mode 100644 index 0000000..2f14d00 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/style.xsl.i differ diff --git a/SDL/.hg/store/data/test/test-automation/support.c.i b/SDL/.hg/store/data/test/test-automation/support.c.i new file mode 100644 index 0000000..33d4d42 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/support.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/support.h.i b/SDL/.hg/store/data/test/test-automation/support.h.i new file mode 100644 index 0000000..2f48023 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/support.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/test.c.i b/SDL/.hg/store/data/test/test-automation/test.c.i new file mode 100644 index 0000000..987435e Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/test.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/test.h.i b/SDL/.hg/store/data/test/test-automation/test.h.i new file mode 100644 index 0000000..3d7ab1c Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/test.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testaudio/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/testaudio/_makefile.am.i new file mode 100644 index 0000000..d058f15 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testaudio/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testaudio/testaudio.c.i b/SDL/.hg/store/data/test/test-automation/testaudio/testaudio.c.i new file mode 100644 index 0000000..bd36b46 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testaudio/testaudio.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testdummy/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/testdummy/_makefile.am.i new file mode 100644 index 0000000..377eb84 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testdummy/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testdummy/testdummy.c.i b/SDL/.hg/store/data/test/test-automation/testdummy/testdummy.c.i new file mode 100644 index 0000000..b8f4915 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testdummy/testdummy.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testplatform/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/testplatform/_makefile.am.i new file mode 100644 index 0000000..9197928 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testplatform/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testplatform/_makefile.in.i b/SDL/.hg/store/data/test/test-automation/testplatform/_makefile.in.i new file mode 100644 index 0000000..39bc366 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testplatform/_makefile.in.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testplatform/testplatform.c.i b/SDL/.hg/store/data/test/test-automation/testplatform/testplatform.c.i new file mode 100644 index 0000000..cab1149 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testplatform/testplatform.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testrect/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/testrect/_makefile.am.i new file mode 100644 index 0000000..ab2a877 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testrect/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testrect/_makefile.in.i b/SDL/.hg/store/data/test/test-automation/testrect/_makefile.in.i new file mode 100644 index 0000000..2e8f8bb Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testrect/_makefile.in.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testrect/testrect.c.i b/SDL/.hg/store/data/test/test-automation/testrect/testrect.c.i new file mode 100644 index 0000000..8527e9b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testrect/testrect.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testrender/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/testrender/_makefile.am.i new file mode 100644 index 0000000..4e2fdc0 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testrender/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testrender/testrender.c.i b/SDL/.hg/store/data/test/test-automation/testrender/testrender.c.i new file mode 100644 index 0000000..a36c346 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testrender/testrender.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testrwops/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/testrwops/_makefile.am.i new file mode 100644 index 0000000..7ee41a5 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testrwops/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testrwops/testrwops.c.i b/SDL/.hg/store/data/test/test-automation/testrwops/testrwops.c.i new file mode 100644 index 0000000..8a2f360 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testrwops/testrwops.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/_makefile.am.i new file mode 100644 index 0000000..c338083 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/_s_d_l__test.c.i b/SDL/.hg/store/data/test/test-automation/tests/_s_d_l__test.c.i new file mode 100644 index 0000000..db837af Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/_s_d_l__test.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/_s_d_l__test.h.i b/SDL/.hg/store/data/test/test-automation/tests/_s_d_l__test.h.i new file mode 100644 index 0000000..9293827 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/_s_d_l__test.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/asserts.c.i b/SDL/.hg/store/data/test/test-automation/tests/asserts.c.i new file mode 100644 index 0000000..bf9694c Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/asserts.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/asserts.h.i b/SDL/.hg/store/data/test/test-automation/tests/asserts.h.i new file mode 100644 index 0000000..06fb798 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/asserts.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/test.c.i b/SDL/.hg/store/data/test/test-automation/tests/test.c.i new file mode 100644 index 0000000..f9d9619 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/test.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testaudio/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testaudio/_makefile.am.i new file mode 100644 index 0000000..3f32086 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testaudio/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testaudio/testaudio.c.i b/SDL/.hg/store/data/test/test-automation/tests/testaudio/testaudio.c.i new file mode 100644 index 0000000..12341dc Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testaudio/testaudio.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testclipboard/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testclipboard/_makefile.am.i new file mode 100644 index 0000000..4470c07 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testclipboard/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testclipboard/testclipboard.c.i b/SDL/.hg/store/data/test/test-automation/tests/testclipboard/testclipboard.c.i new file mode 100644 index 0000000..9b5a9f6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testclipboard/testclipboard.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testdummy/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testdummy/_makefile.am.i new file mode 100644 index 0000000..8e56b91 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testdummy/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testdummy/testdummy.c.i b/SDL/.hg/store/data/test/test-automation/tests/testdummy/testdummy.c.i new file mode 100644 index 0000000..070584b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testdummy/testdummy.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testevents/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testevents/_makefile.am.i new file mode 100644 index 0000000..3a264f6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testevents/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testevents/testevents.c.i b/SDL/.hg/store/data/test/test-automation/tests/testevents/testevents.c.i new file mode 100644 index 0000000..c81bce8 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testevents/testevents.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testkeyboard/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testkeyboard/_makefile.am.i new file mode 100644 index 0000000..5c11047 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testkeyboard/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testkeyboard/testkeyboard.c.i b/SDL/.hg/store/data/test/test-automation/tests/testkeyboard/testkeyboard.c.i new file mode 100644 index 0000000..a40529c Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testkeyboard/testkeyboard.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testplatform/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testplatform/_makefile.am.i new file mode 100644 index 0000000..ff42994 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testplatform/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testplatform/testplatform.c.i b/SDL/.hg/store/data/test/test-automation/tests/testplatform/testplatform.c.i new file mode 100644 index 0000000..9c65552 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testplatform/testplatform.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrect/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testrect/_makefile.am.i new file mode 100644 index 0000000..8c0be39 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrect/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrect/testrect.c.i b/SDL/.hg/store/data/test/test-automation/tests/testrect/testrect.c.i new file mode 100644 index 0000000..e873eca Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrect/testrect.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrender/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testrender/_makefile.am.i new file mode 100644 index 0000000..3a789e5 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrender/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrender/testrender.c.i b/SDL/.hg/store/data/test/test-automation/tests/testrender/testrender.c.i new file mode 100644 index 0000000..e959238 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrender/testrender.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrwops/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testrwops/_makefile.am.i new file mode 100644 index 0000000..8549a21 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrwops/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrwops/_test_support_r_wops.h.i b/SDL/.hg/store/data/test/test-automation/tests/testrwops/_test_support_r_wops.h.i new file mode 100644 index 0000000..ca3dbdd Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrwops/_test_support_r_wops.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrwops/_test_support_r_wops___generic.c.i b/SDL/.hg/store/data/test/test-automation/tests/testrwops/_test_support_r_wops___generic.c.i new file mode 100644 index 0000000..c9fde28 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrwops/_test_support_r_wops___generic.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrwops/read.i b/SDL/.hg/store/data/test/test-automation/tests/testrwops/read.i new file mode 100644 index 0000000..d40f9ec Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrwops/read.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testrwops/testrwops.c.i b/SDL/.hg/store/data/test/test-automation/tests/testrwops/testrwops.c.i new file mode 100644 index 0000000..ab95ea2 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testrwops/testrwops.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testsurface/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testsurface/_makefile.am.i new file mode 100644 index 0000000..adbc13e Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testsurface/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testsurface/testsurface.c.i b/SDL/.hg/store/data/test/test-automation/tests/testsurface/testsurface.c.i new file mode 100644 index 0000000..17577d0 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testsurface/testsurface.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testsyswm/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testsyswm/_makefile.am.i new file mode 100644 index 0000000..111404e Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testsyswm/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testsyswm/testsyswm.c.i b/SDL/.hg/store/data/test/test-automation/tests/testsyswm/testsyswm.c.i new file mode 100644 index 0000000..2816447 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testsyswm/testsyswm.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testvideo/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/tests/testvideo/_makefile.am.i new file mode 100644 index 0000000..e767720 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testvideo/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/tests/testvideo/testvideo.c.i b/SDL/.hg/store/data/test/test-automation/tests/testvideo/testvideo.c.i new file mode 100644 index 0000000..4a77ad7 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/tests/testvideo/testvideo.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testsurface/_makefile.am.i b/SDL/.hg/store/data/test/test-automation/testsurface/_makefile.am.i new file mode 100644 index 0000000..a763985 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testsurface/_makefile.am.i differ diff --git a/SDL/.hg/store/data/test/test-automation/testsurface/testsurface.c.i b/SDL/.hg/store/data/test/test-automation/testsurface/testsurface.c.i new file mode 100644 index 0000000..c41e0a6 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/testsurface/testsurface.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/xml.c.i b/SDL/.hg/store/data/test/test-automation/xml.c.i new file mode 100644 index 0000000..754a59b Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/xml.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/xml.h.i b/SDL/.hg/store/data/test/test-automation/xml.h.i new file mode 100644 index 0000000..1aa36f8 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/xml.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/xml__logger.c.i b/SDL/.hg/store/data/test/test-automation/xml__logger.c.i new file mode 100644 index 0000000..cf87fdb Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/xml__logger.c.i differ diff --git a/SDL/.hg/store/data/test/test-automation/xml__logger.h.i b/SDL/.hg/store/data/test/test-automation/xml__logger.h.i new file mode 100644 index 0000000..87ac3a7 Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/xml__logger.h.i differ diff --git a/SDL/.hg/store/data/test/test-automation/~2ehgignore.i b/SDL/.hg/store/data/test/test-automation/~2ehgignore.i new file mode 100644 index 0000000..ccc47ce Binary files /dev/null and b/SDL/.hg/store/data/test/test-automation/~2ehgignore.i differ diff --git a/SDL/.hg/store/data/test/testalpha.c.i b/SDL/.hg/store/data/test/testalpha.c.i new file mode 100644 index 0000000..af39d29 Binary files /dev/null and b/SDL/.hg/store/data/test/testalpha.c.i differ diff --git a/SDL/.hg/store/data/test/testatomic.c.i b/SDL/.hg/store/data/test/testatomic.c.i new file mode 100644 index 0000000..2400d24 Binary files /dev/null and b/SDL/.hg/store/data/test/testatomic.c.i differ diff --git a/SDL/.hg/store/data/test/testaudiohotplug.c.i b/SDL/.hg/store/data/test/testaudiohotplug.c.i new file mode 100644 index 0000000..3c5e7ab Binary files /dev/null and b/SDL/.hg/store/data/test/testaudiohotplug.c.i differ diff --git a/SDL/.hg/store/data/test/testaudioinfo.c.i b/SDL/.hg/store/data/test/testaudioinfo.c.i new file mode 100644 index 0000000..dcc9eba Binary files /dev/null and b/SDL/.hg/store/data/test/testaudioinfo.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation.c.i b/SDL/.hg/store/data/test/testautomation.c.i new file mode 100644 index 0000000..f7d501c Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__audio.c.i b/SDL/.hg/store/data/test/testautomation__audio.c.i new file mode 100644 index 0000000..0236f04 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__audio.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__clipboard.c.i b/SDL/.hg/store/data/test/testautomation__clipboard.c.i new file mode 100644 index 0000000..14c54a4 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__clipboard.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__events.c.i b/SDL/.hg/store/data/test/testautomation__events.c.i new file mode 100644 index 0000000..2a447ef Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__events.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__hints.c.i b/SDL/.hg/store/data/test/testautomation__hints.c.i new file mode 100644 index 0000000..b81b151 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__hints.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__keyboard.c.i b/SDL/.hg/store/data/test/testautomation__keyboard.c.i new file mode 100644 index 0000000..9f812a9 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__keyboard.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__main.c.i b/SDL/.hg/store/data/test/testautomation__main.c.i new file mode 100644 index 0000000..c1d3d07 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__main.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__mouse.c.i b/SDL/.hg/store/data/test/testautomation__mouse.c.i new file mode 100644 index 0000000..c48d09c Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__mouse.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__pixels.c.i b/SDL/.hg/store/data/test/testautomation__pixels.c.i new file mode 100644 index 0000000..34a4b6e Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__pixels.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__platform.c.i b/SDL/.hg/store/data/test/testautomation__platform.c.i new file mode 100644 index 0000000..c7c5fdc Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__platform.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__rect.c.i b/SDL/.hg/store/data/test/testautomation__rect.c.i new file mode 100644 index 0000000..871bc4a Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__rect.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__render.c.i b/SDL/.hg/store/data/test/testautomation__render.c.i new file mode 100644 index 0000000..4ac670e Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__render.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__rwops.c.i b/SDL/.hg/store/data/test/testautomation__rwops.c.i new file mode 100644 index 0000000..a5692f7 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__rwops.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__sdltest.c.i b/SDL/.hg/store/data/test/testautomation__sdltest.c.i new file mode 100644 index 0000000..9ebbf4f Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__sdltest.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__stdlib.c.i b/SDL/.hg/store/data/test/testautomation__stdlib.c.i new file mode 100644 index 0000000..15434c7 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__stdlib.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__suites.h.i b/SDL/.hg/store/data/test/testautomation__suites.h.i new file mode 100644 index 0000000..1269acd Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__suites.h.i differ diff --git a/SDL/.hg/store/data/test/testautomation__surface.c.i b/SDL/.hg/store/data/test/testautomation__surface.c.i new file mode 100644 index 0000000..41d8adf Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__surface.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__syswm.c.i b/SDL/.hg/store/data/test/testautomation__syswm.c.i new file mode 100644 index 0000000..dc3ba0f Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__syswm.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__timer.c.i b/SDL/.hg/store/data/test/testautomation__timer.c.i new file mode 100644 index 0000000..45b9b89 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__timer.c.i differ diff --git a/SDL/.hg/store/data/test/testautomation__video.c.i b/SDL/.hg/store/data/test/testautomation__video.c.i new file mode 100644 index 0000000..a18a8a6 Binary files /dev/null and b/SDL/.hg/store/data/test/testautomation__video.c.i differ diff --git a/SDL/.hg/store/data/test/testbitmap.c.i b/SDL/.hg/store/data/test/testbitmap.c.i new file mode 100644 index 0000000..0c44be3 Binary files /dev/null and b/SDL/.hg/store/data/test/testbitmap.c.i differ diff --git a/SDL/.hg/store/data/test/testblitspeed.c.i b/SDL/.hg/store/data/test/testblitspeed.c.i new file mode 100644 index 0000000..1e63d29 Binary files /dev/null and b/SDL/.hg/store/data/test/testblitspeed.c.i differ diff --git a/SDL/.hg/store/data/test/testbounds.c.i b/SDL/.hg/store/data/test/testbounds.c.i new file mode 100644 index 0000000..9ec2a74 Binary files /dev/null and b/SDL/.hg/store/data/test/testbounds.c.i differ diff --git a/SDL/.hg/store/data/test/testcdrom.c.i b/SDL/.hg/store/data/test/testcdrom.c.i new file mode 100644 index 0000000..7a31a11 Binary files /dev/null and b/SDL/.hg/store/data/test/testcdrom.c.i differ diff --git a/SDL/.hg/store/data/test/testcpuinfo.c.i b/SDL/.hg/store/data/test/testcpuinfo.c.i new file mode 100644 index 0000000..9e36310 Binary files /dev/null and b/SDL/.hg/store/data/test/testcpuinfo.c.i differ diff --git a/SDL/.hg/store/data/test/testcursor.c.i b/SDL/.hg/store/data/test/testcursor.c.i new file mode 100644 index 0000000..97aea50 Binary files /dev/null and b/SDL/.hg/store/data/test/testcursor.c.i differ diff --git a/SDL/.hg/store/data/test/testdisplayinfo.c.i b/SDL/.hg/store/data/test/testdisplayinfo.c.i new file mode 100644 index 0000000..1e03c28 Binary files /dev/null and b/SDL/.hg/store/data/test/testdisplayinfo.c.i differ diff --git a/SDL/.hg/store/data/test/testdragareas.c.i b/SDL/.hg/store/data/test/testdragareas.c.i new file mode 100644 index 0000000..f37a0ce Binary files /dev/null and b/SDL/.hg/store/data/test/testdragareas.c.i differ diff --git a/SDL/.hg/store/data/test/testdraw2.c.i b/SDL/.hg/store/data/test/testdraw2.c.i new file mode 100644 index 0000000..18b18a1 Binary files /dev/null and b/SDL/.hg/store/data/test/testdraw2.c.i differ diff --git a/SDL/.hg/store/data/test/testdrawchessboard.c.i b/SDL/.hg/store/data/test/testdrawchessboard.c.i new file mode 100644 index 0000000..2d935be Binary files /dev/null and b/SDL/.hg/store/data/test/testdrawchessboard.c.i differ diff --git a/SDL/.hg/store/data/test/testdropfile.c.i b/SDL/.hg/store/data/test/testdropfile.c.i new file mode 100644 index 0000000..25c284b Binary files /dev/null and b/SDL/.hg/store/data/test/testdropfile.c.i differ diff --git a/SDL/.hg/store/data/test/testdyngl.c.i b/SDL/.hg/store/data/test/testdyngl.c.i new file mode 100644 index 0000000..b46aa38 Binary files /dev/null and b/SDL/.hg/store/data/test/testdyngl.c.i differ diff --git a/SDL/.hg/store/data/test/testdyngles.c.i b/SDL/.hg/store/data/test/testdyngles.c.i new file mode 100644 index 0000000..1ae8586 Binary files /dev/null and b/SDL/.hg/store/data/test/testdyngles.c.i differ diff --git a/SDL/.hg/store/data/test/testendian.c.i b/SDL/.hg/store/data/test/testendian.c.i new file mode 100644 index 0000000..800b3c0 Binary files /dev/null and b/SDL/.hg/store/data/test/testendian.c.i differ diff --git a/SDL/.hg/store/data/test/testerror.c.i b/SDL/.hg/store/data/test/testerror.c.i new file mode 100644 index 0000000..97b82d1 Binary files /dev/null and b/SDL/.hg/store/data/test/testerror.c.i differ diff --git a/SDL/.hg/store/data/test/testeyes.c.i b/SDL/.hg/store/data/test/testeyes.c.i new file mode 100644 index 0000000..d4df0c3 Binary files /dev/null and b/SDL/.hg/store/data/test/testeyes.c.i differ diff --git a/SDL/.hg/store/data/test/testeyes.i b/SDL/.hg/store/data/test/testeyes.i new file mode 100644 index 0000000..c2db368 Binary files /dev/null and b/SDL/.hg/store/data/test/testeyes.i differ diff --git a/SDL/.hg/store/data/test/testeyes__bitmap.h.i b/SDL/.hg/store/data/test/testeyes__bitmap.h.i new file mode 100644 index 0000000..e8cd027 Binary files /dev/null and b/SDL/.hg/store/data/test/testeyes__bitmap.h.i differ diff --git a/SDL/.hg/store/data/test/testeyes__mask__bitmap.h.i b/SDL/.hg/store/data/test/testeyes__mask__bitmap.h.i new file mode 100644 index 0000000..81bfa38 Binary files /dev/null and b/SDL/.hg/store/data/test/testeyes__mask__bitmap.h.i differ diff --git a/SDL/.hg/store/data/test/testfile.c.i b/SDL/.hg/store/data/test/testfile.c.i new file mode 100644 index 0000000..dc640bc Binary files /dev/null and b/SDL/.hg/store/data/test/testfile.c.i differ diff --git a/SDL/.hg/store/data/test/testfilesystem.c.i b/SDL/.hg/store/data/test/testfilesystem.c.i new file mode 100644 index 0000000..c5defc3 Binary files /dev/null and b/SDL/.hg/store/data/test/testfilesystem.c.i differ diff --git a/SDL/.hg/store/data/test/testfill.c.i b/SDL/.hg/store/data/test/testfill.c.i new file mode 100644 index 0000000..3212b5b Binary files /dev/null and b/SDL/.hg/store/data/test/testfill.c.i differ diff --git a/SDL/.hg/store/data/test/testfill2.c.i b/SDL/.hg/store/data/test/testfill2.c.i new file mode 100644 index 0000000..b82500c Binary files /dev/null and b/SDL/.hg/store/data/test/testfill2.c.i differ diff --git a/SDL/.hg/store/data/test/testgamecontroller.c.i b/SDL/.hg/store/data/test/testgamecontroller.c.i new file mode 100644 index 0000000..0a4e046 Binary files /dev/null and b/SDL/.hg/store/data/test/testgamecontroller.c.i differ diff --git a/SDL/.hg/store/data/test/testgamma.c.i b/SDL/.hg/store/data/test/testgamma.c.i new file mode 100644 index 0000000..a6c335a Binary files /dev/null and b/SDL/.hg/store/data/test/testgamma.c.i differ diff --git a/SDL/.hg/store/data/test/testgesture.c.i b/SDL/.hg/store/data/test/testgesture.c.i new file mode 100644 index 0000000..945145e Binary files /dev/null and b/SDL/.hg/store/data/test/testgesture.c.i differ diff --git a/SDL/.hg/store/data/test/testgl.c.i b/SDL/.hg/store/data/test/testgl.c.i new file mode 100644 index 0000000..2b48224 Binary files /dev/null and b/SDL/.hg/store/data/test/testgl.c.i differ diff --git a/SDL/.hg/store/data/test/testgl2.c.i b/SDL/.hg/store/data/test/testgl2.c.i new file mode 100644 index 0000000..b2cdc20 Binary files /dev/null and b/SDL/.hg/store/data/test/testgl2.c.i differ diff --git a/SDL/.hg/store/data/test/testgles.c.i b/SDL/.hg/store/data/test/testgles.c.i new file mode 100644 index 0000000..568813b Binary files /dev/null and b/SDL/.hg/store/data/test/testgles.c.i differ diff --git a/SDL/.hg/store/data/test/testgles2.c.i b/SDL/.hg/store/data/test/testgles2.c.i new file mode 100644 index 0000000..3e23938 Binary files /dev/null and b/SDL/.hg/store/data/test/testgles2.c.i differ diff --git a/SDL/.hg/store/data/test/testhaptic.c.i b/SDL/.hg/store/data/test/testhaptic.c.i new file mode 100644 index 0000000..502a045 Binary files /dev/null and b/SDL/.hg/store/data/test/testhaptic.c.i differ diff --git a/SDL/.hg/store/data/test/testhittesting.c.i b/SDL/.hg/store/data/test/testhittesting.c.i new file mode 100644 index 0000000..a83d8ce Binary files /dev/null and b/SDL/.hg/store/data/test/testhittesting.c.i differ diff --git a/SDL/.hg/store/data/test/testhotplug.c.i b/SDL/.hg/store/data/test/testhotplug.c.i new file mode 100644 index 0000000..42d5be5 Binary files /dev/null and b/SDL/.hg/store/data/test/testhotplug.c.i differ diff --git a/SDL/.hg/store/data/test/testhread.c.i b/SDL/.hg/store/data/test/testhread.c.i new file mode 100644 index 0000000..1d14227 Binary files /dev/null and b/SDL/.hg/store/data/test/testhread.c.i differ diff --git a/SDL/.hg/store/data/test/testiconv.c.i b/SDL/.hg/store/data/test/testiconv.c.i new file mode 100644 index 0000000..c6e92ca Binary files /dev/null and b/SDL/.hg/store/data/test/testiconv.c.i differ diff --git a/SDL/.hg/store/data/test/testime.c.i b/SDL/.hg/store/data/test/testime.c.i new file mode 100644 index 0000000..3e0fa85 Binary files /dev/null and b/SDL/.hg/store/data/test/testime.c.i differ diff --git a/SDL/.hg/store/data/test/testintersections.c.i b/SDL/.hg/store/data/test/testintersections.c.i new file mode 100644 index 0000000..f18bec2 Binary files /dev/null and b/SDL/.hg/store/data/test/testintersections.c.i differ diff --git a/SDL/.hg/store/data/test/testjoystick.c.i b/SDL/.hg/store/data/test/testjoystick.c.i new file mode 100644 index 0000000..2dbaaf5 Binary files /dev/null and b/SDL/.hg/store/data/test/testjoystick.c.i differ diff --git a/SDL/.hg/store/data/test/testkeys.c.i b/SDL/.hg/store/data/test/testkeys.c.i new file mode 100644 index 0000000..3e76efd Binary files /dev/null and b/SDL/.hg/store/data/test/testkeys.c.i differ diff --git a/SDL/.hg/store/data/test/testlines2.c.i b/SDL/.hg/store/data/test/testlines2.c.i new file mode 100644 index 0000000..f6f8b10 Binary files /dev/null and b/SDL/.hg/store/data/test/testlines2.c.i differ diff --git a/SDL/.hg/store/data/test/testloadso.c.i b/SDL/.hg/store/data/test/testloadso.c.i new file mode 100644 index 0000000..2ea8686 Binary files /dev/null and b/SDL/.hg/store/data/test/testloadso.c.i differ diff --git a/SDL/.hg/store/data/test/testlock.c.i b/SDL/.hg/store/data/test/testlock.c.i new file mode 100644 index 0000000..fd38be8 Binary files /dev/null and b/SDL/.hg/store/data/test/testlock.c.i differ diff --git a/SDL/.hg/store/data/test/testmessage.c.i b/SDL/.hg/store/data/test/testmessage.c.i new file mode 100644 index 0000000..292fc18 Binary files /dev/null and b/SDL/.hg/store/data/test/testmessage.c.i differ diff --git a/SDL/.hg/store/data/test/testmmousetablet.c.i b/SDL/.hg/store/data/test/testmmousetablet.c.i new file mode 100644 index 0000000..589c82c Binary files /dev/null and b/SDL/.hg/store/data/test/testmmousetablet.c.i differ diff --git a/SDL/.hg/store/data/test/testmultiaudio.c.i b/SDL/.hg/store/data/test/testmultiaudio.c.i new file mode 100644 index 0000000..c790e8d Binary files /dev/null and b/SDL/.hg/store/data/test/testmultiaudio.c.i differ diff --git a/SDL/.hg/store/data/test/testnative.c.i b/SDL/.hg/store/data/test/testnative.c.i new file mode 100644 index 0000000..91ce2a0 Binary files /dev/null and b/SDL/.hg/store/data/test/testnative.c.i differ diff --git a/SDL/.hg/store/data/test/testnative.h.i b/SDL/.hg/store/data/test/testnative.h.i new file mode 100644 index 0000000..b1dbce9 Binary files /dev/null and b/SDL/.hg/store/data/test/testnative.h.i differ diff --git a/SDL/.hg/store/data/test/testnativecocoa.m.i b/SDL/.hg/store/data/test/testnativecocoa.m.i new file mode 100644 index 0000000..d4f5bf0 Binary files /dev/null and b/SDL/.hg/store/data/test/testnativecocoa.m.i differ diff --git a/SDL/.hg/store/data/test/testnativew32.c.i b/SDL/.hg/store/data/test/testnativew32.c.i new file mode 100644 index 0000000..87bd867 Binary files /dev/null and b/SDL/.hg/store/data/test/testnativew32.c.i differ diff --git a/SDL/.hg/store/data/test/testnativex11.c.i b/SDL/.hg/store/data/test/testnativex11.c.i new file mode 100644 index 0000000..4a51963 Binary files /dev/null and b/SDL/.hg/store/data/test/testnativex11.c.i differ diff --git a/SDL/.hg/store/data/test/testoverlay.c.i b/SDL/.hg/store/data/test/testoverlay.c.i new file mode 100644 index 0000000..ffa62d1 Binary files /dev/null and b/SDL/.hg/store/data/test/testoverlay.c.i differ diff --git a/SDL/.hg/store/data/test/testoverlay2.c.i b/SDL/.hg/store/data/test/testoverlay2.c.i new file mode 100644 index 0000000..f87f97e Binary files /dev/null and b/SDL/.hg/store/data/test/testoverlay2.c.i differ diff --git a/SDL/.hg/store/data/test/testpalette.c.i b/SDL/.hg/store/data/test/testpalette.c.i new file mode 100644 index 0000000..bb20b12 Binary files /dev/null and b/SDL/.hg/store/data/test/testpalette.c.i differ diff --git a/SDL/.hg/store/data/test/testplatform.c.i b/SDL/.hg/store/data/test/testplatform.c.i new file mode 100644 index 0000000..3f6e09e Binary files /dev/null and b/SDL/.hg/store/data/test/testplatform.c.i differ diff --git a/SDL/.hg/store/data/test/testpower.c.i b/SDL/.hg/store/data/test/testpower.c.i new file mode 100644 index 0000000..c3cfefc Binary files /dev/null and b/SDL/.hg/store/data/test/testpower.c.i differ diff --git a/SDL/.hg/store/data/test/testqsort.c.i b/SDL/.hg/store/data/test/testqsort.c.i new file mode 100644 index 0000000..188a4f4 Binary files /dev/null and b/SDL/.hg/store/data/test/testqsort.c.i differ diff --git a/SDL/.hg/store/data/test/testrelative.c.i b/SDL/.hg/store/data/test/testrelative.c.i new file mode 100644 index 0000000..e350b15 Binary files /dev/null and b/SDL/.hg/store/data/test/testrelative.c.i differ diff --git a/SDL/.hg/store/data/test/testrendercopyex.c.i b/SDL/.hg/store/data/test/testrendercopyex.c.i new file mode 100644 index 0000000..53cd921 Binary files /dev/null and b/SDL/.hg/store/data/test/testrendercopyex.c.i differ diff --git a/SDL/.hg/store/data/test/testrendertarget.c.i b/SDL/.hg/store/data/test/testrendertarget.c.i new file mode 100644 index 0000000..c829a8f Binary files /dev/null and b/SDL/.hg/store/data/test/testrendertarget.c.i differ diff --git a/SDL/.hg/store/data/test/testresample.c.i b/SDL/.hg/store/data/test/testresample.c.i new file mode 100644 index 0000000..d10c13c Binary files /dev/null and b/SDL/.hg/store/data/test/testresample.c.i differ diff --git a/SDL/.hg/store/data/test/testrumble.c.i b/SDL/.hg/store/data/test/testrumble.c.i new file mode 100644 index 0000000..7a75074 Binary files /dev/null and b/SDL/.hg/store/data/test/testrumble.c.i differ diff --git a/SDL/.hg/store/data/test/tests/testclipboard.c.i b/SDL/.hg/store/data/test/tests/testclipboard.c.i new file mode 100644 index 0000000..9dc2cba Binary files /dev/null and b/SDL/.hg/store/data/test/tests/testclipboard.c.i differ diff --git a/SDL/.hg/store/data/test/tests/testplatform.c.i b/SDL/.hg/store/data/test/tests/testplatform.c.i new file mode 100644 index 0000000..fb573fd Binary files /dev/null and b/SDL/.hg/store/data/test/tests/testplatform.c.i differ diff --git a/SDL/.hg/store/data/test/tests/testrect.c.i b/SDL/.hg/store/data/test/tests/testrect.c.i new file mode 100644 index 0000000..4a8c79f Binary files /dev/null and b/SDL/.hg/store/data/test/tests/testrect.c.i differ diff --git a/SDL/.hg/store/data/test/tests/testrender.c.i b/SDL/.hg/store/data/test/tests/testrender.c.i new file mode 100644 index 0000000..8c95600 Binary files /dev/null and b/SDL/.hg/store/data/test/tests/testrender.c.i differ diff --git a/SDL/.hg/store/data/test/tests/testrwops.c.i b/SDL/.hg/store/data/test/tests/testrwops.c.i new file mode 100644 index 0000000..5807154 Binary files /dev/null and b/SDL/.hg/store/data/test/tests/testrwops.c.i differ diff --git a/SDL/.hg/store/data/test/tests/testsuites.h.i b/SDL/.hg/store/data/test/tests/testsuites.h.i new file mode 100644 index 0000000..941ece7 Binary files /dev/null and b/SDL/.hg/store/data/test/tests/testsuites.h.i differ diff --git a/SDL/.hg/store/data/test/testscale.c.i b/SDL/.hg/store/data/test/testscale.c.i new file mode 100644 index 0000000..5b5a6e0 Binary files /dev/null and b/SDL/.hg/store/data/test/testscale.c.i differ diff --git a/SDL/.hg/store/data/test/testsem.c.i b/SDL/.hg/store/data/test/testsem.c.i new file mode 100644 index 0000000..314538b Binary files /dev/null and b/SDL/.hg/store/data/test/testsem.c.i differ diff --git a/SDL/.hg/store/data/test/testshader.c.i b/SDL/.hg/store/data/test/testshader.c.i new file mode 100644 index 0000000..63c0612 Binary files /dev/null and b/SDL/.hg/store/data/test/testshader.c.i differ diff --git a/SDL/.hg/store/data/test/testshape.c.i b/SDL/.hg/store/data/test/testshape.c.i new file mode 100644 index 0000000..79cc795 Binary files /dev/null and b/SDL/.hg/store/data/test/testshape.c.i differ diff --git a/SDL/.hg/store/data/test/testsprite.c.i b/SDL/.hg/store/data/test/testsprite.c.i new file mode 100644 index 0000000..ad2f188 Binary files /dev/null and b/SDL/.hg/store/data/test/testsprite.c.i differ diff --git a/SDL/.hg/store/data/test/testsprite2.c.i b/SDL/.hg/store/data/test/testsprite2.c.i new file mode 100644 index 0000000..e745609 Binary files /dev/null and b/SDL/.hg/store/data/test/testsprite2.c.i differ diff --git a/SDL/.hg/store/data/test/testspriteminimal.c.i b/SDL/.hg/store/data/test/testspriteminimal.c.i new file mode 100644 index 0000000..9e79e28 Binary files /dev/null and b/SDL/.hg/store/data/test/testspriteminimal.c.i differ diff --git a/SDL/.hg/store/data/test/teststreaming.c.i b/SDL/.hg/store/data/test/teststreaming.c.i new file mode 100644 index 0000000..4d43dbb Binary files /dev/null and b/SDL/.hg/store/data/test/teststreaming.c.i differ diff --git a/SDL/.hg/store/data/test/testthread.c.i b/SDL/.hg/store/data/test/testthread.c.i new file mode 100644 index 0000000..62e5d86 Binary files /dev/null and b/SDL/.hg/store/data/test/testthread.c.i differ diff --git a/SDL/.hg/store/data/test/testtimer.c.i b/SDL/.hg/store/data/test/testtimer.c.i new file mode 100644 index 0000000..57aff32 Binary files /dev/null and b/SDL/.hg/store/data/test/testtimer.c.i differ diff --git a/SDL/.hg/store/data/test/testtypes.c.i b/SDL/.hg/store/data/test/testtypes.c.i new file mode 100644 index 0000000..f8bf1a8 Binary files /dev/null and b/SDL/.hg/store/data/test/testtypes.c.i differ diff --git a/SDL/.hg/store/data/test/testver.c.i b/SDL/.hg/store/data/test/testver.c.i new file mode 100644 index 0000000..2bee793 Binary files /dev/null and b/SDL/.hg/store/data/test/testver.c.i differ diff --git a/SDL/.hg/store/data/test/testvidinfo.c.i b/SDL/.hg/store/data/test/testvidinfo.c.i new file mode 100644 index 0000000..fb3c5cd Binary files /dev/null and b/SDL/.hg/store/data/test/testvidinfo.c.i differ diff --git a/SDL/.hg/store/data/test/testviewport.c.i b/SDL/.hg/store/data/test/testviewport.c.i new file mode 100644 index 0000000..9e56e0e Binary files /dev/null and b/SDL/.hg/store/data/test/testviewport.c.i differ diff --git a/SDL/.hg/store/data/test/testwin.c.i b/SDL/.hg/store/data/test/testwin.c.i new file mode 100644 index 0000000..a17969d Binary files /dev/null and b/SDL/.hg/store/data/test/testwin.c.i differ diff --git a/SDL/.hg/store/data/test/testwm.c.i b/SDL/.hg/store/data/test/testwm.c.i new file mode 100644 index 0000000..a2d41f4 Binary files /dev/null and b/SDL/.hg/store/data/test/testwm.c.i differ diff --git a/SDL/.hg/store/data/test/testwm2.c.i b/SDL/.hg/store/data/test/testwm2.c.i new file mode 100644 index 0000000..c2a6817 Binary files /dev/null and b/SDL/.hg/store/data/test/testwm2.c.i differ diff --git a/SDL/.hg/store/data/test/threadwin.c.i b/SDL/.hg/store/data/test/threadwin.c.i new file mode 100644 index 0000000..7f00438 Binary files /dev/null and b/SDL/.hg/store/data/test/threadwin.c.i differ diff --git a/SDL/.hg/store/data/test/torturethread.c.i b/SDL/.hg/store/data/test/torturethread.c.i new file mode 100644 index 0000000..40a6be1 Binary files /dev/null and b/SDL/.hg/store/data/test/torturethread.c.i differ diff --git a/SDL/.hg/store/data/test/utf8.txt.i b/SDL/.hg/store/data/test/utf8.txt.i new file mode 100644 index 0000000..adcbc54 Binary files /dev/null and b/SDL/.hg/store/data/test/utf8.txt.i differ diff --git a/SDL/.hg/store/data/test/~2ecvsignore.i b/SDL/.hg/store/data/test/~2ecvsignore.i new file mode 100644 index 0000000..acb71f0 Binary files /dev/null and b/SDL/.hg/store/data/test/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/test/~2egdbinit.i b/SDL/.hg/store/data/test/~2egdbinit.i new file mode 100644 index 0000000..4b40a15 Binary files /dev/null and b/SDL/.hg/store/data/test/~2egdbinit.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_default.png.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_default.png.i new file mode 100644 index 0000000..446689a Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_default.png.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_icon.png.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_icon.png.i new file mode 100644 index 0000000..a7f6eb8 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_icon.png.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_info.plist.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_info.plist.i new file mode 100644 index 0000000..8f1f46b Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/_info.plist.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l.h.i new file mode 100644 index 0000000..ba4cf7c Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__assert.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__assert.h.i new file mode 100644 index 0000000..adaced1 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__assert.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__atomic.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__atomic.h.i new file mode 100644 index 0000000..77de96b Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__atomic.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__audio.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__audio.h.i new file mode 100644 index 0000000..3398737 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__audio.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__clipboard.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__clipboard.h.i new file mode 100644 index 0000000..27b529d Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__clipboard.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__compat.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__compat.h.i new file mode 100644 index 0000000..5f69251 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__compat.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.default.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.default.i new file mode 100644 index 0000000..70f0df5 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.default.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.generated.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.generated.i new file mode 100644 index 0000000..3173ec2 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.generated.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.in.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.in.i new file mode 100644 index 0000000..8c528bb Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config.h.in.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__iphoneos.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__iphoneos.h.i new file mode 100644 index 0000000..89636f7 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__iphoneos.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__macosx.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__macosx.h.i new file mode 100644 index 0000000..f363422 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__macosx.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__minimal.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__minimal.h.i new file mode 100644 index 0000000..43c5b74 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__minimal.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__nintendods.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__nintendods.h.i new file mode 100644 index 0000000..f30a280 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__nintendods.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__pandora.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__pandora.h.i new file mode 100644 index 0000000..6f94f1f Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__pandora.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__win32.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__win32.h.i new file mode 100644 index 0000000..23891c8 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__win32.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__wiz.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__wiz.h.i new file mode 100644 index 0000000..915ed18 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__config__wiz.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__copying.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__copying.h.i new file mode 100644 index 0000000..7bef526 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__copying.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__cpuinfo.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__cpuinfo.h.i new file mode 100644 index 0000000..602fc92 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__cpuinfo.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__endian.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__endian.h.i new file mode 100644 index 0000000..f1c0dc6 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__endian.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__error.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__error.h.i new file mode 100644 index 0000000..a848533 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__error.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__events.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__events.h.i new file mode 100644 index 0000000..bac3693 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__events.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__gesture.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__gesture.h.i new file mode 100644 index 0000000..c998949 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__gesture.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__haptic.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__haptic.h.i new file mode 100644 index 0000000..8cc02bd Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__haptic.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__input.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__input.h.i new file mode 100644 index 0000000..3ba032d Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__input.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__joystick.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__joystick.h.i new file mode 100644 index 0000000..f43097a Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__joystick.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__keyboard.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__keyboard.h.i new file mode 100644 index 0000000..239e456 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__keyboard.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__keysym.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__keysym.h.i new file mode 100644 index 0000000..aee4f0d Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__keysym.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__loadso.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__loadso.h.i new file mode 100644 index 0000000..7eafa2a Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__loadso.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__main.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__main.h.i new file mode 100644 index 0000000..a02f255 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__main.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__mouse.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__mouse.h.i new file mode 100644 index 0000000..ed37380 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__mouse.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__mutex.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__mutex.h.i new file mode 100644 index 0000000..2c4a371 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__mutex.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__name.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__name.h.i new file mode 100644 index 0000000..2e8a0ff Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__name.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__opengl.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__opengl.h.i new file mode 100644 index 0000000..4a6925a Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__opengl.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__opengles.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__opengles.h.i new file mode 100644 index 0000000..a2ab145 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__opengles.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__pixels.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__pixels.h.i new file mode 100644 index 0000000..15f8ee1 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__pixels.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__platform.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__platform.h.i new file mode 100644 index 0000000..3ca369e Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__platform.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__power.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__power.h.i new file mode 100644 index 0000000..e6198b1 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__power.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__quit.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__quit.h.i new file mode 100644 index 0000000..2e3f69b Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__quit.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__rect.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__rect.h.i new file mode 100644 index 0000000..64b3ef1 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__rect.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__rwops.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__rwops.h.i new file mode 100644 index 0000000..2a7f80a Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__rwops.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__scancode.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__scancode.h.i new file mode 100644 index 0000000..a2ac36d Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__scancode.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__stdinc.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__stdinc.h.i new file mode 100644 index 0000000..e765607 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__stdinc.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__surface.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__surface.h.i new file mode 100644 index 0000000..f2c3068 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__surface.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__syswm.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__syswm.h.i new file mode 100644 index 0000000..43f879b Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__syswm.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__thread.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__thread.h.i new file mode 100644 index 0000000..f39ff2c Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__thread.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__timer.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__timer.h.i new file mode 100644 index 0000000..e39f010 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__timer.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__touch.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__touch.h.i new file mode 100644 index 0000000..a7ccff0 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__touch.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__types.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__types.h.i new file mode 100644 index 0000000..a988763 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__types.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__version.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__version.h.i new file mode 100644 index 0000000..84d3b7f Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__version.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__video.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__video.h.i new file mode 100644 index 0000000..d752ad7 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/_s_d_l__video.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/begin__code.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/begin__code.h.i new file mode 100644 index 0000000..c2dff77 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/begin__code.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/close__code.h.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/close__code.h.i new file mode 100644 index 0000000..c654dea Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/close__code.h.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/doxyfile.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/doxyfile.i new file mode 100644 index 0000000..5577e7f Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/include/doxyfile.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/lib/lib_s_d_li_phone_o_s.a.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/lib/lib_s_d_li_phone_o_s.a.i new file mode 100644 index 0000000..11ac0d7 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/lib/lib_s_d_li_phone_o_s.a.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/main.c.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/main.c.i new file mode 100644 index 0000000..e9d448f Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/main.c.i differ diff --git a/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/touch_test_i_phone.xcodeproj/project.pbxproj.i b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/touch_test_i_phone.xcodeproj/project.pbxproj.i new file mode 100644 index 0000000..6d9a960 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_iphone _test/touch_test_i_phone2/touch_test_i_phone/touch_test_i_phone.xcodeproj/project.pbxproj.i differ diff --git a/SDL/.hg/store/data/touch_test/_t_o_d_o.i b/SDL/.hg/store/data/touch_test/_t_o_d_o.i new file mode 100644 index 0000000..00ca0be Binary files /dev/null and b/SDL/.hg/store/data/touch_test/_t_o_d_o.i differ diff --git a/SDL/.hg/store/data/touch_test/gesture_s_d_l_test.c.i b/SDL/.hg/store/data/touch_test/gesture_s_d_l_test.c.i new file mode 100644 index 0000000..c68bc98 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/gesture_s_d_l_test.c.i differ diff --git a/SDL/.hg/store/data/touch_test/gesture_test.c.i b/SDL/.hg/store/data/touch_test/gesture_test.c.i new file mode 100644 index 0000000..347eb6d Binary files /dev/null and b/SDL/.hg/store/data/touch_test/gesture_test.c.i differ diff --git a/SDL/.hg/store/data/touch_test/makefile.i b/SDL/.hg/store/data/touch_test/makefile.i new file mode 100644 index 0000000..3bfbc10 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/makefile.i differ diff --git a/SDL/.hg/store/data/touch_test/makefile~7e.i b/SDL/.hg/store/data/touch_test/makefile~7e.i new file mode 100644 index 0000000..c78f532 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/makefile~7e.i differ diff --git a/SDL/.hg/store/data/touch_test/parse_devices_test.c.i b/SDL/.hg/store/data/touch_test/parse_devices_test.c.i new file mode 100644 index 0000000..090e853 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/parse_devices_test.c.i differ diff --git a/SDL/.hg/store/data/touch_test/test_in.c.i b/SDL/.hg/store/data/touch_test/test_in.c.i new file mode 100644 index 0000000..240d10d Binary files /dev/null and b/SDL/.hg/store/data/touch_test/test_in.c.i differ diff --git a/SDL/.hg/store/data/touch_test/test_in.c~7e.i b/SDL/.hg/store/data/touch_test/test_in.c~7e.i new file mode 100644 index 0000000..240d10d Binary files /dev/null and b/SDL/.hg/store/data/touch_test/test_in.c~7e.i differ diff --git a/SDL/.hg/store/data/touch_test/test_in.i b/SDL/.hg/store/data/touch_test/test_in.i new file mode 100644 index 0000000..54b960b Binary files /dev/null and b/SDL/.hg/store/data/touch_test/test_in.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_pong.c.i b/SDL/.hg/store/data/touch_test/touch_pong.c.i new file mode 100644 index 0000000..cf2ca52 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_pong.c.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_pong.c~7e.i b/SDL/.hg/store/data/touch_test/touch_pong.c~7e.i new file mode 100644 index 0000000..bde77ad Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_pong.c~7e.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_pong.i b/SDL/.hg/store/data/touch_test/touch_pong.i new file mode 100644 index 0000000..25e1ff8 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_pong.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_simp.c.i b/SDL/.hg/store/data/touch_test/touch_simp.c.i new file mode 100644 index 0000000..831022f Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_simp.c.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_simp.c~7e.i b/SDL/.hg/store/data/touch_test/touch_simp.c~7e.i new file mode 100644 index 0000000..6b221c2 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_simp.c~7e.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_simp.i b/SDL/.hg/store/data/touch_test/touch_simp.i new file mode 100644 index 0000000..4b1ab43 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_simp.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_test.c.i b/SDL/.hg/store/data/touch_test/touch_test.c.i new file mode 100644 index 0000000..986b6f0 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test.c.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.ncb.d b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.ncb.d new file mode 100644 index 0000000..174d3e1 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.ncb.d differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.ncb.i b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.ncb.i new file mode 100644 index 0000000..3b84c38 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.ncb.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.sln.i b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.sln.i new file mode 100644 index 0000000..253da83 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.sln.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.suo.i b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.suo.i new file mode 100644 index 0000000..849958b Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2.suo.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/_s_d_l.dll.d b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/_s_d_l.dll.d new file mode 100644 index 0000000..dfdf82b Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/_s_d_l.dll.d differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/_s_d_l.dll.i b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/_s_d_l.dll.i new file mode 100644 index 0000000..7b394b3 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/_s_d_l.dll.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/touch_test2.vcproj.i b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/touch_test2.vcproj.i new file mode 100644 index 0000000..b24f924 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/touch_test2.vcproj.i differ diff --git a/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/touch_test2.vcproj.jgran-virtual_p_c.jgran.user.i b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/touch_test2.vcproj.jgran-virtual_p_c.jgran.user.i new file mode 100644 index 0000000..8c2a2d1 Binary files /dev/null and b/SDL/.hg/store/data/touch_test/touch_test2/touch_test2/touch_test2.vcproj.jgran-virtual_p_c.jgran.user.i differ diff --git a/SDL/.hg/store/data/visualtest/_c_o_p_y_i_n_g.txt.i b/SDL/.hg/store/data/visualtest/_c_o_p_y_i_n_g.txt.i new file mode 100644 index 0000000..41967f8 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/_c_o_p_y_i_n_g.txt.i differ diff --git a/SDL/.hg/store/data/visualtest/_makefile.in.i b/SDL/.hg/store/data/visualtest/_makefile.in.i new file mode 100644 index 0000000..c3a374e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/_makefile.in.i differ diff --git a/SDL/.hg/store/data/visualtest/_r_e_a_d_m_e.txt.i b/SDL/.hg/store/data/visualtest/_r_e_a_d_m_e.txt.i new file mode 100644 index 0000000..41c5a25 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/_r_e_a_d_m_e.txt.i differ diff --git a/SDL/.hg/store/data/visualtest/acinclude.m4.i b/SDL/.hg/store/data/visualtest/acinclude.m4.i new file mode 100644 index 0000000..f2e8da3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/acinclude.m4.i differ diff --git a/SDL/.hg/store/data/visualtest/autogen.sh.i b/SDL/.hg/store/data/visualtest/autogen.sh.i new file mode 100644 index 0000000..6e1d671 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/autogen.sh.i differ diff --git a/SDL/.hg/store/data/visualtest/compile.i b/SDL/.hg/store/data/visualtest/compile.i new file mode 100644 index 0000000..9d7d8c7 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/compile.i differ diff --git a/SDL/.hg/store/data/visualtest/config.h.i b/SDL/.hg/store/data/visualtest/config.h.i new file mode 100644 index 0000000..b14512f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/config.h.i differ diff --git a/SDL/.hg/store/data/visualtest/config.h.in.i b/SDL/.hg/store/data/visualtest/config.h.in.i new file mode 100644 index 0000000..88a8951 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/config.h.in.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.actions.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.actions.i new file mode 100644 index 0000000..2c495dd Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.actions.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.config.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.config.i new file mode 100644 index 0000000..1798ff2 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.config.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.parameters.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.parameters.i new file mode 100644 index 0000000..a65bfe3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__blendmodes/testsprite2__blendmodes.parameters.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.actions.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.actions.i new file mode 100644 index 0000000..36919f9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.actions.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.config.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.config.i new file mode 100644 index 0000000..537c47a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.config.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.parameters.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.parameters.i new file mode 100644 index 0000000..3ae883c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__crashtest/testsprite2__crashtest.parameters.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.actions.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.actions.i new file mode 100644 index 0000000..2c495dd Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.actions.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.config.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.config.i new file mode 100644 index 0000000..4f823ce Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.config.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.parameters.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.parameters.i new file mode 100644 index 0000000..e21c31d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__fullscreen/testsprite2__fullscreen.parameters.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.actions.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.actions.i new file mode 100644 index 0000000..2c495dd Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.actions.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.config.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.config.i new file mode 100644 index 0000000..c406db6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.config.i differ diff --git a/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.parameters.i b/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.parameters.i new file mode 100644 index 0000000..c4c9cb3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configs/testsprite2__geometry/testsprite2__geometry.parameters.i differ diff --git a/SDL/.hg/store/data/visualtest/configure.i b/SDL/.hg/store/data/visualtest/configure.i new file mode 100644 index 0000000..354faca Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configure.i differ diff --git a/SDL/.hg/store/data/visualtest/configure.in.i b/SDL/.hg/store/data/visualtest/configure.in.i new file mode 100644 index 0000000..de21045 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/configure.in.i differ diff --git a/SDL/.hg/store/data/visualtest/depcomp.i b/SDL/.hg/store/data/visualtest/depcomp.i new file mode 100644 index 0000000..f7e70c4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/depcomp.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/_doxyfile.i b/SDL/.hg/store/data/visualtest/docs/_doxyfile.i new file mode 100644 index 0000000..edfa22b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/_doxyfile.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____action____configparser__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____action____configparser__8h.html.i new file mode 100644 index 0000000..8f31113 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____action____configparser__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____action____configparser__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____action____configparser__8h__source.html.i new file mode 100644 index 0000000..f875553 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____action____configparser__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____exhaustive____variator__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____exhaustive____variator__8h.html.i new file mode 100644 index 0000000..fa0c8ef Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____exhaustive____variator__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____exhaustive____variator__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____exhaustive____variator__8h__source.html.i new file mode 100644 index 0000000..3cb3e41 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____exhaustive____variator__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____harness____argparser__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____harness____argparser__8h.html.i new file mode 100644 index 0000000..a4820e6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____harness____argparser__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____harness____argparser__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____harness____argparser__8h__source.html.i new file mode 100644 index 0000000..3ccbc37 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____harness____argparser__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____mischelper__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____mischelper__8h__source.html.i new file mode 100644 index 0000000..0e8f98a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____mischelper__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____parsehelper__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____parsehelper__8h.html.i new file mode 100644 index 0000000..ffc59db Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____parsehelper__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____parsehelper__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____parsehelper__8h__source.html.i new file mode 100644 index 0000000..71244a8 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____parsehelper__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____process__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____process__8h.html.i new file mode 100644 index 0000000..7e854c6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____process__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____process__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____process__8h__source.html.i new file mode 100644 index 0000000..09dc61d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____process__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____random____variator__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____random____variator__8h.html.i new file mode 100644 index 0000000..680b315 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____random____variator__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____random____variator__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____random____variator__8h__source.html.i new file mode 100644 index 0000000..5822195 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____random____variator__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____rwhelper__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____rwhelper__8h__source.html.i new file mode 100644 index 0000000..5dec41d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____rwhelper__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____screenshot__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____screenshot__8h.html.i new file mode 100644 index 0000000..7d2eb81 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____screenshot__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____screenshot__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____screenshot__8h__source.html.i new file mode 100644 index 0000000..21f3a03 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____screenshot__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____sut____configparser__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____sut____configparser__8h.html.i new file mode 100644 index 0000000..47dfd88 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____sut____configparser__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____sut____configparser__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____sut____configparser__8h__source.html.i new file mode 100644 index 0000000..5001e22 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____sut____configparser__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variator____common__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variator____common__8h.html.i new file mode 100644 index 0000000..ebdc581 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variator____common__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variator____common__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variator____common__8h__source.html.i new file mode 100644 index 0000000..16dcb1f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variator____common__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variators__8h.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variators__8h.html.i new file mode 100644 index 0000000..ebe3345 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variators__8h.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variators__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variators__8h__source.html.i new file mode 100644 index 0000000..094f417 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/__s__d__l____visualtest____variators__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/action____configparser__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/action____configparser__8c.html.i new file mode 100644 index 0000000..6814cca Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/action____configparser__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/annotated.html.i b/SDL/.hg/store/data/visualtest/docs/html/annotated.html.i new file mode 100644 index 0000000..19f702b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/annotated.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/bc__s.png.i b/SDL/.hg/store/data/visualtest/docs/html/bc__s.png.i new file mode 100644 index 0000000..9112eb7 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/bc__s.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/bdwn.png.i b/SDL/.hg/store/data/visualtest/docs/html/bdwn.png.i new file mode 100644 index 0000000..3a07be3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/bdwn.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/classes.html.i b/SDL/.hg/store/data/visualtest/docs/html/classes.html.i new file mode 100644 index 0000000..ea4cbfe Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/classes.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/closed.png.i b/SDL/.hg/store/data/visualtest/docs/html/closed.png.i new file mode 100644 index 0000000..98503e6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/closed.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/config__8h__source.html.i b/SDL/.hg/store/data/visualtest/docs/html/config__8h__source.html.i new file mode 100644 index 0000000..27c57be Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/config__8h__source.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dir__244674c763b96fdad0a6ffe8d0250e08.html.i b/SDL/.hg/store/data/visualtest/docs/html/dir__244674c763b96fdad0a6ffe8d0250e08.html.i new file mode 100644 index 0000000..a8d9c25 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dir__244674c763b96fdad0a6ffe8d0250e08.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dir__68267d1309a1af8e8297ef4c3efbcdba.html.i b/SDL/.hg/store/data/visualtest/docs/html/dir__68267d1309a1af8e8297ef4c3efbcdba.html.i new file mode 100644 index 0000000..8f98e90 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dir__68267d1309a1af8e8297ef4c3efbcdba.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dir__88e6415a3128b404f1102a130772bdb6.html.i b/SDL/.hg/store/data/visualtest/docs/html/dir__88e6415a3128b404f1102a130772bdb6.html.i new file mode 100644 index 0000000..5331002 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dir__88e6415a3128b404f1102a130772bdb6.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dir__a18918b93668b435612395bbc2e8b82b.html.i b/SDL/.hg/store/data/visualtest/docs/html/dir__a18918b93668b435612395bbc2e8b82b.html.i new file mode 100644 index 0000000..cbf14ee Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dir__a18918b93668b435612395bbc2e8b82b.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dir__d44c64559bbebec7f509842c48db8b23.html.i b/SDL/.hg/store/data/visualtest/docs/html/dir__d44c64559bbebec7f509842c48db8b23.html.i new file mode 100644 index 0000000..b56c234 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dir__d44c64559bbebec7f509842c48db8b23.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dir__f584182df4c69fab0b14563b4d535158.html.i b/SDL/.hg/store/data/visualtest/docs/html/dir__f584182df4c69fab0b14563b4d535158.html.i new file mode 100644 index 0000000..f134a5b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dir__f584182df4c69fab0b14563b4d535158.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dir__fe549de2418b81853b5f194edb4a7f34.html.i b/SDL/.hg/store/data/visualtest/docs/html/dir__fe549de2418b81853b5f194edb4a7f34.html.i new file mode 100644 index 0000000..18b14a6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dir__fe549de2418b81853b5f194edb4a7f34.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/doxygen.css.i b/SDL/.hg/store/data/visualtest/docs/html/doxygen.css.i new file mode 100644 index 0000000..3e4a9e6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/doxygen.css.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/doxygen.png.i b/SDL/.hg/store/data/visualtest/docs/html/doxygen.png.i new file mode 100644 index 0000000..490e62f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/doxygen.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/dynsections.js.i b/SDL/.hg/store/data/visualtest/docs/html/dynsections.js.i new file mode 100644 index 0000000..53fcc0b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/dynsections.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/files.html.i b/SDL/.hg/store/data/visualtest/docs/html/files.html.i new file mode 100644 index 0000000..84d5649 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/files.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2blank.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2blank.png.i new file mode 100644 index 0000000..84eb3b5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2blank.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2cl.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2cl.png.i new file mode 100644 index 0000000..e0186c5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2cl.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2doc.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2doc.png.i new file mode 100644 index 0000000..9c95f1b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2doc.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2folderclosed.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2folderclosed.png.i new file mode 100644 index 0000000..420f0ff Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2folderclosed.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2folderopen.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2folderopen.png.i new file mode 100644 index 0000000..5329a89 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2folderopen.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2lastnode.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2lastnode.png.i new file mode 100644 index 0000000..84eb3b5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2lastnode.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2link.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2link.png.i new file mode 100644 index 0000000..9c95f1b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2link.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2mlastnode.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2mlastnode.png.i new file mode 100644 index 0000000..fe0f519 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2mlastnode.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2mnode.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2mnode.png.i new file mode 100644 index 0000000..fe0f519 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2mnode.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2mo.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2mo.png.i new file mode 100644 index 0000000..7d70d92 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2mo.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2node.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2node.png.i new file mode 100644 index 0000000..84eb3b5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2node.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2ns.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2ns.png.i new file mode 100644 index 0000000..d12146c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2ns.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2plastnode.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2plastnode.png.i new file mode 100644 index 0000000..91e022a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2plastnode.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2pnode.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2pnode.png.i new file mode 100644 index 0000000..91e022a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2pnode.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2splitbar.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2splitbar.png.i new file mode 100644 index 0000000..d47ea5c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2splitbar.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/ftv2vertline.png.i b/SDL/.hg/store/data/visualtest/docs/html/ftv2vertline.png.i new file mode 100644 index 0000000..84eb3b5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/ftv2vertline.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/functions.html.i b/SDL/.hg/store/data/visualtest/docs/html/functions.html.i new file mode 100644 index 0000000..c075733 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/functions.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/functions__vars.html.i b/SDL/.hg/store/data/visualtest/docs/html/functions__vars.html.i new file mode 100644 index 0000000..ae448fa Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/functions__vars.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/globals.html.i b/SDL/.hg/store/data/visualtest/docs/html/globals.html.i new file mode 100644 index 0000000..173f12b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/globals.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/globals__defs.html.i b/SDL/.hg/store/data/visualtest/docs/html/globals__defs.html.i new file mode 100644 index 0000000..8a85eb0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/globals__defs.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/globals__enum.html.i b/SDL/.hg/store/data/visualtest/docs/html/globals__enum.html.i new file mode 100644 index 0000000..bd8dbfb Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/globals__enum.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/globals__eval.html.i b/SDL/.hg/store/data/visualtest/docs/html/globals__eval.html.i new file mode 100644 index 0000000..a134231 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/globals__eval.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/globals__func.html.i b/SDL/.hg/store/data/visualtest/docs/html/globals__func.html.i new file mode 100644 index 0000000..ac9da52 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/globals__func.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/globals__type.html.i b/SDL/.hg/store/data/visualtest/docs/html/globals__type.html.i new file mode 100644 index 0000000..46dcd3d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/globals__type.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/harness____argparser__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/harness____argparser__8c.html.i new file mode 100644 index 0000000..75d9dde Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/harness____argparser__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/index.html.i b/SDL/.hg/store/data/visualtest/docs/html/index.html.i new file mode 100644 index 0000000..b054912 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/index.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/jquery.js.i b/SDL/.hg/store/data/visualtest/docs/html/jquery.js.i new file mode 100644 index 0000000..164bf65 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/jquery.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/linux____process__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/linux____process__8c.html.i new file mode 100644 index 0000000..1ebcece Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/linux____process__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/mischelper__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/mischelper__8c.html.i new file mode 100644 index 0000000..0c54587 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/mischelper__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/nav__f.png.i b/SDL/.hg/store/data/visualtest/docs/html/nav__f.png.i new file mode 100644 index 0000000..ef9f7b3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/nav__f.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/nav__g.png.i b/SDL/.hg/store/data/visualtest/docs/html/nav__g.png.i new file mode 100644 index 0000000..02a992b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/nav__g.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/nav__h.png.i b/SDL/.hg/store/data/visualtest/docs/html/nav__h.png.i new file mode 100644 index 0000000..957a6d4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/nav__h.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/open.png.i b/SDL/.hg/store/data/visualtest/docs/html/open.png.i new file mode 100644 index 0000000..4e62e20 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/open.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/parsehelper__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/parsehelper__8c.html.i new file mode 100644 index 0000000..c1e31a6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/parsehelper__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/rwhelper__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/rwhelper__8c.html.i new file mode 100644 index 0000000..add1e70 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/rwhelper__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/screenshot__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/screenshot__8c.html.i new file mode 100644 index 0000000..455abe9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/screenshot__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__61.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__61.html.i new file mode 100644 index 0000000..2592253 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__61.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__61.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__61.js.i new file mode 100644 index 0000000..3b2ec82 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__61.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__62.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__62.html.i new file mode 100644 index 0000000..984a899 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__62.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__62.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__62.js.i new file mode 100644 index 0000000..66b06df Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__62.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__63.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__63.html.i new file mode 100644 index 0000000..8c2ff79 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__63.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__63.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__63.js.i new file mode 100644 index 0000000..7d53c29 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__63.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__64.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__64.html.i new file mode 100644 index 0000000..b788c7d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__64.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__64.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__64.js.i new file mode 100644 index 0000000..c5c536a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__64.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__65.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__65.html.i new file mode 100644 index 0000000..1c4a27e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__65.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__65.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__65.js.i new file mode 100644 index 0000000..77922d3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__65.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__66.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__66.html.i new file mode 100644 index 0000000..17d7230 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__66.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__66.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__66.js.i new file mode 100644 index 0000000..687d702 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__66.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__68.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__68.html.i new file mode 100644 index 0000000..ae59b3c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__68.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__68.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__68.js.i new file mode 100644 index 0000000..d4d75c0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__68.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__69.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__69.html.i new file mode 100644 index 0000000..07fb1e1 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__69.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__69.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__69.js.i new file mode 100644 index 0000000..676b5dc Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__69.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6b.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6b.html.i new file mode 100644 index 0000000..a7d2691 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6b.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6b.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6b.js.i new file mode 100644 index 0000000..f24972f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6b.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6c.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6c.html.i new file mode 100644 index 0000000..a0ab68d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6c.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6c.js.i new file mode 100644 index 0000000..618224f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6c.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6d.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6d.html.i new file mode 100644 index 0000000..458950e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6d.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6d.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6d.js.i new file mode 100644 index 0000000..a16e561 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6d.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6e.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6e.html.i new file mode 100644 index 0000000..30f79ef Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6e.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6e.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6e.js.i new file mode 100644 index 0000000..1085b5d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6e.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6f.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6f.html.i new file mode 100644 index 0000000..5c1eb2b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6f.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__6f.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__6f.js.i new file mode 100644 index 0000000..4ae9f1c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__6f.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__70.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__70.html.i new file mode 100644 index 0000000..7c4aa2e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__70.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__70.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__70.js.i new file mode 100644 index 0000000..db67d3c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__70.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__72.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__72.html.i new file mode 100644 index 0000000..f3dede3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__72.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__72.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__72.js.i new file mode 100644 index 0000000..399a2f1 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__72.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__73.html.i new file mode 100644 index 0000000..5c9e7ec Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__73.js.i new file mode 100644 index 0000000..486db09 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__74.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__74.html.i new file mode 100644 index 0000000..1646b86 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__74.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__74.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__74.js.i new file mode 100644 index 0000000..4b0566b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__74.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__76.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__76.html.i new file mode 100644 index 0000000..61612a0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__76.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__76.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__76.js.i new file mode 100644 index 0000000..99687c2 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__76.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__77.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__77.html.i new file mode 100644 index 0000000..4f3728d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__77.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/all__77.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/all__77.js.i new file mode 100644 index 0000000..ee4bc4d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/all__77.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/classes__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/classes__73.html.i new file mode 100644 index 0000000..cefb913 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/classes__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/classes__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/classes__73.js.i new file mode 100644 index 0000000..7ee15d7 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/classes__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/close.png.i b/SDL/.hg/store/data/visualtest/docs/html/search/close.png.i new file mode 100644 index 0000000..ab4029a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/close.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__61.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__61.html.i new file mode 100644 index 0000000..5130f76 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__61.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__61.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__61.js.i new file mode 100644 index 0000000..0c2ce30 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__61.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__64.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__64.html.i new file mode 100644 index 0000000..858c5b4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__64.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__64.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__64.js.i new file mode 100644 index 0000000..5a43ab9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__64.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__6b.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6b.html.i new file mode 100644 index 0000000..3ebbf80 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6b.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__6b.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6b.js.i new file mode 100644 index 0000000..f24972f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6b.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__6d.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6d.html.i new file mode 100644 index 0000000..f6c4451 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6d.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__6d.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6d.js.i new file mode 100644 index 0000000..1531ff4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__6d.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__73.html.i new file mode 100644 index 0000000..3c65a4b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__73.js.i new file mode 100644 index 0000000..9cab0d5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__74.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__74.html.i new file mode 100644 index 0000000..744526e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__74.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/defines__74.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/defines__74.js.i new file mode 100644 index 0000000..cb58efe Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/defines__74.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/enums__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/enums__73.html.i new file mode 100644 index 0000000..71c085e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/enums__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/enums__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/enums__73.js.i new file mode 100644 index 0000000..5cacb8c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/enums__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/enumvalues__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/enumvalues__73.html.i new file mode 100644 index 0000000..aa5023b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/enumvalues__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/enumvalues__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/enumvalues__73.js.i new file mode 100644 index 0000000..5195472 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/enumvalues__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__61.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__61.html.i new file mode 100644 index 0000000..9db0667 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__61.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__61.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__61.js.i new file mode 100644 index 0000000..0a53067 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__61.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__68.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__68.html.i new file mode 100644 index 0000000..74d92db Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__68.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__68.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__68.js.i new file mode 100644 index 0000000..d4d75c0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__68.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__6c.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__6c.html.i new file mode 100644 index 0000000..27e204f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__6c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__6c.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__6c.js.i new file mode 100644 index 0000000..618224f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__6c.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__6d.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__6d.html.i new file mode 100644 index 0000000..8423524 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__6d.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__6d.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__6d.js.i new file mode 100644 index 0000000..a2c81b0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__6d.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__70.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__70.html.i new file mode 100644 index 0000000..9cd8ad4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__70.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__70.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__70.js.i new file mode 100644 index 0000000..1a4f1fe Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__70.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__72.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__72.html.i new file mode 100644 index 0000000..c53cc70 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__72.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__72.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__72.js.i new file mode 100644 index 0000000..9964ca3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__72.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__73.html.i new file mode 100644 index 0000000..e59a321 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__73.js.i new file mode 100644 index 0000000..3d6b46c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__74.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__74.html.i new file mode 100644 index 0000000..d727146 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__74.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__74.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__74.js.i new file mode 100644 index 0000000..c2991f5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__74.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__76.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__76.html.i new file mode 100644 index 0000000..ba500c9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__76.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__76.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__76.js.i new file mode 100644 index 0000000..6745b85 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__76.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__77.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__77.html.i new file mode 100644 index 0000000..309857b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__77.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/files__77.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/files__77.js.i new file mode 100644 index 0000000..ee4bc4d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/files__77.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/functions__6d.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/functions__6d.html.i new file mode 100644 index 0000000..3f5ca44 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/functions__6d.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/functions__6d.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/functions__6d.js.i new file mode 100644 index 0000000..59dc3ff Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/functions__6d.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/functions__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/functions__73.html.i new file mode 100644 index 0000000..1bc7b03 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/functions__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/functions__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/functions__73.js.i new file mode 100644 index 0000000..907ab00 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/functions__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/mag__sel.png.i b/SDL/.hg/store/data/visualtest/docs/html/search/mag__sel.png.i new file mode 100644 index 0000000..7f83d1d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/mag__sel.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/nomatches.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/nomatches.html.i new file mode 100644 index 0000000..ee1704c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/nomatches.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/pages__76.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/pages__76.html.i new file mode 100644 index 0000000..b5cfb9e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/pages__76.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/pages__76.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/pages__76.js.i new file mode 100644 index 0000000..c17de5c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/pages__76.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/search.css.i b/SDL/.hg/store/data/visualtest/docs/html/search/search.css.i new file mode 100644 index 0000000..24a5a35 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/search.css.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/search.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/search.js.i new file mode 100644 index 0000000..bd157cc Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/search.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/search__l.png.i b/SDL/.hg/store/data/visualtest/docs/html/search/search__l.png.i new file mode 100644 index 0000000..cc34e88 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/search__l.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/search__m.png.i b/SDL/.hg/store/data/visualtest/docs/html/search/search__m.png.i new file mode 100644 index 0000000..1cdc8a0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/search__m.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/search__r.png.i b/SDL/.hg/store/data/visualtest/docs/html/search/search__r.png.i new file mode 100644 index 0000000..56dbdb9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/search__r.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/typedefs__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/typedefs__73.html.i new file mode 100644 index 0000000..3ea5904 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/typedefs__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/typedefs__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/typedefs__73.js.i new file mode 100644 index 0000000..030517a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/typedefs__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__61.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__61.html.i new file mode 100644 index 0000000..afc80fc Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__61.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__61.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__61.js.i new file mode 100644 index 0000000..a6ee9ad Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__61.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__62.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__62.html.i new file mode 100644 index 0000000..55b0ea3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__62.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__62.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__62.js.i new file mode 100644 index 0000000..66b06df Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__62.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__63.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__63.html.i new file mode 100644 index 0000000..8a4f4bd Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__63.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__63.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__63.js.i new file mode 100644 index 0000000..7d53c29 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__63.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__64.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__64.html.i new file mode 100644 index 0000000..6754503 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__64.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__64.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__64.js.i new file mode 100644 index 0000000..41282e9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__64.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__65.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__65.html.i new file mode 100644 index 0000000..98415cb Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__65.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__65.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__65.js.i new file mode 100644 index 0000000..77922d3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__65.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__66.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__66.html.i new file mode 100644 index 0000000..c7a77ee Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__66.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__66.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__66.js.i new file mode 100644 index 0000000..687d702 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__66.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__69.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__69.html.i new file mode 100644 index 0000000..970953d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__69.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__69.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__69.js.i new file mode 100644 index 0000000..676b5dc Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__69.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__6d.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6d.html.i new file mode 100644 index 0000000..9231c01 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6d.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__6d.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6d.js.i new file mode 100644 index 0000000..8d80bb9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6d.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__6e.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6e.html.i new file mode 100644 index 0000000..0c7fb77 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6e.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__6e.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6e.js.i new file mode 100644 index 0000000..1085b5d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6e.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__6f.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6f.html.i new file mode 100644 index 0000000..4e99f5b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6f.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__6f.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6f.js.i new file mode 100644 index 0000000..4ae9f1c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__6f.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__70.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__70.html.i new file mode 100644 index 0000000..ff9fd56 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__70.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__70.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__70.js.i new file mode 100644 index 0000000..6b307c5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__70.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__72.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__72.html.i new file mode 100644 index 0000000..0113835 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__72.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__72.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__72.js.i new file mode 100644 index 0000000..6c95d1c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__72.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__73.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__73.html.i new file mode 100644 index 0000000..7ef79a7 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__73.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__73.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__73.js.i new file mode 100644 index 0000000..1af937f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__73.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__74.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__74.html.i new file mode 100644 index 0000000..dae9992 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__74.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__74.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__74.js.i new file mode 100644 index 0000000..40d5d8d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__74.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__76.html.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__76.html.i new file mode 100644 index 0000000..d624f65 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__76.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/search/variables__76.js.i b/SDL/.hg/store/data/visualtest/docs/html/search/variables__76.js.i new file mode 100644 index 0000000..5c59aa3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/search/variables__76.js.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l______process__exit__status.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l______process__exit__status.html.i new file mode 100644 index 0000000..fa5c061 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l______process__exit__status.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l______process__info.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l______process__info.html.i new file mode 100644 index 0000000..f26513b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l______process__info.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action.html.i new file mode 100644 index 0000000..cceeab0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action__node.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action__node.html.i new file mode 100644 index 0000000..be3c377 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action__node.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action__queue.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action__queue.html.i new file mode 100644 index 0000000..812f656 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______action__queue.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______exhaustive__variator.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______exhaustive__variator.html.i new file mode 100644 index 0000000..55a1635 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______exhaustive__variator.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______harness__state.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______harness__state.html.i new file mode 100644 index 0000000..7526480 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______harness__state.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______r__w__helper__buffer.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______r__w__helper__buffer.html.i new file mode 100644 index 0000000..202d7e2 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______r__w__helper__buffer.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______random__variator.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______random__variator.html.i new file mode 100644 index 0000000..8799e6d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______random__variator.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__config.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__config.html.i new file mode 100644 index 0000000..cfe9cb7 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__config.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__int__range.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__int__range.html.i new file mode 100644 index 0000000..69f182e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__int__range.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__option.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__option.html.i new file mode 100644 index 0000000..9a837f4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______s__u__t__option.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______variation.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______variation.html.i new file mode 100644 index 0000000..7a7f3d4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______variation.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______variator.html.i b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______variator.html.i new file mode 100644 index 0000000..4ce4fdf Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/struct__s__d__l__visual__test______variator.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/sut____configparser__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/sut____configparser__8c.html.i new file mode 100644 index 0000000..1a85772 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/sut____configparser__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/sync__off.png.i b/SDL/.hg/store/data/visualtest/docs/html/sync__off.png.i new file mode 100644 index 0000000..c28cb92 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/sync__off.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/sync__on.png.i b/SDL/.hg/store/data/visualtest/docs/html/sync__on.png.i new file mode 100644 index 0000000..99c9abc Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/sync__on.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/tab__a.png.i b/SDL/.hg/store/data/visualtest/docs/html/tab__a.png.i new file mode 100644 index 0000000..dc8510f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/tab__a.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/tab__b.png.i b/SDL/.hg/store/data/visualtest/docs/html/tab__b.png.i new file mode 100644 index 0000000..2ca9545 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/tab__b.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/tab__h.png.i b/SDL/.hg/store/data/visualtest/docs/html/tab__h.png.i new file mode 100644 index 0000000..194c2cb Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/tab__h.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/tab__s.png.i b/SDL/.hg/store/data/visualtest/docs/html/tab__s.png.i new file mode 100644 index 0000000..a5b8158 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/tab__s.png.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/tabs.css.i b/SDL/.hg/store/data/visualtest/docs/html/tabs.css.i new file mode 100644 index 0000000..c453176 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/tabs.css.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/testharness__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/testharness__8c.html.i new file mode 100644 index 0000000..681571d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/testharness__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/union__s__d__l__visual__test______s__u__t__option__value.html.i b/SDL/.hg/store/data/visualtest/docs/html/union__s__d__l__visual__test______s__u__t__option__value.html.i new file mode 100644 index 0000000..8520240 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/union__s__d__l__visual__test______s__u__t__option__value.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/variator____common__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/variator____common__8c.html.i new file mode 100644 index 0000000..ddbb3b3 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/variator____common__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/variator____exhaustive__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/variator____exhaustive__8c.html.i new file mode 100644 index 0000000..6d50b12 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/variator____exhaustive__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/variator____random__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/variator____random__8c.html.i new file mode 100644 index 0000000..433280b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/variator____random__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/variators__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/variators__8c.html.i new file mode 100644 index 0000000..6304d57 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/variators__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/windows____process__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/windows____process__8c.html.i new file mode 100644 index 0000000..fd4dd0b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/windows____process__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/html/windows____screenshot__8c.html.i b/SDL/.hg/store/data/visualtest/docs/html/windows____screenshot__8c.html.i new file mode 100644 index 0000000..fe082de Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/html/windows____screenshot__8c.html.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____action____configparser__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____action____configparser__8h.tex.i new file mode 100644 index 0000000..24de9b4 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____action____configparser__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____exhaustive____variator__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____exhaustive____variator__8h.tex.i new file mode 100644 index 0000000..bd06a57 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____exhaustive____variator__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____harness____argparser__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____harness____argparser__8h.tex.i new file mode 100644 index 0000000..8609eec Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____harness____argparser__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____parsehelper__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____parsehelper__8h.tex.i new file mode 100644 index 0000000..5fb1287 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____parsehelper__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____process__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____process__8h.tex.i new file mode 100644 index 0000000..cfff97a Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____process__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____random____variator__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____random____variator__8h.tex.i new file mode 100644 index 0000000..de990e6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____random____variator__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____screenshot__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____screenshot__8h.tex.i new file mode 100644 index 0000000..9e8cca7 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____screenshot__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____sut____configparser__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____sut____configparser__8h.tex.i new file mode 100644 index 0000000..3048195 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____sut____configparser__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____variator____common__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____variator____common__8h.tex.i new file mode 100644 index 0000000..a5a5ff9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____variator____common__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____variators__8h.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____variators__8h.tex.i new file mode 100644 index 0000000..b004e33 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/__s__d__l____visualtest____variators__8h.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/action____configparser__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/action____configparser__8c.tex.i new file mode 100644 index 0000000..76b5ed0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/action____configparser__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/annotated.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/annotated.tex.i new file mode 100644 index 0000000..f96bb5d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/annotated.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/dir__244674c763b96fdad0a6ffe8d0250e08.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/dir__244674c763b96fdad0a6ffe8d0250e08.tex.i new file mode 100644 index 0000000..6e016fa Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/dir__244674c763b96fdad0a6ffe8d0250e08.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/dir__68267d1309a1af8e8297ef4c3efbcdba.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/dir__68267d1309a1af8e8297ef4c3efbcdba.tex.i new file mode 100644 index 0000000..9f655fe Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/dir__68267d1309a1af8e8297ef4c3efbcdba.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/dir__88e6415a3128b404f1102a130772bdb6.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/dir__88e6415a3128b404f1102a130772bdb6.tex.i new file mode 100644 index 0000000..fa05438 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/dir__88e6415a3128b404f1102a130772bdb6.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/dir__a18918b93668b435612395bbc2e8b82b.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/dir__a18918b93668b435612395bbc2e8b82b.tex.i new file mode 100644 index 0000000..50afc82 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/dir__a18918b93668b435612395bbc2e8b82b.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/dir__d44c64559bbebec7f509842c48db8b23.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/dir__d44c64559bbebec7f509842c48db8b23.tex.i new file mode 100644 index 0000000..9e69036 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/dir__d44c64559bbebec7f509842c48db8b23.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/dir__f584182df4c69fab0b14563b4d535158.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/dir__f584182df4c69fab0b14563b4d535158.tex.i new file mode 100644 index 0000000..efa7772 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/dir__f584182df4c69fab0b14563b4d535158.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/dir__fe549de2418b81853b5f194edb4a7f34.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/dir__fe549de2418b81853b5f194edb4a7f34.tex.i new file mode 100644 index 0000000..e8c05fe Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/dir__fe549de2418b81853b5f194edb4a7f34.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/doxygen.sty.i b/SDL/.hg/store/data/visualtest/docs/latex/doxygen.sty.i new file mode 100644 index 0000000..df26c37 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/doxygen.sty.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/files.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/files.tex.i new file mode 100644 index 0000000..c8122ae Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/files.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/harness____argparser__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/harness____argparser__8c.tex.i new file mode 100644 index 0000000..460c78b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/harness____argparser__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/index.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/index.tex.i new file mode 100644 index 0000000..aeddbd6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/index.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/linux____process__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/linux____process__8c.tex.i new file mode 100644 index 0000000..d5d4fd0 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/linux____process__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/make.bat.i b/SDL/.hg/store/data/visualtest/docs/latex/make.bat.i new file mode 100644 index 0000000..12ecd68 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/make.bat.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/mischelper__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/mischelper__8c.tex.i new file mode 100644 index 0000000..9c6af7b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/mischelper__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/parsehelper__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/parsehelper__8c.tex.i new file mode 100644 index 0000000..e437a59 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/parsehelper__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/refman.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/refman.tex.i new file mode 100644 index 0000000..d5e6395 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/refman.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/rwhelper__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/rwhelper__8c.tex.i new file mode 100644 index 0000000..249c6c2 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/rwhelper__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/screenshot__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/screenshot__8c.tex.i new file mode 100644 index 0000000..b4dce31 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/screenshot__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l______process__exit__status.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l______process__exit__status.tex.i new file mode 100644 index 0000000..ddff9a1 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l______process__exit__status.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l______process__info.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l______process__info.tex.i new file mode 100644 index 0000000..32c7129 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l______process__info.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action.tex.i new file mode 100644 index 0000000..00265ac Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action__node.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action__node.tex.i new file mode 100644 index 0000000..e2dde21 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action__node.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action__queue.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action__queue.tex.i new file mode 100644 index 0000000..5e237af Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______action__queue.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______exhaustive__variator.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______exhaustive__variator.tex.i new file mode 100644 index 0000000..f2c1688 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______exhaustive__variator.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______harness__state.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______harness__state.tex.i new file mode 100644 index 0000000..f8ceb06 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______harness__state.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______r__w__helper__buffer.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______r__w__helper__buffer.tex.i new file mode 100644 index 0000000..82ea4f8 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______r__w__helper__buffer.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______random__variator.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______random__variator.tex.i new file mode 100644 index 0000000..305b368 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______random__variator.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__config.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__config.tex.i new file mode 100644 index 0000000..e56e312 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__config.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__int__range.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__int__range.tex.i new file mode 100644 index 0000000..8d6ce67 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__int__range.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__option.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__option.tex.i new file mode 100644 index 0000000..04dfc12 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______s__u__t__option.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______variation.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______variation.tex.i new file mode 100644 index 0000000..c59b880 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______variation.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______variator.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______variator.tex.i new file mode 100644 index 0000000..a303b86 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/struct__s__d__l__visual__test______variator.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/sut____configparser__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/sut____configparser__8c.tex.i new file mode 100644 index 0000000..839a80d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/sut____configparser__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/testharness__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/testharness__8c.tex.i new file mode 100644 index 0000000..801fce1 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/testharness__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/union__s__d__l__visual__test______s__u__t__option__value.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/union__s__d__l__visual__test______s__u__t__option__value.tex.i new file mode 100644 index 0000000..7290834 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/union__s__d__l__visual__test______s__u__t__option__value.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/variator____common__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/variator____common__8c.tex.i new file mode 100644 index 0000000..ad2a0c9 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/variator____common__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/variator____exhaustive__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/variator____exhaustive__8c.tex.i new file mode 100644 index 0000000..39e360c Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/variator____exhaustive__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/variator____random__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/variator____random__8c.tex.i new file mode 100644 index 0000000..3bda096 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/variator____random__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/variators__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/variators__8c.tex.i new file mode 100644 index 0000000..90ad2dd Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/variators__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/windows____process__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/windows____process__8c.tex.i new file mode 100644 index 0000000..de7f05f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/windows____process__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/docs/latex/windows____screenshot__8c.tex.i b/SDL/.hg/store/data/visualtest/docs/latex/windows____screenshot__8c.tex.i new file mode 100644 index 0000000..72dc8cb Binary files /dev/null and b/SDL/.hg/store/data/visualtest/docs/latex/windows____screenshot__8c.tex.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__action__configparser.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__action__configparser.h.i new file mode 100644 index 0000000..5bbd87d Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__action__configparser.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__exhaustive__variator.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__exhaustive__variator.h.i new file mode 100644 index 0000000..2561e77 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__exhaustive__variator.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__harness__argparser.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__harness__argparser.h.i new file mode 100644 index 0000000..adfe6da Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__harness__argparser.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__mischelper.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__mischelper.h.i new file mode 100644 index 0000000..7dcec40 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__mischelper.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__parsehelper.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__parsehelper.h.i new file mode 100644 index 0000000..0422f08 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__parsehelper.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__process.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__process.h.i new file mode 100644 index 0000000..727b0b1 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__process.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__random__variator.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__random__variator.h.i new file mode 100644 index 0000000..26cd0dc Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__random__variator.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__rwhelper.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__rwhelper.h.i new file mode 100644 index 0000000..c7656d2 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__rwhelper.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__screenshot.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__screenshot.h.i new file mode 100644 index 0000000..da78723 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__screenshot.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__sut__configparser.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__sut__configparser.h.i new file mode 100644 index 0000000..e86147e Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__sut__configparser.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__variator__common.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__variator__common.h.i new file mode 100644 index 0000000..a0e0884 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__variator__common.h.i differ diff --git a/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__variators.h.i b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__variators.h.i new file mode 100644 index 0000000..4a41704 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/include/_s_d_l__visualtest__variators.h.i differ diff --git a/SDL/.hg/store/data/visualtest/install-sh.i b/SDL/.hg/store/data/visualtest/install-sh.i new file mode 100644 index 0000000..4af4ae6 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/install-sh.i differ diff --git a/SDL/.hg/store/data/visualtest/launch__harness.cmd.i b/SDL/.hg/store/data/visualtest/launch__harness.cmd.i new file mode 100644 index 0000000..24656c8 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/launch__harness.cmd.i differ diff --git a/SDL/.hg/store/data/visualtest/launch__harness.sh.i b/SDL/.hg/store/data/visualtest/launch__harness.sh.i new file mode 100644 index 0000000..d360e5b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/launch__harness.sh.i differ diff --git a/SDL/.hg/store/data/visualtest/missing.i b/SDL/.hg/store/data/visualtest/missing.i new file mode 100644 index 0000000..f11413f Binary files /dev/null and b/SDL/.hg/store/data/visualtest/missing.i differ diff --git a/SDL/.hg/store/data/visualtest/src/action__configparser.c.i b/SDL/.hg/store/data/visualtest/src/action__configparser.c.i new file mode 100644 index 0000000..f134129 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/action__configparser.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/harness__argparser.c.i b/SDL/.hg/store/data/visualtest/src/harness__argparser.c.i new file mode 100644 index 0000000..2058bad Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/harness__argparser.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/linux/linux__process.c.i b/SDL/.hg/store/data/visualtest/src/linux/linux__process.c.i new file mode 100644 index 0000000..56a7f8b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/linux/linux__process.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/mischelper.c.i b/SDL/.hg/store/data/visualtest/src/mischelper.c.i new file mode 100644 index 0000000..e2392ff Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/mischelper.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/parsehelper.c.i b/SDL/.hg/store/data/visualtest/src/parsehelper.c.i new file mode 100644 index 0000000..44b962b Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/parsehelper.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/rwhelper.c.i b/SDL/.hg/store/data/visualtest/src/rwhelper.c.i new file mode 100644 index 0000000..628ff12 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/rwhelper.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/screenshot.c.i b/SDL/.hg/store/data/visualtest/src/screenshot.c.i new file mode 100644 index 0000000..00babaa Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/screenshot.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/sut__configparser.c.i b/SDL/.hg/store/data/visualtest/src/sut__configparser.c.i new file mode 100644 index 0000000..38e4d06 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/sut__configparser.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/testharness.c.i b/SDL/.hg/store/data/visualtest/src/testharness.c.i new file mode 100644 index 0000000..22f0000 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/testharness.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/variator__common.c.i b/SDL/.hg/store/data/visualtest/src/variator__common.c.i new file mode 100644 index 0000000..a5e4e03 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/variator__common.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/variator__exhaustive.c.i b/SDL/.hg/store/data/visualtest/src/variator__exhaustive.c.i new file mode 100644 index 0000000..71d7cd5 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/variator__exhaustive.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/variator__random.c.i b/SDL/.hg/store/data/visualtest/src/variator__random.c.i new file mode 100644 index 0000000..60b5b90 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/variator__random.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/variators.c.i b/SDL/.hg/store/data/visualtest/src/variators.c.i new file mode 100644 index 0000000..e4d8fa7 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/variators.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/windows/windows__process.c.i b/SDL/.hg/store/data/visualtest/src/windows/windows__process.c.i new file mode 100644 index 0000000..1dfc631 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/windows/windows__process.c.i differ diff --git a/SDL/.hg/store/data/visualtest/src/windows/windows__screenshot.c.i b/SDL/.hg/store/data/visualtest/src/windows/windows__screenshot.c.i new file mode 100644 index 0000000..92a7045 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/src/windows/windows__screenshot.c.i differ diff --git a/SDL/.hg/store/data/visualtest/stamp-h1.i b/SDL/.hg/store/data/visualtest/stamp-h1.i new file mode 100644 index 0000000..7528b32 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/stamp-h1.i differ diff --git a/SDL/.hg/store/data/visualtest/testsprite2__sample.actions.i b/SDL/.hg/store/data/visualtest/testsprite2__sample.actions.i new file mode 100644 index 0000000..72197ce Binary files /dev/null and b/SDL/.hg/store/data/visualtest/testsprite2__sample.actions.i differ diff --git a/SDL/.hg/store/data/visualtest/testsprite2__sample.config.i b/SDL/.hg/store/data/visualtest/testsprite2__sample.config.i new file mode 100644 index 0000000..fa23423 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/testsprite2__sample.config.i differ diff --git a/SDL/.hg/store/data/visualtest/testsprite2__sample.parameters.i b/SDL/.hg/store/data/visualtest/testsprite2__sample.parameters.i new file mode 100644 index 0000000..b1f96ba Binary files /dev/null and b/SDL/.hg/store/data/visualtest/testsprite2__sample.parameters.i differ diff --git a/SDL/.hg/store/data/visualtest/unittest/testquit.actions.i b/SDL/.hg/store/data/visualtest/unittest/testquit.actions.i new file mode 100644 index 0000000..c626ec2 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/unittest/testquit.actions.i differ diff --git a/SDL/.hg/store/data/visualtest/unittest/testquit.c.i b/SDL/.hg/store/data/visualtest/unittest/testquit.c.i new file mode 100644 index 0000000..9440bc1 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/unittest/testquit.c.i differ diff --git a/SDL/.hg/store/data/visualtest/unittest/testquit.config.i b/SDL/.hg/store/data/visualtest/unittest/testquit.config.i new file mode 100644 index 0000000..96d38c2 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/unittest/testquit.config.i differ diff --git a/SDL/.hg/store/data/visualtest/unittest/testquit.parameters.i b/SDL/.hg/store/data/visualtest/unittest/testquit.parameters.i new file mode 100644 index 0000000..ce68941 Binary files /dev/null and b/SDL/.hg/store/data/visualtest/unittest/testquit.parameters.i differ diff --git a/SDL/.hg/store/data/~2e_d_i_s_a_b_l_e_d-hgeol.i b/SDL/.hg/store/data/~2e_d_i_s_a_b_l_e_d-hgeol.i new file mode 100644 index 0000000..b101d36 Binary files /dev/null and b/SDL/.hg/store/data/~2e_d_i_s_a_b_l_e_d-hgeol.i differ diff --git a/SDL/.hg/store/data/~2ecvsignore.i b/SDL/.hg/store/data/~2ecvsignore.i new file mode 100644 index 0000000..ebda92e Binary files /dev/null and b/SDL/.hg/store/data/~2ecvsignore.i differ diff --git a/SDL/.hg/store/data/~2ehgeol.i b/SDL/.hg/store/data/~2ehgeol.i new file mode 100644 index 0000000..830c8cf Binary files /dev/null and b/SDL/.hg/store/data/~2ehgeol.i differ diff --git a/SDL/.hg/store/data/~2ehgignore.i b/SDL/.hg/store/data/~2ehgignore.i new file mode 100644 index 0000000..54f7ab0 Binary files /dev/null and b/SDL/.hg/store/data/~2ehgignore.i differ diff --git a/SDL/.hg/store/data/~2ehgtags.i b/SDL/.hg/store/data/~2ehgtags.i new file mode 100644 index 0000000..d0a2f8c Binary files /dev/null and b/SDL/.hg/store/data/~2ehgtags.i differ diff --git a/SDL/.hg/store/data/~2eindent.pro.i b/SDL/.hg/store/data/~2eindent.pro.i new file mode 100644 index 0000000..14eca75 Binary files /dev/null and b/SDL/.hg/store/data/~2eindent.pro.i differ diff --git a/SDL/.hg/store/dh/xcode-io/template/sdl ios_/___proje/project_/contents.xcworkspacedata.i0c665e90fd637863923852c977b2daf1bd6b4f33.i b/SDL/.hg/store/dh/xcode-io/template/sdl ios_/___proje/project_/contents.xcworkspacedata.i0c665e90fd637863923852c977b2daf1bd6b4f33.i new file mode 100644 index 0000000..65dfdfa Binary files /dev/null and b/SDL/.hg/store/dh/xcode-io/template/sdl ios_/___proje/project_/contents.xcworkspacedata.i0c665e90fd637863923852c977b2daf1bd6b4f33.i differ diff --git a/SDL/.hg/store/dh/xcode-io/template/sdl ios_/___proje/templateinfo.plist.i0dcc0b6748ba9f575d3b09de26de97a034c54280.i b/SDL/.hg/store/dh/xcode-io/template/sdl ios_/___proje/templateinfo.plist.i0dcc0b6748ba9f575d3b09de26de97a034c54280.i new file mode 100644 index 0000000..166b433 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-io/template/sdl ios_/___proje/templateinfo.plist.i0dcc0b6748ba9f575d3b09de26de97a034c54280.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/___proje/templateinfo.plist.i0d47e02a9c38fb6331d10fa0d31af019459453bc.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/___proje/templateinfo.plist.i0d47e02a9c38fb6331d10fa0d31af019459453bc.i new file mode 100644 index 0000000..1dea57b Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/___proje/templateinfo.plist.i0d47e02a9c38fb6331d10fa0d31af019459453bc.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/categories.pbxbtree.id1b0f8fc1d2b5e523376d606b023485a500b1f79.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/categories.pbxbtree.id1b0f8fc1d2b5e523376d606b023485a500b1f79.i new file mode 100644 index 0000000..734cea0 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/categories.pbxbtree.id1b0f8fc1d2b5e523376d606b023485a500b1f79.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/cdecls.pbxbtree.i7e307035278c3c092d5855e03eaf239ccd37cea0.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/cdecls.pbxbtree.i7e307035278c3c092d5855e03eaf239ccd37cea0.i new file mode 100644 index 0000000..0de1232 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/cdecls.pbxbtree.i7e307035278c3c092d5855e03eaf239ccd37cea0.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/decls.pbxbtree.i0e5ff109ed20a61027725bf38df1f1da77b73039.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/decls.pbxbtree.i0e5ff109ed20a61027725bf38df1f1da77b73039.i new file mode 100644 index 0000000..3d67486 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/decls.pbxbtree.i0e5ff109ed20a61027725bf38df1f1da77b73039.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/files.pbxbtree.i9d355c69afa58da20aea2ab8f7e5759142896c03.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/files.pbxbtree.i9d355c69afa58da20aea2ab8f7e5759142896c03.i new file mode 100644 index 0000000..d366435 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/files.pbxbtree.i9d355c69afa58da20aea2ab8f7e5759142896c03.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/imports.pbxbtree.if1a68441d4e56d2e0f3d786494dfb8573762d18d.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/imports.pbxbtree.if1a68441d4e56d2e0f3d786494dfb8573762d18d.i new file mode 100644 index 0000000..e4f302b Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/imports.pbxbtree.if1a68441d4e56d2e0f3d786494dfb8573762d18d.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/pbxindex.header.i9c42d96508226c062f32f5377af917f0ad1834c8.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/pbxindex.header.i9c42d96508226c062f32f5377af917f0ad1834c8.i new file mode 100644 index 0000000..925dabe Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/pbxindex.header.i9c42d96508226c062f32f5377af917f0ad1834c8.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/protocols.pbxbtree.icfd7ecc2f4730a18c032a87f33d6c8ae010b8303.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/protocols.pbxbtree.icfd7ecc2f4730a18c032a87f33d6c8ae010b8303.i new file mode 100644 index 0000000..734cea0 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/protocols.pbxbtree.icfd7ecc2f4730a18c032a87f33d6c8ae010b8303.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/refs.pbxbtree.i392ef5965604f25914dc7d64a65c6ef30daf0104.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/refs.pbxbtree.i392ef5965604f25914dc7d64a65c6ef30daf0104.i new file mode 100644 index 0000000..79530a2 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/refs.pbxbtree.i392ef5965604f25914dc7d64a65c6ef30daf0104.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/strings_/control.ib57626ec0bea55b1024924865e956e3a7b3176e3.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/strings_/control.ib57626ec0bea55b1024924865e956e3a7b3176e3.i new file mode 100644 index 0000000..ec353ef Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/strings_/control.ib57626ec0bea55b1024924865e956e3a7b3176e3.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/strings_/strings.i34d9c8257604b73b3a0f61a0e2ab10454506b81b.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/strings_/strings.i34d9c8257604b73b3a0f61a0e2ab10454506b81b.i new file mode 100644 index 0000000..49d940e Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/strings_/strings.i34d9c8257604b73b3a0f61a0e2ab10454506b81b.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/subclasses.pbxbtree.i8a38f185ffa53ba4ebef3540086eb99f12a3a785.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/subclasses.pbxbtree.i8a38f185ffa53ba4ebef3540086eb99f12a3a785.i new file mode 100644 index 0000000..04d204c Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/subclasses.pbxbtree.i8a38f185ffa53ba4ebef3540086eb99f12a3a785.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/symbols0.pbxsymbols.i07756e173392c1b8a7b6208f6d0728c6fecd3b50.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/symbols0.pbxsymbols.i07756e173392c1b8a7b6208f6d0728c6fecd3b50.i new file mode 100644 index 0000000..9c4276a Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/___proje/symbols0.pbxsymbols.i07756e173392c1b8a7b6208f6d0728c6fecd3b50.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_1632cb5a0f708b9f5bb313cac3875c958db06f99.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_1632cb5a0f708b9f5bb313cac3875c958db06f99.i new file mode 100644 index 0000000..9e8a930 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_1632cb5a0f708b9f5bb313cac3875c958db06f99.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_3ea82a8e8f4976ba01f5ba5d504f63eddcb108c6.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_3ea82a8e8f4976ba01f5ba5d504f63eddcb108c6.i new file mode 100644 index 0000000..b8a96bb Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_3ea82a8e8f4976ba01f5ba5d504f63eddcb108c6.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_7581ef70422921b579444318b7cedf1e7e17d35a.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_7581ef70422921b579444318b7cedf1e7e17d35a.i new file mode 100644 index 0000000..f2319c7 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_7581ef70422921b579444318b7cedf1e7e17d35a.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_7d02729445b264605a13d38d8e488c0587e1c7a0.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_7d02729445b264605a13d38d8e488c0587e1c7a0.i new file mode 100644 index 0000000..4584a13 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_7d02729445b264605a13d38d8e488c0587e1c7a0.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_8eae8fb0d31923e81ab972070983ad91e6aa2519.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_8eae8fb0d31923e81ab972070983ad91e6aa2519.i new file mode 100644 index 0000000..b8a96bb Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_8eae8fb0d31923e81ab972070983ad91e6aa2519.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_955f75a4d068a66a6c9fbd82116d8523fe067cd3.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_955f75a4d068a66a6c9fbd82116d8523fe067cd3.i new file mode 100644 index 0000000..1d57489 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_955f75a4d068a66a6c9fbd82116d8523fe067cd3.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_bc612d1dcb14413c9ff336988b7ed1cfe1366215.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_bc612d1dcb14413c9ff336988b7ed1cfe1366215.i new file mode 100644 index 0000000..b8a96bb Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_bc612d1dcb14413c9ff336988b7ed1cfe1366215.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/objects-/___proa7c8d1b6fc918d4e314ccd532048397a5ad609de.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/objects-/___proa7c8d1b6fc918d4e314ccd532048397a5ad609de.i new file mode 100644 index 0000000..c6d3bc6 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/___proje/debug-ip/___proje/objects-/___proa7c8d1b6fc918d4e314ccd532048397a5ad609de.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/___projectname___.i60223a9eddc6e20e5d6824f24dd2903101f7d45f.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/___projectname___.i60223a9eddc6e20e5d6824f24dd2903101f7d45f.i new file mode 100644 index 0000000..3634861 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/___projectname___.i60223a9eddc6e20e5d6824f24dd2903101f7d45f.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/info.plist.i981ba1434aae2facaa3437f1e602524fa29d37f0.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/info.plist.i981ba1434aae2facaa3437f1e602524fa29d37f0.i new file mode 100644 index 0000000..4d2c3a2 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/info.plist.i981ba1434aae2facaa3437f1e602524fa29d37f0.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/resource/___pro35f335294f7c3276c903be610143cc6e2b79650f.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/resource/___pro35f335294f7c3276c903be610143cc6e2b79650f.i new file mode 100644 index 0000000..02b6624 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/resource/___pro35f335294f7c3276c903be610143cc6e2b79650f.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/resource/___pro43ba62338c845b4cc2f555ed341ea9e46dda233c.d b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/resource/___pro43ba62338c845b4cc2f555ed341ea9e46dda233c.d new file mode 100644 index 0000000..6ac8553 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/contents/resource/___pro43ba62338c845b4cc2f555ed341ea9e46dda233c.d differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/default.png.i21a1027840a290476e0915b17cd9f1641b6f04b9.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/default.png.i21a1027840a290476e0915b17cd9f1641b6f04b9.i new file mode 100644 index 0000000..f4eca67 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/default.png.i21a1027840a290476e0915b17cd9f1641b6f04b9.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/icon.png.i43571a9e206bb158422f7cb3cd5df865aee608f5.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/icon.png.i43571a9e206bb158422f7cb3cd5df865aee608f5.i new file mode 100644 index 0000000..51e24e6 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/icon.png.i43571a9e206bb158422f7cb3cd5df865aee608f5.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/info.plist.i258f2b3cebeaa2cc103d28982128b3941557bebe.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/info.plist.i258f2b3cebeaa2cc103d28982128b3941557bebe.i new file mode 100644 index 0000000..b160b8d Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/info.plist.i258f2b3cebeaa2cc103d28982128b3941557bebe.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/pkginfo.ib931235563e433858f617c2865c01be0c7aed746.i b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/pkginfo.ib931235563e433858f617c2865c01be0c7aed746.i new file mode 100644 index 0000000..76f6761 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl appl/build/debug-ip/___proje/pkginfo.ib931235563e433858f617c2865c01be0c7aed746.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/project.pbxproj.ie8b498fda2488f0f84671846f96cb107b9fc9fc9.i b/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/project.pbxproj.ie8b498fda2488f0f84671846f96cb107b9fc9fc9.i new file mode 100644 index 0000000..66c0fba Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/project.pbxproj.ie8b498fda2488f0f84671846f96cb107b9fc9fc9.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/templateicon.icns.ie58a57cf787a59476860a33cd5f10ff1478dfd5e.i b/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/templateicon.icns.ie58a57cf787a59476860a33cd5f10ff1478dfd5e.i new file mode 100644 index 0000000..11f13d3 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/templateicon.icns.ie58a57cf787a59476860a33cd5f10ff1478dfd5e.i differ diff --git a/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/templateinfo.plist.i58f6bc845b2391b5c1ec95335ebd9bf0dc675648.i b/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/templateinfo.plist.i58f6bc845b2391b5c1ec95335ebd9bf0dc675648.i new file mode 100644 index 0000000..bf64192 Binary files /dev/null and b/SDL/.hg/store/dh/xcode-ip/template/sdl ios_/___proje/templateinfo.plist.i58f6bc845b2391b5c1ec95335ebd9bf0dc675648.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/project.pbxproj.i2fd96306d1eb6bc742be4e411535117e948e24f2.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/project.pbxproj.i2fd96306d1eb6bc742be4e411535117e948e24f2.i new file mode 100644 index 0000000..18d0aa3 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/project.pbxproj.i2fd96306d1eb6bc742be4e411535117e948e24f2.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/project.pbxproj.i5808d406e50cf34baa504a575735f960822f7514.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/project.pbxproj.i5808d406e50cf34baa504a575735f960822f7514.i new file mode 100644 index 0000000..2bda73c Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/project.pbxproj.i5808d406e50cf34baa504a575735f960822f7514.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateicon.icns.i7674860b41ffeef934fe944d084b040b1ddbb5bd.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateicon.icns.i7674860b41ffeef934fe944d084b040b1ddbb5bd.i new file mode 100644 index 0000000..b83be67 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateicon.icns.i7674860b41ffeef934fe944d084b040b1ddbb5bd.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateicon.icns.i8ae94aee07b0b9dbe13b389d7b806490bc1050fe.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateicon.icns.i8ae94aee07b0b9dbe13b389d7b806490bc1050fe.i new file mode 100644 index 0000000..b83be67 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateicon.icns.i8ae94aee07b0b9dbe13b389d7b806490bc1050fe.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateinfo.plist.i6e5c4fe9b88a7a42a658cb725e30565195f4bf18.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateinfo.plist.i6e5c4fe9b88a7a42a658cb725e30565195f4bf18.i new file mode 100644 index 0000000..46a4aba Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateinfo.plist.i6e5c4fe9b88a7a42a658cb725e30565195f4bf18.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateinfo.plist.if19c6c81f843ae5fd2c9adb7acc3a735737f8223.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateinfo.plist.if19c6c81f843ae5fd2c9adb7acc3a735737f8223.i new file mode 100644 index 0000000..46a4aba Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___proje/templateinfo.plist.if19c6c81f843ae5fd2c9adb7acc3a735737f8223.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___projectnameasidentifier____prefix.pch.i95031235414625c1b4da4a383063ae49f5746580.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___projectnameasidentifier____prefix.pch.i95031235414625c1b4da4a383063ae49f5746580.i new file mode 100644 index 0000000..c2ca7c1 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___projectnameasidentifier____prefix.pch.i95031235414625c1b4da4a383063ae49f5746580.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl appl/___projectnameasidentifier____prefix.pch.ief54b479a936b1a569e6a1b988359f21b927da35.i b/SDL/.hg/store/dh/xcode/template/sdl appl/___projectnameasidentifier____prefix.pch.ief54b479a936b1a569e6a1b988359f21b927da35.i new file mode 100644 index 0000000..e6fc7b6 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl appl/___projectnameasidentifier____prefix.pch.ief54b479a936b1a569e6a1b988359f21b927da35.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/project.pbxproj.i88e4a4a7b2caf8ec0cfea71e2f4b6140bb7b3cdf.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/project.pbxproj.i88e4a4a7b2caf8ec0cfea71e2f4b6140bb7b3cdf.i new file mode 100644 index 0000000..8c4d3d4 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/project.pbxproj.i88e4a4a7b2caf8ec0cfea71e2f4b6140bb7b3cdf.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/project.pbxproj.ief846bffd24d91492a4f5b6bbc195454bec8616f.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/project.pbxproj.ief846bffd24d91492a4f5b6bbc195454bec8616f.i new file mode 100644 index 0000000..a1de5c7 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/project.pbxproj.ief846bffd24d91492a4f5b6bbc195454bec8616f.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateicon.icns.i1bb0065278f70f2bdc2545f88b16901fc81a4ae9.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateicon.icns.i1bb0065278f70f2bdc2545f88b16901fc81a4ae9.i new file mode 100644 index 0000000..b83be67 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateicon.icns.i1bb0065278f70f2bdc2545f88b16901fc81a4ae9.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateicon.icns.i4a3488adf7abca4ffeafe401dabcece022c81b2a.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateicon.icns.i4a3488adf7abca4ffeafe401dabcece022c81b2a.i new file mode 100644 index 0000000..b83be67 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateicon.icns.i4a3488adf7abca4ffeafe401dabcece022c81b2a.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateinfo.plist.i5c1ca504a1d38962c4da0b6bc887524620d37675.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateinfo.plist.i5c1ca504a1d38962c4da0b6bc887524620d37675.i new file mode 100644 index 0000000..61e3247 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateinfo.plist.i5c1ca504a1d38962c4da0b6bc887524620d37675.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateinfo.plist.ia5939fd7bde6b53ff72c5e2abb3f460fc1619e25.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateinfo.plist.ia5939fd7bde6b53ff72c5e2abb3f460fc1619e25.i new file mode 100644 index 0000000..61e3247 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___proje/templateinfo.plist.ia5939fd7bde6b53ff72c5e2abb3f460fc1619e25.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___projectnameasidentifier____prefix.pch.i9e8bbcc554826ad0002fea0caf8d4d7c2b2fb06e.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___projectnameasidentifier____prefix.pch.i9e8bbcc554826ad0002fea0caf8d4d7c2b2fb06e.i new file mode 100644 index 0000000..46488dd Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___projectnameasidentifier____prefix.pch.i9e8bbcc554826ad0002fea0caf8d4d7c2b2fb06e.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl coco/___projectnameasidentifier____prefix.pch.iab89074aec99defd98147c8a52030be3487e69ad.i b/SDL/.hg/store/dh/xcode/template/sdl coco/___projectnameasidentifier____prefix.pch.iab89074aec99defd98147c8a52030be3487e69ad.i new file mode 100644 index 0000000..cddb3da Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl coco/___projectnameasidentifier____prefix.pch.iab89074aec99defd98147c8a52030be3487e69ad.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl cust/sdl cust/project.pbxproj.ieb1390aea71442cd455ea3b945e6017d95557809.i b/SDL/.hg/store/dh/xcode/template/sdl cust/sdl cust/project.pbxproj.ieb1390aea71442cd455ea3b945e6017d95557809.i new file mode 100644 index 0000000..8da747d Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl cust/sdl cust/project.pbxproj.ieb1390aea71442cd455ea3b945e6017d95557809.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl cust/sdl cust/templateinfo.iab0c9cb42584d87ff39bab78be1e8a91bfff6c6e.i b/SDL/.hg/store/dh/xcode/template/sdl cust/sdl cust/templateinfo.iab0c9cb42584d87ff39bab78be1e8a91bfff6c6e.i new file mode 100644 index 0000000..e277021 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl cust/sdl cust/templateinfo.iab0c9cb42584d87ff39bab78be1e8a91bfff6c6e.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl cust/sdlcusto/templateinfo.plist.i1d89e18ba90cdb26cbfba04e5d9d371b9de6d927.i b/SDL/.hg/store/dh/xcode/template/sdl cust/sdlcusto/templateinfo.plist.i1d89e18ba90cdb26cbfba04e5d9d371b9de6d927.i new file mode 100644 index 0000000..4136970 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl cust/sdlcusto/templateinfo.plist.i1d89e18ba90cdb26cbfba04e5d9d371b9de6d927.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___proje/project.pbxproj.i19cb66b7f588dbfda1d5fad998d7cea6438fde31.i b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/project.pbxproj.i19cb66b7f588dbfda1d5fad998d7cea6438fde31.i new file mode 100644 index 0000000..7194f0e Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/project.pbxproj.i19cb66b7f588dbfda1d5fad998d7cea6438fde31.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___proje/project.pbxproj.i9c73dcb61fb1b743571c3cd3f92ade9bb676709f.i b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/project.pbxproj.i9c73dcb61fb1b743571c3cd3f92ade9bb676709f.i new file mode 100644 index 0000000..e48e2d7 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/project.pbxproj.i9c73dcb61fb1b743571c3cd3f92ade9bb676709f.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateicon.icns.i136ee4d0b1aa65866105aac7e8992cfdd51080b4.i b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateicon.icns.i136ee4d0b1aa65866105aac7e8992cfdd51080b4.i new file mode 100644 index 0000000..b83be67 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateicon.icns.i136ee4d0b1aa65866105aac7e8992cfdd51080b4.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateicon.icns.ibef579c87a1992cad177e21d76164f7de648aa72.i b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateicon.icns.ibef579c87a1992cad177e21d76164f7de648aa72.i new file mode 100644 index 0000000..b83be67 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateicon.icns.ibef579c87a1992cad177e21d76164f7de648aa72.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateinfo.plist.i80978ca41a51ae1c418576de6ce2cb80f51ab355.i b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateinfo.plist.i80978ca41a51ae1c418576de6ce2cb80f51ab355.i new file mode 100644 index 0000000..4d4211d Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateinfo.plist.i80978ca41a51ae1c418576de6ce2cb80f51ab355.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateinfo.plist.i878b8d862d1b31030904c207ceb7a021a91c9dda.i b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateinfo.plist.i878b8d862d1b31030904c207ceb7a021a91c9dda.i new file mode 100644 index 0000000..4d4211d Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___proje/templateinfo.plist.i878b8d862d1b31030904c207ceb7a021a91c9dda.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___projectnameasidentifier____prefix.pch.i7244d2935aec215b50fd78b8357a2813d96ab2c5.i b/SDL/.hg/store/dh/xcode/template/sdl open/___projectnameasidentifier____prefix.pch.i7244d2935aec215b50fd78b8357a2813d96ab2c5.i new file mode 100644 index 0000000..312b01d Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___projectnameasidentifier____prefix.pch.i7244d2935aec215b50fd78b8357a2813d96ab2c5.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/___projectnameasidentifier____prefix.pch.ib038fba4afece2f211db5f7cd5d051aa827dadda.i b/SDL/.hg/store/dh/xcode/template/sdl open/___projectnameasidentifier____prefix.pch.ib038fba4afece2f211db5f7cd5d051aa827dadda.i new file mode 100644 index 0000000..7a5e55f Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/___projectnameasidentifier____prefix.pch.ib038fba4afece2f211db5f7cd5d051aa827dadda.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/sdl open/templateinfo.plist.i2e5131f9e12e7672496ceeb87330dd22ac15fac7.i b/SDL/.hg/store/dh/xcode/template/sdl open/sdl open/templateinfo.plist.i2e5131f9e12e7672496ceeb87330dd22ac15fac7.i new file mode 100644 index 0000000..576d466 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/sdl open/templateinfo.plist.i2e5131f9e12e7672496ceeb87330dd22ac15fac7.i differ diff --git a/SDL/.hg/store/dh/xcode/template/sdl open/sdlopeng/templateinfo.plist.i7e323110eac9ff44fcb065447f788660d7ac68fe.i b/SDL/.hg/store/dh/xcode/template/sdl open/sdlopeng/templateinfo.plist.i7e323110eac9ff44fcb065447f788660d7ac68fe.i new file mode 100644 index 0000000..692e363 Binary files /dev/null and b/SDL/.hg/store/dh/xcode/template/sdl open/sdlopeng/templateinfo.plist.i7e323110eac9ff44fcb065447f788660d7ac68fe.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/___proje/templateinfo.plist.i292ba1ac34f18c86d26b57758ebc7662cc8369ec.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/___proje/templateinfo.plist.i292ba1ac34f18c86d26b57758ebc7662cc8369ec.i new file mode 100644 index 0000000..e20d8cf Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/___proje/templateinfo.plist.i292ba1ac34f18c86d26b57758ebc7662cc8369ec.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/categories.pbxbtree.i4760f7b6a9b03842e7760ab80d523b2aa7485d49.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/categories.pbxbtree.i4760f7b6a9b03842e7760ab80d523b2aa7485d49.i new file mode 100644 index 0000000..edc65fa Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/categories.pbxbtree.i4760f7b6a9b03842e7760ab80d523b2aa7485d49.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/cdecls.pbxbtree.ib3b65d09c9f86b6deb705993df28373564699d4c.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/cdecls.pbxbtree.ib3b65d09c9f86b6deb705993df28373564699d4c.i new file mode 100644 index 0000000..6768115 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/cdecls.pbxbtree.ib3b65d09c9f86b6deb705993df28373564699d4c.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/decls.pbxbtree.i6538c8821f470095148af3bd6b78c3a98ec6deee.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/decls.pbxbtree.i6538c8821f470095148af3bd6b78c3a98ec6deee.i new file mode 100644 index 0000000..0b310a7 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/decls.pbxbtree.i6538c8821f470095148af3bd6b78c3a98ec6deee.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/files.pbxbtree.ia66fa48b5fb9138226601ef1dd0932d10dfe2ab9.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/files.pbxbtree.ia66fa48b5fb9138226601ef1dd0932d10dfe2ab9.i new file mode 100644 index 0000000..807879a Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/files.pbxbtree.ia66fa48b5fb9138226601ef1dd0932d10dfe2ab9.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/imports.pbxbtree.i3814f94d1d27123f1e58baeb3ebf1150d8bd3c68.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/imports.pbxbtree.i3814f94d1d27123f1e58baeb3ebf1150d8bd3c68.i new file mode 100644 index 0000000..2e7e653 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/imports.pbxbtree.i3814f94d1d27123f1e58baeb3ebf1150d8bd3c68.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/pbxindex.header.ic79365809381781f10b41c0ed5f024e62e966018.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/pbxindex.header.ic79365809381781f10b41c0ed5f024e62e966018.i new file mode 100644 index 0000000..0a90e76 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/pbxindex.header.ic79365809381781f10b41c0ed5f024e62e966018.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/protocols.pbxbtree.i44f8ecd6d71a7677e151c7354101954e92b057c6.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/protocols.pbxbtree.i44f8ecd6d71a7677e151c7354101954e92b057c6.i new file mode 100644 index 0000000..edc65fa Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/protocols.pbxbtree.i44f8ecd6d71a7677e151c7354101954e92b057c6.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/refs.pbxbtree.i5f33bed0ec8c43a8c58bf5b711055b9c1784b743.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/refs.pbxbtree.i5f33bed0ec8c43a8c58bf5b711055b9c1784b743.i new file mode 100644 index 0000000..10422c5 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/refs.pbxbtree.i5f33bed0ec8c43a8c58bf5b711055b9c1784b743.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/strings_/control.icfe9eb9add7718b387935eb5efd97af36f2fb253.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/strings_/control.icfe9eb9add7718b387935eb5efd97af36f2fb253.i new file mode 100644 index 0000000..36fa864 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/strings_/control.icfe9eb9add7718b387935eb5efd97af36f2fb253.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/strings_/strings.i32743ca0f39a7cb7eb2a2fc677120b4c0c177368.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/strings_/strings.i32743ca0f39a7cb7eb2a2fc677120b4c0c177368.i new file mode 100644 index 0000000..9460b11 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/strings_/strings.i32743ca0f39a7cb7eb2a2fc677120b4c0c177368.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/subclasses.pbxbtree.i4e62f0286f7975ed70d0873773e0c29b5214e550.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/subclasses.pbxbtree.i4e62f0286f7975ed70d0873773e0c29b5214e550.i new file mode 100644 index 0000000..8645d51 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/subclasses.pbxbtree.i4e62f0286f7975ed70d0873773e0c29b5214e550.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/symbols0.pbxsymbols.i2d175f82cf1743f266459c1db75246dd352db00a.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/symbols0.pbxsymbols.i2d175f82cf1743f266459c1db75246dd352db00a.i new file mode 100644 index 0000000..e07a1a9 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/___proje/symbols0.pbxsymbols.i2d175f82cf1743f266459c1db75246dd352db00a.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_1796334a954980caeda3a0c51dd5d8134ac4619d.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_1796334a954980caeda3a0c51dd5d8134ac4619d.i new file mode 100644 index 0000000..e869ea5 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_1796334a954980caeda3a0c51dd5d8134ac4619d.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_2360fc95a08bfc16456453c0b1adaaa5838c6288.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_2360fc95a08bfc16456453c0b1adaaa5838c6288.i new file mode 100644 index 0000000..79c5dee Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_2360fc95a08bfc16456453c0b1adaaa5838c6288.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_3fd0dbf8a80cb155d8f22ebf1097e8f1fb872346.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_3fd0dbf8a80cb155d8f22ebf1097e8f1fb872346.i new file mode 100644 index 0000000..4f52b74 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_3fd0dbf8a80cb155d8f22ebf1097e8f1fb872346.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_46a3b71eea6dba5888e1daf3b8b12c9861772a9a.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_46a3b71eea6dba5888e1daf3b8b12c9861772a9a.i new file mode 100644 index 0000000..ac2d927 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_46a3b71eea6dba5888e1daf3b8b12c9861772a9a.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_ae5362e04d78b154f13870577c4110fb48fda260.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_ae5362e04d78b154f13870577c4110fb48fda260.i new file mode 100644 index 0000000..0c9a4e4 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_ae5362e04d78b154f13870577c4110fb48fda260.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_dd12e449b2ce68ad4d76ba51dcd91dedd45fd179.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_dd12e449b2ce68ad4d76ba51dcd91dedd45fd179.i new file mode 100644 index 0000000..ac2d927 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_dd12e449b2ce68ad4d76ba51dcd91dedd45fd179.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_f7637ed98c10c9102f41bee5375cfa7e98d5bd24.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_f7637ed98c10c9102f41bee5375cfa7e98d5bd24.i new file mode 100644 index 0000000..ac2d927 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/___projectname_f7637ed98c10c9102f41bee5375cfa7e98d5bd24.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/objects-/___prod47f4d56c927cb4d4538a0999a35e68562269dd5.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/objects-/___prod47f4d56c927cb4d4538a0999a35e68562269dd5.i new file mode 100644 index 0000000..4953899 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/___proje/debug-ip/___proje/objects-/___prod47f4d56c927cb4d4538a0999a35e68562269dd5.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/___projectname___.ib310b8d3751e5659285ad8455641c14fce7aacbb.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/___projectname___.ib310b8d3751e5659285ad8455641c14fce7aacbb.i new file mode 100644 index 0000000..d8d8708 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/___projectname___.ib310b8d3751e5659285ad8455641c14fce7aacbb.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/info.plist.ic3495d5272f083f77fb3ff8c0da2118f0f62dc99.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/info.plist.ic3495d5272f083f77fb3ff8c0da2118f0f62dc99.i new file mode 100644 index 0000000..3eed9ce Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/info.plist.ic3495d5272f083f77fb3ff8c0da2118f0f62dc99.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/resource/___prob5ad913133f547f91fc3fff10785e46ff62862a8.d b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/resource/___prob5ad913133f547f91fc3fff10785e46ff62862a8.d new file mode 100644 index 0000000..6ac8553 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/resource/___prob5ad913133f547f91fc3fff10785e46ff62862a8.d differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/resource/___probc6f046e8697ad057ca7b67ef65c447e4c7293be.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/resource/___probc6f046e8697ad057ca7b67ef65c447e4c7293be.i new file mode 100644 index 0000000..b85cd8f Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/contents/resource/___probc6f046e8697ad057ca7b67ef65c447e4c7293be.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/default.png.iab4b7c45dea35963fa7c34f5bd0f1afd3ea7f0dd.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/default.png.iab4b7c45dea35963fa7c34f5bd0f1afd3ea7f0dd.i new file mode 100644 index 0000000..7dc26d3 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/default.png.iab4b7c45dea35963fa7c34f5bd0f1afd3ea7f0dd.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/icon.png.ieb7e805a74d833079dfa7b7693fde29ddb698155.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/icon.png.ieb7e805a74d833079dfa7b7693fde29ddb698155.i new file mode 100644 index 0000000..3b7a200 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/icon.png.ieb7e805a74d833079dfa7b7693fde29ddb698155.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/info.plist.i045765a3cfbe12fd370e6520f84e22daefd2e02c.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/info.plist.i045765a3cfbe12fd370e6520f84e22daefd2e02c.i new file mode 100644 index 0000000..8710e00 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/info.plist.i045765a3cfbe12fd370e6520f84e22daefd2e02c.i differ diff --git a/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/pkginfo.ic365309e95e2cdfa4a48b76f5ae105fecb8243a9.i b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/pkginfo.ic365309e95e2cdfa4a48b76f5ae105fecb8243a9.i new file mode 100644 index 0000000..5c43781 Binary files /dev/null and b/SDL/.hg/store/dh/xcodeiph/template/sdl appl/build/debug-ip/___proje/pkginfo.ic365309e95e2cdfa4a48b76f5ae105fecb8243a9.i differ diff --git a/SDL/.hg/store/fncache b/SDL/.hg/store/fncache new file mode 100644 index 0000000..1f392f2 --- /dev/null +++ b/SDL/.hg/store/fncache @@ -0,0 +1,4891 @@ +data/visualtest/docs/html/search/variables_6e.html.i +data/docs/man3/SDL_MouseButtonEvent.3.i +data/src/video/dga/.cvsignore.i +data/premake/Xcode/Xcode4/SDL.xcworkspace/contents.xcworkspacedata.i +data/docs/man3/SDL_Rect.3.i +data/src/video/directfb/SDL_DirectFB_dyn.c.i +data/premake/Xcode/Xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i +data/VisualC/tests/testatomic/testatomic_VS2010.vcxproj.i +data/src/video/qnxgf/SDL_qnxgf.h.i +data/src/video/windowsrt/SDL_winrtrenderer.cpp.i +data/Xcode/SDLTest/Info-checkkeys__Upgraded_.plist.i +data/Xcode-iPhoneOS/Demos/DemosiPhoneOS.xcodeproj/hfutrell.pbxuser.i +data/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj.i +data/src/video/Xext/extensions/SDLname.h.i +data/src/events/SDL_clipboardevents_c.h.i +data/src/test/SDL_test_imageBlit.c.i +data/src/atomic/win32/SDL_atomic.c.i +data/visualtest/docs/latex/struct_s_d_l___process_exit_status.tex.i +data/premake/Xcode/Xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i +data/src/video/Xext/Xxf86dga/Makefile.am.i +data/build-scripts/nacl-buildbot.sh.i +data/docs/html/sdlmutexv.html.i +data/src/video/windows/SDL_windowsvideo.h.i +data/VisualC/tests/testrendertarget/testrendertarget_VS2008.vcproj.i +data/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj.filters.i +data/docs/html/sdlbuildaudiocvt.html.i +data/src/video/Xext/Xxf86vm/XF86VMode.c.i +data/src/file/Makefile.am.i +data/src/video/vgl/SDL_vglvideo.h.i +data/src/main/winrt/SDL2-WinRTResources.rc.i +data/visualtest/docs/html/search/files_72.html.i +data/test/nds-test/nds-test.arm9.i +data/src/video/cocoa/SDL_cocoashape.c.i +data/test/testwin.c.i +data/test/automated/rwops/Test_rwopsbundlesupport.h.i +data/src/video/mir/SDL_miropengl.h.i +data/docs/html/sdljoyhatevent.html.i +data/src/loadso/beos/SDL_sysloadso.c.i +data/VisualCE/testtimer/testtimer.vcproj.i +data/VisualC/tests/testrendertarget/testrendertarget.vcxproj.i +data/premake/Xcode/Xcode4/tests/testlock/testlock.xcodeproj/project.pbxproj.i +data/VisualC/tests/testcursor/testcursor_VS2005.vcproj.i +data/src/audio/baudio/Makefile.am.i +data/premake/projects/testaudioinfo.lua.i +data/src/video/wscons/SDL_wsconsvideo.h.i +data/XCodeiPhoneOS/Demos/src/common.h.i +data/VisualC/tests/testpalette/testpalette.vcxproj.user.i +data/VisualC/tests/testrendertarget/testrendertarget_VS2012.vcxproj.i +data/visualtest/docs/html/search/nomatches.html.i +data/src/audio/pulse/SDL_pulseaudio.h.i +data/test/nds-test-progs/sprite2/icon.bmp.i +data/XCodeiPhoneOS/Demos/src/mixer.c.i +data/Xcode/SDLTest/Info-testime.plist.i +data/src/video/windib/SDL_gapidibvideo.h.i +data/src/video/cocoa/SDL_cocoakeyboard.m.i +data/src/video/bwindow/SDL_bkeyboard.cc.i +data/src/video/ataricommon/SDL_biosevents.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_input.h.i +data/src/video/aalib/SDL_aavideo.h.i +data/src/video/xbios/SDL_xbios_tveille.h.i +data/test/shapes/p09_shape8alpha.bmp.i +data/premake/VisualC/VS2010/SDL2/SDL2.vcxproj.i +data/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj.filters.i +data/src/video/Xext/XME/xme.c.i +data/src/video/haiku/SDL_bframebuffer.cc.i +data/visualtest/docs/latex/dir_68267d1309a1af8e8297ef4c3efbcdba.tex.i +data/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i +data/test/shapes/p02_shape32alpha.bmp.i +data/android/testproject/jni/egltypes.h.i +data/test/automated/platform/platform.c.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib.i +data/docs/man3/SDL_WM_SetIcon.3.i +data/docs/html/sdljoystickname.html.i +data/src/video/bwindow/SDL_bkeyboard.h.i +data/src/main/windowsrt/CubeRenderer.h.i +data/src/audio/nto/SDL_nto_audio.h.i +data/docs/man3/SDL_GetKeyState.3.i +data/premake/Xcode-iOS/SDL2test/SDL2test.xcodeproj/project.pbxproj.i +data/VisualC/tests/automated/automated.vcxproj.filters.i +data/src/endian/Makefile.am.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/test/shapes/p10_shape8alpha.png.i +data/src/render/direct3d11/SDL_D3D11_PixelShader_FixedColor.hlsl.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/MyController.h.i +data/src/video/x11/SDL_x11messagebox.c.i +data/src/test/SDL_test_md5.c.i +data/src/audio/nacl/SDL_naclaudio.c.i +data/test/shapes/p11_shape24.bmp.i +data/src/cdrom/win32/SDL_syscdrom.c.i +data/test/shapes/p08_shape8alpha.bmp.i +data/VisualC/tests/testscale/testscale_VS2008.vcproj.i +data/docs/html/sdljoystickopened.html.i +data/test/nds-test-progs/sprite2/source/common.c.i +data/touchTest/makefile.i +data/Xcode-iPhoneOS/Demos/data/drums/ds_kick_big_amb.wav.i +data/src/video/gem/SDL_gemevents.h.i +data/src/video/windowsrt/SDL_winrtvideo.c.i +data/Xcode-iPhoneOS/Demos/data/drums/ds_kick_big_amb.wav.d +data/src/core/linux/SDL_evdev.h.i +data/src/render/SDL_yuv_sw.c.i +data/src/video/maccommon/SDL_macgl.c.i +data/src/video/dga/SDL_dgamouse_c.h.i +data/src/video/maccommon/SDL_macevents.c.i +data/test/shapes/p01_shape8.bmp.i +data/VisualC/tests/testjoystick/testjoystick_VS2013.vcxproj.i +data/src/video/x11/SDL_x11gl_c.h.i +data/src/video/ps3/SDL_ps3modes.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/test/test-automation/data/images/icon.bmp.i +data/visualtest/docs/html/search/pages_76.html.i +data/src/video/windowsrt/SDL_winrtevents.c.i +data/src/video/SDL_blit_copy.h.i +data/VisualC-WinRT/tests/testthread/Package.appxmanifest.i +data/test/testatomic.c.i +data/docs/html/sdlcreatesemaphore.html.i +data/premake/Xcode/Xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj.i +data/docs/man3/SDL_VideoModeOK.3.i +data/VisualC/tests/testpower/testpower_VS2012.vcxproj.i +data/src/dynapi/SDL_dynapi.h.i +data/src/libm/e_log.c.i +data/src/video/directfb/SDL_DirectFB_shape.c.i +data/src/video/ps2gs/SDL_gsyuv_c.h.i +data/VisualC/tests/testautomation/testautomation_vs2013.vcxproj.i +data/docs/man3/SDL_Init.3.i +data/test/nds-test/nds-test.arm9.d +data/src/audio/openbsd/SDL_openbsdaudio.c.i +data/docs/html/sdladdtimer.html.i +data/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj.filters.i +data/src/power/winrt/SDL_syspower.cpp.i +data/src/video/win32/SDL_shape.c.i +data/test/test-automation/common/img_blitblend.c.i +data/src/video/SDL_blendfillrect.c.i +data/src/video/pandora/SDL_pandora.c.i +data/test/sample.bmp.i +data/src/video/nacl/SDL_naclopengles.h.i +data/XCodeiPhoneOS/Demos/DemosiPhoneOS.xcodeproj/project.pbxproj.i +data/include/SDL_rect.h.i +data/VisualC/SDL/Version.rc.i +data/src/timer/unix/SDL_systimer.c.i +data/src/SDL_android.h.i +data/visualtest/docs/html/search/all_62.js.i +data/android/testproject/local.properties.i +data/src/video/gapi/SDL_gapivideo.c.i +data/src/atomic/linux/SDL_atomic.c.i +data/src/audio/dart/SDL_dart.h.i +data/docs/html/sdldestroycond.html.i +data/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj.i +data/test/shapes/p09_shape8.bmp.i +data/docs/html/sdlenvvars.html.i +data/XCodeiPhoneOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj.i +data/Xcode/SDLTest/Info-testcursor.plist.i +data/src/video/uikit/SDL_uikitviewcontroller.h.i +data/visualtest/include/SDL_visualtest_action_configparser.h.i +data/visualtest/unittest/testquit.c.i +data/Makefile.in.i +data/include/SDL_poly.h.i +data/src/video/wscons/Makefile.am.i +data/src/video/SDL_blendline.c.i +data/test/shapes/p13_shape8.png.i +data/src/video/vgl/.cvsignore.i +data/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj.i +data/test/test-automation/src/libtest/common/images.h.i +data/VisualCE/testwin/testwin.vcproj.i +data/premake/projects/testnative.lua.i +data/src/file/.cvsignore.i +data/src/power/psp/SDL_syspower.c.i +data/visualtest/unittest/testquit.actions.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/English.lproj/InfoPlist.strings.i +data/src/video/wayland/SDL_waylandmouse.h.i +data/premake/Xcode/Xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config_minimal.h.i +data/Xcode-iOS/Test/Info.plist.i +data/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj.filters.i +data/docs/html/sdlwmgrabinput.html.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/atlantis/swim.c.i +data/src/video/svga/SDL_svgavideo.h.i +data/VisualC/SDL/SDL_VS2005.vcproj.i +data/docs/man3/SDL_UnlockAudio.3.i +data/docs/html/sdlfillrect.html.i +data/src/video/windows/SDL_ceddrawrender.h.i +data/premake/projects/testlock.lua.i +data/premake/Xcode/Xcode4/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i +data/src/video/vgl/SDL_vglevents.c.i +data/test/shapes/p15_shape8.bmp.i +data/src/video/ps3/SDL_ps3yuv.c.i +data/src/main/symbian/EKA1/SDL_main.cpp.i +data/src/video/winrt/SDL_winrtevents.cpp.i +data/test/testsem.c.i +data/Makefile.ds.i +data/src/audio/esd/.cvsignore.i +data/src/thread/windows/SDL_sysmutex.c.i +data/VisualC/tests/checkkeys/checkkeys_VS2012.vcxproj.i +data/XCodeiPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/src/haptic/windows/SDL_syshaptic.c.i +data/src/dynapi/SDL_dynapi_overrides.h.i +data/src/video/haiku/SDL_bevents.cc.i +data/test/automated/rwops/rwops.c.i +data/src/video/directfb/SDL_DirectFB_WM.h.i +data/test/test-automation/src/runner/support.h.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/subclasses.pbxbtree.i +data/src/audio/arts/SDL_artsaudio.h.i +data/premake/Xcode/Xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i +data/src/video/x11/SDL_x11framebuffer.c.i +data/src/thread/epoc/SDL_systhread_c.h.i +data/src/audio/SDL_mixer_MMX.h.i +data/premake/Xcode/Xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i +data/src/render/direct3d11/SDL_render_d3d11_winrthelpers_cpp.h.i +data/docs/html/sdlvideodrivername.html.i +data/docs/man3/SDL_RemoveTimer.3.i +data/VisualC/tests/testvidinfo/testvidinfo_VS2010.vcxproj.i +data/src/video/windowsrt/SimplePixelShader.hlsl.i +data/visualtest/configure.i +data/src/stdlib/Makefile.am.i +data/premake/VisualC/VS2012/tests/testver/testver.vcxproj.filters.i +data/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj.filters.i +data/src/file/cocoa/SDL_rwopsbundlesupport.m.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/MyCustomWindow.m.i +data/premake/Xcode/Xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2008/SDL.sln.i +data/doc/README-raspberrypi.md.i +data/test/testgles.c.i +data/docs/man3/SDL_KeyboardEvent.3.i +data/src/video/riscos/SDL_riscosmouse_c.h.i +data/premake/VisualC/VS2008/tests/testtimer/testtimer.vcproj.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/imports.pbxbtree.i +data/src/audio/amigaos/.cvsignore.i +data/src/video/photon/SDL_photon.c.i +data/src/video/macrom/SDL_romvideo.c.i +data/android/project/build.xml.i +data/Android.mk.i +data/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/hfutrell.mode1v3.i +data/src/thread/os2/SDL_systhread.c.i +data/src/video/xbios/SDL_xbios.c.i +data/premake/VisualC/VS2012/tests/testlock/testlock.vcxproj.filters.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/SDL OpenGL App.pbproj/project.pbxproj.i +data/docs/man3/SDL_CDStatus.3.i +data/src/video/ps3/SDL_ps3spe_c.h.i +data/src/video/SDL_renderer_gles.h.i +data/visualtest/docs/html/search/all_62.html.i +data/src/libm/s_tan.c.i +data/docs/man3/SDL_GetTicks.3.i +data/src/audio/haiku/SDL_haikuaudio.h.i +data/include/SDL_test_md5.h.i +data/docs/man3/SDL_InitSubSystem.3.i +data/visualtest/docs/html/nav_h.png.i +data/include/SDL_config_nintendods.h.i +data/src/cdrom/mint/SDL_syscdrom.c.i +data/test/test-automation/src/libSDLtest/fuzzer/fuzzer.c.i +data/test/loopwave.c.i +data/test/shapes/p01_shape32alpha.bmp.i +data/docs/man3/SDL_ActiveEvent.3.i +data/src/video/quartz/SDL_QuartzWM.h.i +data/build-scripts/update-copyright.sh.i +data/docs/Makefile.am.i +data/test/shapes/p10_shape1alpha.png.i +data/VisualC-WinRT/SDL_VS2012-WinRT.sln.i +data/src/video/vivante/SDL_vivanteopengles.h.i +data/src/video/ataricommon/SDL_ikbdevents.c.i +data/test/missing.i +data/premake/VisualC/build-scripts/vs2010.bat.i +data/test/test-automation/acinclude/ltoptions.m4.i +data/src/audio/mme/.cvsignore.i +data/docs/html/event.html.i +data/test/test-automation/README.i +data/src/video/windows/SDL_windowsopengles.c.i +data/visualtest/configure.in.i +data/src/joystick/android/SDL_sysjoystick.h.i +data/VisualC/tests/testgamma/testgamma_VS2008.vcproj.i +data/include/SDL_opengles2_gl2ext.h.i +data/test/shapes/p12_shape24.png.i +data/src/video/gem/SDL_gemwindow.c.i +data/android-project/res/layout/main.xml.i +data/VisualC/tests/testthread/WinRT/Assets/Logo.png.i +data/test/automated/common/img_primitivesblend.c.i +data/src/video/SDL_renderer_sw.h.i +data/src/loadso/macosx/SDL_dlcompat.c.i +data/src/video/xbios/SDL_xbios_sb3.h.i +data/src/audio/psp/SDL_pspaudio.h.i +data/test/test-automation/tests/SDL_test.c.i +data/src/video/ataricommon/SDL_biosevents_c.h.i +data/visualtest/docs/html/search/files_61.js.i +data/src/thread/win32/win_ce_semaphore.c.i +data/Xcode-iOS/Test/README.i +data/android/project/jni/Android.mk.i +data/src/audio/sndio/SDL_sndioaudio.c.i +data/visualtest/docs/html/search/all_68.js.i +data/src/video/bwindow/SDL_sysyuv.cc.i +data/VisualC/tests/testdraw2/testdraw2.vcproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_touch.h.i +data/src/video/fbcon/SDL_fbelo.h.i +data/src/video/SDL_shape.h.i +data/src/audio/macrom/SDL_romaudio.c.i +data/premake/VisualC/VS2008/tests/testsprite2/testsprite2.vcproj.i +data/Xcode/SDL/pkg-support/sdl_logo.pdf.d +data/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj.i +data/src/video/wincommon/SDL_wingl.c.i +data/src/video/directfb/SDL_DirectFB_yuv.h.i +data/src/cdrom/macosx/CDPlayer.c.i +data/VisualC/tests/testwm/testwm.vcxproj.user.i +data/src/thread/os2/SDL_sysmutex.c.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-generated-files.hmap.i +data/visualtest/docs/latex/testharness_8c.tex.i +data/src/video/Xext/Xinerama/Makefile.am.i +data/premake/projects/testgles.lua.i +data/src/timer/windows/SDL_systimer.c.i +data/test/shapes/p02_shape8.bmp.i +data/src/loadso/beos/SDL_loadso.c.i +data/test/test-automation/style.xsl.i +data/src/main/windows/version.rc.i +data/src/video/Xext/Makefile.am.i +data/src/video/macrom/Makefile.am.i +data/src/video/SDL_blendpoint.c.i +data/README.PS3.i +data/test/automated/common/common.c.i +data/src/video/photon/SDL_ph_video.c.i +data/VisualC/tests/tests.dsw.i +data/src/video/uikit/jumphack.h.i +data/docs/html/eventfunctions.html.i +data/test/test-automation/build-scripts/compile.i +data/test/test-automation/runner.c.i +data/src/video/mx6/SDL_mx6video.h.i +data/include/SDL_types.h.i +data/src/core/winrt/SDL_winrtapp_direct3d.h.i +data/test/test-automation/logger_helpers.c.i +data/src/main/winrt/SDL2-WinRTResource_BlankCursor.cur.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/touchTestIPhone.xcodeproj/project.pbxproj.i +data/Xcode/SDLTest/Info-test.plist.i +data/visualtest/docs/html/ftv2pnode.png.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.h.i +data/VisualC/SDLtest/SDLtest_VS2012.vcxproj.i +data/premake/VisualC/VS2008/tests/testkeys/testkeys.vcproj.i +data/src/render/nds/SDL_libgl2D.h.i +data/test/automated/Makefile.i +data/visualtest/missing.i +data/debian/libsdl2-dev.install.i +data/test/test-automation/src/libSDLtest/common/img_primitives.c.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/SDLMain.nib/objects.nib.i +data/src/events/SDL_expose.c.i +data/src/video/symbian/EKA2/dsa.cpp.i +data/test/shapes/p03_shape24.bmp.i +data/test/nacl/index.html.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/English.lproj/InfoPlist.strings.i +data/visualtest/docs/latex/refman.tex.i +data/docs/html/sdlaudiospec.html.i +data/premake/Xcode/Xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i +data/README-touch.txt.i +data/Xcode-iOS/Demos/src/mixer.c.i +data/premake/Xcode/Xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj.i +data/test/testautomation_mouse.c.i +data/src/video/bwindow/SDL_bevents.h.i +data/src/joystick/win32/SDL_dxjoystick.c.i +data/src/video/haiku/SDL_bwindow.h.i +data/VisualC/SDL/SDL_VS2012.vcxproj.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/SDLMain.h.i +data/src/cdrom/macosx/AudioFileReaderThread.cpp.i +data/src/main/dummy/SDL_dummy_main.c.i +data/visualtest/docs/html/search/defines_6d.html.i +data/src/main/macosx/.cvsignore.i +data/test/test-automation/src/libtest/plain_logger.h.i +data/docs/man3/SDL_CDNumDrives.3.i +data/docs/man3/SDL_VideoDriverName.3.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/Info.plist.i +data/src/render/opengles2/SDL_shaders_gles2.c.i +data/src/thread/linux/SDL_syscond.c.i +data/src/audio/nto/.cvsignore.i +data/test/shapes/p03_shape8.png.i +data/src/video/riscos/SDL_riscostask.h.i +data/src/video/SDL_blit_auto.h.i +data/src/video/win32/SDL_gdirender.c.i +data/test/test-automation/src/libSDLtest/xml_logger.c.i +data/test/testnative.h.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/Default.png.i +data/test/test-automation/support.h.i +data/docs/html/sdlpollevent.html.i +data/visualtest/docs/html/search/variables_73.html.i +data/src/video/dummy/SDL_nullrender.c.i +data/VisualC/tests/loopwave/WinRT/Assets/SplashScreen.png.i +data/VisualC/tests/testgl2/testgl2_VS2010.vcxproj.i +data/VisualC/tests/testgamma/testgamma_VS2005.vcproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_types.h.i +data/debian/source/format.i +data/VisualC/SDL/SDL_VS2013.vcxproj.i +data/docs/html/sdljoysticknumhats.html.i +data/visualtest/docs/html/parsehelper_8c.html.i +data/test/testautomation_rect.c.i +data/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/SDLMain.nib/classes.nib.i +data/Xcode/SDLTest/Info-testoverlay2.plist.i +data/XCodeiPhoneOS/SDLiPhoneOS/SDLiPhoneOS.xcodeproj/project.pbxproj.i +data/VisualCE/SDL.sln.i +data/src/video/ps3/SDL_ps3render.c.i +data/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj.filters.i +data/docs/man3/SDL_Quit.3.i +data/visualtest/docs/html/search/variables_62.html.i +data/docs/man3/SDL_JoystickNumHats.3.i +data/src/audio/mint/SDL_mintaudiointerrupt.S.i +data/src/video/raspberry/SDL_rpiopengles.c.i +data/src/thread/stdcpp/SDL_sysmutex_c.h.i +data/premake/VisualC/VS2008/tests/testpower/testpower.vcproj.i +data/src/video/SDL_blit_slow.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_assert.h.i +data/docs/html/sdlcdname.html.i +data/docs/html/sdlwmtogglefullscreen.html.i +data/TODO.txt.i +data/test/test-automation/src/libtest/xml_logger.h.i +data/src/video/directfb/SDL_DirectFB_window.h.i +data/src/video/gem/SDL_gemmodes.h.i +data/src/video/Xext/XmuStdCmap/CrCmap.c.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/begin_code.h.i +data/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj.filters.i +data/test/test-automation/ChangeLog.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_main.h.i +data/src/main/macosx/SDLMain.nib/info.nib.i +data/docs/man3/SDL_UpdateRects.3.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/Info.plist.i +data/visualtest/docs/html/_s_d_l__visualtest__variators_8h.html.i +data/docs/html/sdljoystickgetaxis.html.i +data/visualtest/compile.i +data/android-project/res/drawable-mdpi/ic_launcher.png.i +data/visualtest/docs/html/search/variables_62.js.i +data/src/thread/windows/SDL_syssem.c.i +data/VisualC/tests/automated/automated_VS2012.vcxproj.i +data/debian/compat.i +data/src/thread/win32/SDL_sysmutex.c.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/atlantis/whale.c.i +data/strip_fPIC.sh.i +data/src/joystick/android/SDL_androidjoystick.c.i +data/src/video/windowsrt/SDL_WinRTApp.cpp.i +data/visualtest/config.h.in.i +data/src/render/software/SDL_blendpoint.c.i +data/VisualC/SDLtest/SDLtest_VS2013.vcxproj.i +data/src/video/windows/SDL_d3drender.h.i +data/src/video/bwindow/SDL_sysmouse_c.h.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/___PROJECTNAME___.i +data/docs/html/sdlkey.html.i +data/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___variator.tex.i +data/visualtest/docs/latex/_s_d_l__visualtest__variators_8h.tex.i +data/docs/html/sdlupdaterect.html.i +data/docs/man3/SDL_WM_IconifyWindow.3.i +data/doc/README-directfb.md.i +data/touchTest/touchPong.c.i +data/docs/html/sdljoybuttonevent.html.i +data/docs/html/sdlglloadlibrary.html.i +data/src/render/SDL_yuv_sw_c.h.i +data/docs/html/sdlcreatecond.html.i +data/Xcode-iPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/whale.c.i +data/src/SDL_error.c.i +data/test/testbitmap.c.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch.i +data/Xcode-iOS/Demos/Default.png.i +data/test/shapes/p13_shape8alpha.bmp.i +data/test/shapes/p08_shape8.bmp.i +data/visualtest/docs/html/search/variables_69.js.i +data/src/video/winrt/SDL_winrtevents_c.h.i +data/src/video/uikit/jump.c.i +data/VisualC-WinRT/SDL2-WinRT.nuspec.i +data/docs/html/sdljoystickgetball.html.i +data/src/video/cocoa/SDL_shape.c.i +data/test/shapes/p06_shape1alpha.bmp.i +data/premake/Cygwin/build-scripts/run.tests.debug.bat.i +data/src/video/SDL_stretch_c.h.i +data/docs/man3/SDL_PushEvent.3.i +data/src/audio/dmedia/SDL_irixaudio.h.i +data/touchTest/touchSimp.i +data/src/events/SDL_dropevents.c.i +data/test/test-automation/tests/testkeyboard/Makefile.am.i +data/docs/html/sdljoystickgethat.html.i +data/test/checkkeys.c.i +data/src/joystick/beos/Makefile.am.i +data/test/shapes/p05_shape8.bmp.i +data/src/video/win32/SDL_gdirender.h.i +data/include/SDL_cpuinfo.h.i +data/src/render/SDL_yuv_mmx.c.i +data/README-hg.txt.i +data/src/video/quartz/SDL_QuartzVideo.m.i +data/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj.filters.i +data/test/nds-test/nds-test.ds.gba.d +data/src/render/software/SDL_render_sw_c.h.i +data/src/video/nacl/SDL_naclwindow.h.i +data/src/video/ps3/SDL_ps3modes_c.h.i +data/docs/man3/SDL_JoyBallEvent.3.i +data/docs/html/sdlgetgammaramp.html.i +data/src/core/linux/SDL_dbus.c.i +data/COPYING.txt.i +data/src/video/SDL_RLEaccel.c.i +data/include/SDL_string.h.i +data/src/video/x11/SDL_x11video.h.i +data/VisualC-WinRT/SDL_VS2012.sln.i +data/src/video/macdsp/Makefile.am.i +data/premake/config/SDL_config_windows.template.h.i +data/cmake/macros.cmake.i +data/src/loadso/win32/SDL_sysloadso.c.i +data/test/shapes/p07_shape24.bmp.i +data/visualtest/docs/html/search/all_72.html.i +data/src/audio/mint/Makefile.am.i +data/src/thread/win32/SDL_syssem.c.i +data/src/video/cocoa/SDL_cocoamousetap.h.i +data/src/video/svga/SDL_svgavideo.c.i +data/configure.i +data/src/video/bwindow/.cvsignore.i +data/visualtest/docs/html/dir_d44c64559bbebec7f509842c48db8b23.html.i +data/configure.d +data/src/main/windowsrt/BasicTimer.h.i +data/SDL2.spec.in.i +data/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2012/tests/testime/testime.vcxproj.i +data/Xcode-iPhoneOS/Demos/src/happy.c.i +data/Xcode/SDLTest/Info-testbitmap__Upgraded_.plist.i +data/VisualC/tests/testsprite2/testsprite2_VS2008.vcproj.i +data/src/render/opengles/SDL_glesfuncs.h.i +data/src/video/photon/SDL_ph_events_c.h.i +data/premake/README-windows.txt.i +data/src/stdlib/SDL_getenv.c.i +data/touchTest/touchTest2/touchTest2.ncb.d +data/VisualC/SDLmain/SDLmain.vcproj.i +data/visualtest/docs/html/search/all_77.js.i +data/Xcode/SDL/pkg-support/sdl_logo.pdf.i +data/src/cdrom/macosx/CAGuard.cpp.i +data/src/video/dummy/SDL_nullvideo.c.i +data/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj.i +data/visualtest/docs/html/ftv2blank.png.i +data/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h.html.i +data/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj.i +data/README.NDS.i +data/src/video/SDL_copy.h.i +data/include/SDL_test_compare.h.i +data/visualtest/docs/html/search/variables_64.html.i +data/doc/README-android.md.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config_win32.h.i +data/src/video/cocoa/SDL_cocoashape.h.i +data/visualtest/docs/latex/variator__exhaustive_8c.tex.i +data/docs/man3/SDL_WasInit.3.i +data/include/SDL_touchscreen.h.i +data/src/joystick/windows/SDL_mmjoystick.c.i +data/test/test-automation/tests/testsurface/Makefile.am.i +data/test/test-automation/build-scripts/ltmain.sh.i +data/src/video/wincommon/SDL_syswm_c.h.i +data/src/video/SDL_glesfuncs.h.i +data/src/cdrom/beos/SDL_syscdrom.cc.i +data/src/video/nacl/SDL_naclevents_c.h.i +data/test/tests/testrender.c.i +data/README-linux.txt.i +data/src/video/ps2gs/Makefile.am.i +data/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config.h.generated.i +data/src/audio/mint/SDL_mintaudio_gsxb.c.i +data/src/audio/amigaos/SDL_lowaudio.h.i +data/test/testiconv.c.i +data/src/timer/os2/SDL_systimer.c.i +data/test/shapes/p05_shape8.png.i +data/test/shapes/p10_shape1.png.i +data/src/video/cocoa/SDL_cocoatouch.h.i +data/VisualC/tests/testpalette/testpalette.vcproj.i +data/src/haptic/SDL_haptic.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_timer.h.i +data/src/video/ataricommon/SDL_gemdosevents.c.i +data/test/testwm2.c.i +data/Xcode-iPhoneOS/Demos/DemosiPhoneOS.xcodeproj/project.pbxproj.i +data/test/test-automation/src/libtest/SDL_test.c.i +data/visualtest/docs/latex/variator__random_8c.tex.i +data/test/shapes/p02_shape8.png.i +data/premake/VisualC/VS2008/tests/testoverlay2/testoverlay2.vcproj.i +data/visualtest/config.h.i +data/VisualC/tests/testsprite2/testsprite2.vcxproj.user.i +data/VisualC/tests/testwin/testwin_VS2010.vcxproj.i +data/VisualC/tests/testshape/testshape_VS2008.vcproj.i +data/debian/libsdl2-dev.manpages.i +data/visualtest/src/testharness.c.i +data/Xcode/SDLTest/Info-threadwin__Upgraded_.plist.i +data/include/SDL_gamecontroller.h.i +data/src/video/cocoa/SDL_cocoaevents.m.i +data/src/video/ps2gs/SDL_gsvideo.c.i +data/visualtest/src/parsehelper.c.i +data/src/video/win32/SDL_win32modes.c.i +data/src/video/windows/SDL_windowsevents.h.i +data/XCodeiPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/visualtest/docs/latex/dir_244674c763b96fdad0a6ffe8d0250e08.tex.i +data/src/video/vivante/SDL_vivanteplatform.h.i +data/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj.filters.i +data/include/SDL_opengl.h.d +data/src/cpuinfo/Makefile.wat.i +data/test/test-automation/src/libSDLtest/plain_logger.c.i +data/src/render/software/SDL_drawpoint.h.i +data/src/video/x11/SDL_x11dyn.c.i +data/docs/man3/SDL_JoystickGetBall.3.i +data/docs/man3/SDL_WM_GrabInput.3.i +data/visualtest/docs/html/search/enumvalues_73.html.i +data/src/cdrom/linux/.cvsignore.i +data/WhatsNew.txt.i +data/src/cdrom/mint/Makefile.am.i +data/src/joystick/iphoneos/SDLUIAccelerationDelegate.h.i +data/test/shapes/p11_shape24.png.i +data/VisualC/tests/testwin/testwin_VS2005.vcproj.i +data/src/video/winrt/SDL_winrtvideo_cpp.h.i +data/VisualCE/SDL.vcw.i +data/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h_source.html.i +data/premake/MinGW/build-scripts/clean_premake.bat.i +data/src/video/SDL_fillrect.c.i +data/docs/html/thread.html.i +data/test/testrelative.c.i +data/src/video/x11/SDL_x11opengl.h.i +data/test/shapes/p10_shape24.bmp.i +data/premake/VisualC/VS2008/tests/testshader/testshader.vcproj.i +data/Xcode-iOS/Template/SDL iOS Application/main.c.i +data/visualtest/docs/latex/dir_88e6415a3128b404f1102a130772bdb6.tex.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/atlantis/dolphin.c.i +data/visualtest/include/SDL_visualtest_sut_configparser.h.i +data/test/testautomation_audio.c.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___.dep.i +data/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj.i +data/docs/html/sdlquit.html.i +data/premake/VisualC/VS2008/SDL2test/SDL2test.vcproj.i +data/src/video/riscos/SDL_riscosevents.c.i +data/src/video/SDL_alphamult.c.i +data/src/audio/dc/aica.h.i +data/src/video/ps3/SDL_ps3spe.c.i +data/src/render/software/SDL_drawline.h.i +data/src/audio/paudio/Makefile.am.i +data/visualtest/docs/html/ftv2splitbar.png.i +data/test/shapes/p15_shape8.png.i +data/src/video/fbcon/SDL_fbmouse_c.h.i +data/src/video/bwindow/SDL_sysvideo.cc.i +data/VisualC/tests/testsprite/testsprite_VS2008.vcproj.i +data/src/test/SDL_test_compare.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/main.c.i +data/src/video/fbcon/SDL_fb3dfx.c.i +data/test/shapes/p11_shape8.bmp.i +data/Watcom.mif.i +data/src/cdrom/.cvsignore.i +data/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj.i +data/src/audio/windx5/.cvsignore.i +data/src/audio/Makefile.wat.i +data/src/video/cybergfx/SDL_cgxyuv_c.h.i +data/src/video/Xext/XmuStdCmap/CmapAlloc.c.i +data/src/video/Xext/XME/Makefile.am.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/main.c.i +data/VisualC/tests/testshape/testshape_VS2013.vcxproj.i +data/EXCLUDE/GLTSF/src/Window.cpp.i +data/VisualC/tests/testscale/testscale_VS2010.vcxproj.i +data/docs/html/sdlgetvideoinfo.html.i +data/src/thread/stdcpp/SDL_sysmutex.c.i +data/src/video/x11/SDL_x11xinput2.h.i +data/docs/man3/SDL_SemValue.3.i +data/src/cpuinfo/_pcihelp.asm.i +data/src/video/windib/SDL_dibevents.c.i +data/premake/Xcode/Xcode4/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i +data/VisualC/tests/testfile/testfile_VS2010.vcxproj.i +data/src/haptic/SDL_syshaptic.h.i +data/visualtest/include/SDL_visualtest_rwhelper.h.i +data/src/core/winrt/SDL_winrtapp_xaml.cpp.i +data/docs/man3/SDL_LockSurface.3.i +data/docs/html/sdlloadbmp.html.i +data/src/video/fbcon/SDL_fbriva.c.i +data/src/video/android/SDL_androidvideo.c.i +data/visualtest/docs/html/search/files_70.js.i +data/src/core/winrt/SDL_winrtapp_direct3d.cpp.i +data/test/shapes/trollface_32alpha.bmp.i +data/docs/html/sdlcdstatus.html.i +data/premake/Xcode/Xcode4/tests/testatomic/testatomic.xcodeproj/project.pbxproj.i +data/src/video/SDL_blit.c.i +data/src/video/uikit/SDL_uikitwindow.h.i +data/src/thread/irix/SDL_systhread_c.h.i +data/visualtest/docs/html/search/files_77.html.i +data/include/SDL_assert.h.i +data/debian/changelog.i +data/test/test-automation/xml_logger.h.i +data/src/video/ataricommon/SDL_xbiosmouseinterrupt_s.h.i +data/src/video/directfb/SDL_DirectFB_opengl.c.i +data/premake/Xcode/Xcode4/tests/testscale/testscale.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings.i +data/visualtest/docs/html/search/variables_63.js.i +data/docs/html/sdlsemtrywait.html.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_scancode.h.i +data/VisualC/tests/loopwave/loopwave.vcxproj.user.i +data/src/main/macosx/SDLMain.m.i +data/src/audio/xaudio2/SDL_xaudio2.c.i +data/src/test/SDL_test_log.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_thread.h.i +data/src/joystick/mint/Makefile.am.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/premake/projects/testjoystick.lua.i +data/debian/libsdl2.install.i +data/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj.i +data/test/test-automation/build-scripts/missing.i +data/visualtest/docs/html/search/all_6c.js.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/src/video/nds/SDL_ndsmouse.c.i +data/src/atomic/SDL_atomic.c.i +data/Xcode-iOS/Template/SDL iOS Application/Icon.png.i +data/src/stdlib/SDL_stdlib.c.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/atlantis/shark.c.i +data/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h_source.html.i +data/src/audio/paudio/SDL_paudio.c.i +data/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj.i +data/VisualC-WinRT/tests/loopwave/loopwave_VS2012.vcxproj.i +data/VisualC.zip.d +data/src/audio/nacl/SDL_naclaudio.h.i +data/VisualC.zip.i +data/VisualC/tests/testoverlay2/testoverlay2.vcproj.i +data/premake/projects/testgamecontroller.lua.i +data/VisualC/SDL/SDL.dsp.i +data/touchTest/touchTest.c.i +data/src/main/.cvsignore.i +data/VisualC/tests/testgamecontroller/testgamecontroller_VS2012.vcxproj.i +data/src/video/dc/SDL_dcevents.c.i +data/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj.i +data/src/video/haiku/SDL_bvideo.h.i +data/test/shapes/p16_shape1.png.i +data/test/testnativew32.c.i +data/include/SDL_render.h.i +data/Xcode-iOS/Demos/src/happy.c.i +data/docs/html/sdlcdpause.html.i +data/src/video/riscos/SDL_wimppoll.c.i +data/src/SDL_loadso.c.i +data/src/audio/pulseaudio/SDL_pulseaudio.h.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/SDL Custom Cocoa App.pbproj/project.pbxproj.i +data/VisualCE/testalpha/testalpha.vcproj.i +data/src/video/windowsrt/SDL_winrtmouse.h.i +data/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj.filters.i +data/docs/man3/SDL_SetColorKey.3.i +data/XCodeiPhoneOS/Demos/src/touch.c.i +data/test/test-automation/tests/testevents/Makefile.am.i +data/visualtest/docs/html/search/all_72.js.i +data/src/video/ps3/spulibs/fb_writer.c.i +data/test/shapes/p04_shape32alpha.bmp.i +data/src/thread/dc/SDL_syssem_c.h.i +data/README.AmigaOS.i +data/docs/README-touch.md.i +data/sdl-config.in.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/main.c.i +data/visualtest/docs/html/search/variables_74.html.i +data/src/core/windows/SDL_directx.h.i +data/premake/VisualC/VS2010/tests/testoverlay2/testoverlay2.vcxproj.filters.i +data/src/video/svga/Makefile.am.i +data/EXCLUDE/GLIMM/src/App.cpp.i +data/src/video/Xext/extensions/panoramiXproto.h.i +data/src/video/math_private.h.i +data/VisualC/tests/testjoystick/testjoystick_VS2012.vcxproj.i +data/premake/Xcode/Xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj.i +data/visualtest/docs/html/harness__argparser_8c.html.i +data/docs/html/sdlcreatemutex.html.i +data/premake/Xcode/Xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i +data/src/core/android/SDL_android.c.i +data/src/video/qnxgf/SDL_qnxgf.c.i +data/src/events/SDL_touch.c.i +data/src/audio/dummy/SDL_dummyaudio.c.i +data/docs/html/sdljoyballevent.html.i +data/src/joystick/winrt/SDL_xinputjoystick.c.i +data/src/cdrom/bsdi/SDL_syscdrom.c.i +data/VisualC/tests/testplatform/testplatform.vcproj.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/strings.pbxstrings/strings.i +data/docs/man3/SDL_GetAudioStatus.3.i +data/src/video/qtopia/SDL_lowvideo.h.i +data/docs/man3/SDL_GetError.3.i +data/premake/Xcode/Xcode4/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj.filters.i +data/src/main/windowsrt/DirectXHelper.h.i +data/EXCLUDE/GLTSF/include/TSF.hpp.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLApp_Prefix.pch.i +data/src/video/emscripten/SDL_emscriptenframebuffer.c.i +data/src/video/SDL_blit.h.i +data/src/main/windowsrt/SDL_winrt_main.cpp.i +data/premake/util/sdl_file.lua.i +data/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj.i +data/docs/man3/SDL_SysWMEvent.3.i +data/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj/hfutrell.pbxuser.i +data/VisualC/tests/testoverlay/testoverlay.vcxproj.i +data/src/video/windx5/SDL_dx5video.c.i +data/src/render/opengl/SDL_renderer_gl.c.i +data/src/audio/disk/SDL_diskaudio.h.i +data/src/video/xbios/SDL_xbios_centscreen.h.i +data/test/test-automation/src/libtest/plain_logger.c.i +data/premake/Xcode/Xcode4/tests/torturethread/torturethread.xcodeproj/project.pbxproj.i +data/src/video/SDL_egl.h.i +data/src/filesystem/android/SDL_sysfilesystem.c.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app.dSYM/Contents/Resources/DWARF/___PROJECTNAME___.d +data/test/shapes/p04_shape24.bmp.i +data/src/video/maccommon/SDL_macwm.c.i +data/README.CVS.i +data/src/thread/linux/SDL_sysmutex_c.h.i +data/src/video/ataricommon/.cvsignore.i +data/visualtest/docs/html/struct_s_d_l___process_info.html.i +data/visualtest/docs/html/search/files_68.html.i +data/VisualC/tests/testthread/WinRT/Package.appxmanifest.i +data/VisualC/tests/testdraw2/testdraw2_VS2008.vcproj.i +data/src/video/raspberry/SDL_rpievents_c.h.i +data/acinclude/ltoptions.m4.i +data/VisualC-WinRT/SDL/SDL-WinRT_VS2012.vcxproj.filters.i +data/docs/html/sdlkeysym.html.i +data/src/video/wayland/SDL_waylandopengles.c.i +data/src/main/haiku/SDL_BeApp.h.i +data/include/SDL_version.h.i +data/docs/html/sdlsemwait.html.i +data/docs/man3/SDL_CDClose.3.i +data/src/video/uikit/SDL_uikitappdelegate.h.i +data/docs/html/sdlcdplay.html.i +data/premake/Xcode/Xcode4/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/shark.c.i +data/test/shapes/p07_shape8.png.i +data/VisualC/tests/testjoystick/testjoystick.vcxproj.user.i +data/test/test-automation/tests/testrect/Makefile.am.i +data/docs/man3/SDL_SetPalette.3.i +data/docs/html/sdlcondwaittimeout.html.i +data/docs/html/sdlmaprgba.html.i +data/test/testendian.c.i +data/XCodeiPhoneOS/Demos/src/fireworks.c.i +data/premake/VisualC/VS2008/tests/testiconv/testiconv.vcproj.i +data/README.BeOS.i +data/docs/man3/SDL_NumJoysticks.3.i +data/src/audio/nas/.cvsignore.i +data/src/video/bwindow/SDL_bopengl.h.i +data/test/test-automation/src/libtest/fuzzer/utl_md5.h.i +data/test/testfile.c.i +data/src/video/bwindow/SDL_bopengl.cc.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/SDLApp_Prefix.pch.i +data/Xcode/SDLTest/Info-testwm__Upgraded_.plist.i +data/docs/README-raspberrypi.md.i +data/VisualC/tests/testsprite2/testsprite2.dsp.i +data/README-SDL.txt.i +data/docs/README-ios.md.i +data/src/audio/winmm/SDL_winmm.h.i +data/include/SDL_scancode.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib.i +data/docs/man3/SDL_MapRGBA.3.i +data/test/automated/surface/face.c.i +data/src/video/x11/SDL_x11gamma.c.i +data/src/thread/dc/SDL_systhread_c.h.i +data/VisualC/tests/testautomation/testautomation_VS2008.vcproj.i +data/premake/Xcode/Xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i +data/doc/README-wince.md.i +data/test/test-automation/fuzzer/utl_md5.h.i +data/XCodeiPhoneOS/Demos/src/keyboard.c.i +data/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj.filters.i +data/test/gcc-fat.sh.i +data/src/thread/pthread/SDL_systhread_c.h.i +data/Xcode-iPhoneOS/Template/SDL iOS Application/Icon.png.i +data/premake/projects/testgesture.lua.i +data/VisualC/tests/loopwave/WinRT/loopwave_VS2012_WinRT_TemporaryKey.pfx.i +data/docs/html/sdlgetrgba.html.i +data/Xcode-iPhoneOS/Demos/README.i +data/src/thread/SDL_thread.c.i +data/test/shapes/p08_shape32alpha.bmp.i +data/docs/man3/SDL_GetClipRect.3.i +data/visualtest/docs/html/ftv2mlastnode.png.i +data/docs/html/sdlwmiconifywindow.html.i +data/visualtest/docs/latex/doxygen.sty.i +data/docs/html/sdlgeteventfilter.html.i +data/test/test-automation/tests/testdummy/Makefile.am.i +data/src/core/linux/SDL_evdev.c.i +data/src/video/os2fslib/Makefile.am.i +data/src/video/android/SDL_androidmouse.h.i +data/src/video/directfb/SDL_DirectFB_mouse.c.i +data/premake/VisualC/VS2008/tests/testerror/testerror.vcproj.i +data/.DISABLED-hgeol.i +data/include/SDL_config.h.i +data/src/video/x11/SDL_x11mouse.c.i +data/src/video/winrt/SDL_winrtmouse.h.i +data/Xcode/SDLTest/Info-testgl2.plist.i +data/src/video/nanox/SDL_nxevents.c.i +data/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj.i +data/visualtest/docs/html/union_s_d_l_visual_test___s_u_t_option_value.html.i +data/src/video/directfb/SDL_DirectFB_video.h.i +data/src/video/winrt/SDL_winrtegl.h.i +data/visualtest/docs/html/search/defines_61.html.i +data/docs/man3/SDL_RWFromFile.3.i +data/docs/man3/SDL_PeepEvents.3.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/files.pbxbtree.i +data/docs/README-psp.md.i +data/docs/html/sdlremovetimer.html.i +data/docs/man3/SDL_UserEvent.3.i +data/test/testscale.c.i +data/VisualC/tests/testjoystick/testjoystick.vcproj.i +data/src/video/SDL_RLEaccel_c.h.i +data/src/video/wayland/SDL_waylandwindow.h.i +data/premake/util/sdl_projects.lua.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_loadso.h.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/SDLMain.nib/classes.nib.i +data/Xcode/SDL/SDL.xcodeproj/project.pbxproj.d +data/docs/man3/SDL_mutexP.3.i +data/VisualC/tests/testgamecontroller/testgamecontroller.vcxproj.i +data/src/loadso/macosx/SDL_sysloadso.c.i +data/android/testproject/jni/importgl.h.i +data/src/thread/pthread/SDL_syssem.c.i +data/test/shapes/p09_shape24.bmp.i +data/src/video/windows/SDL_d3drender.c.i +data/src/video/windowsrt/SDLmain_WinRT_common.h.i +data/premake/projects/torturethread.lua.i +data/VisualC/tests/loopwave/loopwave_VS2012.vcxproj.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLApp_Prefix.pch.i +data/premake/projects/testpower.lua.i +data/src/audio/dc/aica.c.i +data/docs/man3/SDL_AddTimer.3.i +data/test/testrendertarget.c.i +data/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj.i +data/docs/man3/SDL_CloseAudio.3.i +data/src/video/svga/SDL_svgamouse_c.h.i +data/src/video/win32/SDL_gapirender.c.i +data/XCodeiPhoneOS/SDLiPhoneOS/SDLiPhoneOS.xcodeproj/hfutrell.pbxuser.i +data/premake/util/sdl_depends.lua.i +data/src/video/x11/SDL_x11gl.c.i +data/src/stdlib/SDL_qsort.c.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.Shared.vcxitems.filters.i +data/test/nds-test-progs/general/Makefile.i +data/docs/html/sdljoysticknumballs.html.i +data/src/video/android/SDL_androidwindow.h.i +data/src/audio/fusionsound/SDL_fsaudio.c.i +data/test/automated/render/render.h.i +data/include/SDL_config.h.in.i +data/src/video/.cvsignore.i +data/src/video/windows/SDL_windowsframebuffer.h.i +data/src/cpuinfo/SDL_cpuinfo.c.i +data/src/video/SDL_egl.c.i +data/XCodeiPhoneOS/Demos/Default.png.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/SDLMain.h.i +data/premake/Xcode/Xcode4/tests/testver/testver.xcodeproj/project.pbxproj.i +data/src/video/cocoa/SDL_cocoamousetap.m.i +data/src/video/gem/SDL_gemwindow.h.i +data/premake/projects/testshader.lua.i +data/src/video/uikit/SDL_uikitopenglview.h.i +data/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj.i +data/premake/changelog.i +data/src/audio/windib/Makefile.am.i +data/src/joystick/darwin/SDL_sysjoystick.c.i +data/src/video/bwindow/SDL_bmodes.h.i +data/XCodeiPhoneOS/Demos/data/bitmapfont/kromasky_16x16.bmp.i +data/test/shapes/p15_shape32alpha.bmp.i +data/src/thread/stdcpp/SDL_syscond.c.i +data/visualtest/docs/html/search/all_77.html.i +data/src/video/emscripten/SDL_emscriptenvideo.h.i +data/VisualC/SDL/SDL_VS2010.vcxproj.i +data/VisualC/tests/testsprite/testsprite.vcproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config_macosx.h.i +data/src/timer/macos/FastTimes.c.i +data/Xcode/SDLTest/Info-testplatform.plist.i +data/src/SDL_log.c.i +data/visualtest/docs/html/search/defines_74.html.i +data/src/video/ataricommon/SDL_atarieddi_s.h.i +data/docs/man3/SDL_CDResume.3.i +data/Xcode-iOS/Demos/src/touch.c.i +data/docs/man3/SDL_GL_SetAttribute.3.i +data/src/audio/ums/SDL_umsaudio.h.i +data/src/video/SDL_blit_auto.c.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___action_node.tex.i +data/premake/VisualC/VS2008/SDL2main/SDL2main.vcproj.i +data/test/torturethread.c.i +data/doc/README-macosx.md.i +data/src/video/dc/SDL_dcevents_c.h.i +data/VisualC/SDL_VS2012.sln.i +data/src/video/Xext/Xxf86vm/Makefile.am.i +data/VisualC/tests/testsprite2/testsprite2.vcxproj.i +data/visualtest/include/SDL_visualtest_mischelper.h.i +data/src/video/windib/SDL_dibvideo.h.i +data/VisualC/tests/loopwave/loopwave.vcproj.i +data/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj.filters.i +data/premake/patches/713.patch.i +data/build-scripts/gcc-fat.sh.i +data/src/audio/sun/.cvsignore.i +data/src/video/directfb/Makefile.am.i +data/test/shapes/p16_shape1.bmp.i +data/test/nds-test-progs/sprite2/source/common.h.i +data/VisualC/tests/testgl/testgl_VS2005.vcproj.i +data/src/video/winrt/SDL_winrtmouse.cpp.i +data/src/video/ps3/spulibs/yuv2rgb.c.i +data/src/audio/dc/SDL_dcaudio.c.i +data/premake/Xcode-iOS/SDL2main/SDL2main.xcodeproj/project.pbxproj.i +data/premake/Xcode-iOS/build-scripts/premake4.d +data/src/video/psp/SDL_pspgl.c.i +data/docs/html/sdlcondbroadcast.html.i +data/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj.filters.i +data/src/video/cocoa/SDL_cocoamodes.m.i +data/src/video/riscos/SDL_riscossprite.c.i +data/test/testspriteminimal.c.i +data/src/audio/dummy/SDL_dummyaudio.h.i +data/test/shapes/p08_shape1alpha.png.i +data/visualtest/docs/html/search/files_73.js.i +data/visualtest/docs/html/open.png.i +data/premake/Xcode-iOS/build-scripts/premake4.i +data/premake/VisualC/VS2008/tests/testsem/testsem.vcproj.i +data/src/video/glrenderer/SDL_glfuncs.h.i +data/src/video/dga/SDL_dgaevents.c.i +data/src/video/windows/SDL_windowsevents.c.i +data/src/render/opengles2/SDL_shaders_gles2.h.i +data/src/cpuinfo/_cpuinfo.asm.i +data/visualtest/docs/latex/variator__common_8c.tex.i +data/XCodeiPhoneOS/Test/TestiPhoneOS.xcodeproj/hfutrell.pbxuser.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_power.h.i +data/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/src/audio/alsa/SDL_alsa_audio.c.i +data/premake/VisualC/build-scripts/premake4.exe.i +data/Xcode/SDLTest/Info-testwm2.plist.i +data/VisualC7.zip.i +data/src/main/symbian/EKA2/vectorbuffer.cpp.i +data/VisualC-WinRT/tests/testthread/Assets/Logo.png.i +data/XCodeiPhoneOS/Demos/README.i +data/src/audio/macosx/SDL_coreaudio.h.i +data/test/nds-test/build/main.d.i +data/src/thread/.cvsignore.i +data/Xcode/SDLTest/TestDropFile-Info.plist.i +data/test/shapes/p15_shape8alpha.bmp.i +data/VisualCE/testwin/testwin.vcp.i +data/test/test-automation/fuzzer/utl_crc32.c.i +data/src/video/psp/SDL_pspmouse_c.h.i +data/src/video/x11/SDL_x11dga_c.h.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/atlantis/whale.c.i +data/src/video/bwindow/SDL_bvideo.c.i +data/test/shapes/p02_shape24.png.i +data/SDL.qpg.in.i +data/src/joystick/darwin/10.3.9-FIX/IOHIDLib.h.i +data/src/libm/s_atan.c.i +data/src/video/ataricommon/SDL_atarisuper.h.i +data/src/video/uikit/SDL_uikitview.h.i +data/src/video/SDL_rendercopy.h.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.h.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib.i +data/src/video/mmx.h.i +data/src/video/dga/Makefile.am.i +data/src/joystick/dc/SDL_sysjoystick.c.i +data/src/thread/riscos/SDL_sysmutex.c.i +data/test/Makefile.am.i +data/docs/man3/SDL_WM_ToggleFullScreen.3.i +data/src/test/SDL_test_font.c.i +data/VisualC/tests/testfile/testfile_VS2012.vcxproj.i +data/premake/projects/testdraw2.lua.i +data/test/automated/surface/blitblend.c.i +data/src/audio/nas/SDL_nasaudio.c.i +data/docs/html/sdlsettimer.html.i +data/premake/Xcode/Xcode4/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i +data/visualtest/unittest/testquit.config.i +data/Xcode-iPhoneOS/Demos/data/drums/ds_brush_snare.wav.i +data/docs/README-linux.md.i +data/src/video/nds/SDL_ndsvideo.c.i +data/Xcode-iPhoneOS/Demos/Info.plist.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___exhaustive_variator.tex.i +data/cmake_uninstall.cmake.in.i +data/docs/html/sdlgetticks.html.i +data/src/video/ggi/Makefile.am.i +data/test/nds-test/build/main.s.i +data/premake/VisualC/VS2010/tests/testdraw2/testdraw2.vcxproj.i +data/docs/man3/SDL_DisplayFormat.3.i +data/docs/man3/SDL_CondBroadcast.3.i +data/test/mkinstalldirs.i +data/src/render/software/SDL_blendpoint.h.i +data/include/SDL_test_common.h.i +data/src/joystick/emscripten/SDL_sysjoystick_c.h.i +data/src/core/windows/SDL_xinput.h.i +data/Xcode-iPhoneOS/Demos/src/keyboard.c.i +data/src/test/SDL_test_imagePrimitivesBlend.c.i +data/Xcode-iPhoneOS/Template/SDL Application/main.c.i +data/src/video/gem/SDL_gemevents_c.h.i +data/VisualC/tests/testvidinfo/testvidinfo_VS2005.vcproj.i +data/src/video/nacl/SDL_naclopengles.c.i +data/visualtest/docs/latex/dir_fe549de2418b81853b5f194edb4a7f34.tex.i +data/src/video/pandora/SDL_pandora_events.c.i +data/include/SDL_compat.h.i +data/INSTALL.i +data/src/video/fbcon/SDL_fbvideo.c.i +data/src/main/win32/SDL_main.c.i +data/test/test-automation/TODO.i +data/android-project/jni/src/Android.mk.i +data/src/video/bwindow/SDL_bclipboard.c.i +data/.indent.pro.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.m.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/cdecls.pbxbtree.i +data/src/audio/riscos/Makefile.am.i +data/src/video/gapi/Makefile.am.i +data/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj.i +data/test/shapes/p04_shape32alpha.png.i +data/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj.i +data/src/video/photon/SDL_ph_modes_c.h.i +data/src/events/Makefile.wat.i +data/premake/Xcode/Xcode4/tests/testshader/testshader.xcodeproj/project.pbxproj.i +data/src/video/mx6/SDL_mx6opengles.c.i +data/android-project/src/org/libsdl/app/SDLActivity.java.i +data/test/testbounds.c.i +data/VisualC/tests/testfile/testfile.dsp.i +data/docs/html/sdlsetpalette.html.i +data/test/testgles2.c.i +data/test/automated/common/common.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch.i +data/src/video/ataricommon/SDL_atarigl.c.i +data/include/SDL_keysym.h.i +data/VisualC/SDL/resource.h.i +data/symbian.zip.d +data/src/audio/amigaos/Makefile.am.i +data/src/thread/Makefile.am.i +data/docs/html/sdllistmodes.html.i +data/premake/VisualC/VS2008/tests/testhaptic/testhaptic.vcproj.i +data/test/nacl/common.js.i +data/src/video/x11/SDL_x11yuv.c.i +data/premake/MinGW/build-scripts/mingw.bat.i +data/src/video/vgl/SDL_vglevents_c.h.i +data/VisualC/tests/testplatform/testplatform_VS2010.vcxproj.i +data/visualtest/docs/html/search/variables_70.html.i +data/src/video/mir/SDL_mirvideo.h.i +data/VisualC/tests/testscale/testscale_VS2005.vcproj.i +data/VisualC/tests/testsprite/testsprite_VS2010.vcxproj.i +data/src/video/cocoa/SDL_cocoamessagebox.m.i +data/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj.i +data/sdl2-config.in.i +data/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj.filters.i +data/src/video/nacl/SDL_naclwindow.c.i +data/src/video/gtk/SDL_gtkvideo.h.i +data/src/video/xbios/SDL_xbios_tveille.c.i +data/MPWmake.sea.bin.i +data/src/cdrom/mint/.cvsignore.i +data/VisualC/SDLmain/SDLmain_VS2010.vcxproj.user.i +data/visualtest/include/SDL_visualtest_process.h.i +data/src/video/ataricommon/SDL_gemdosevents_c.h.i +data/src/libm/e_pow.c.i +data/test/test-automation/tests/testvideo/Makefile.am.i +data/Xcode/SDLTest/Info-torturethread__Upgraded_.plist.i +data/visualtest/docs/html/struct_s_d_l_visual_test___action_queue.html.i +data/src/video/dummy/Makefile.am.i +data/src/render/mmx.h.i +data/src/power/uikit/SDL_syspower.m.i +data/src/video/windx5/SDL_dx5yuv_c.h.i +data/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj.filters.i +data/premake/MinGW/build-scripts/run.tests.bat.i +data/VisualC/tests/testfile/testfile_VS2005.vcproj.i +data/src/video/cybergfx/SDL_cgxgl.c.i +data/VisualC/tests/testwm/testwm_VS2008.vcproj.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/main.c.i +data/premake/Xcode/Xcode4/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i +data/docs/man3/SDL_CDtrack.3.i +data/src/filesystem/winrt/SDL_sysfilesystem.cpp.i +data/src/audio/android/SDL_androidaudio.c.i +data/premake/README-linux.txt.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/SDLMain.m.i +data/premake/VisualC/VS2012/tests/testpower/testpower.vcxproj.i +data/src/render/direct3d11/SDL_render_d3d11.cpp.i +data/visualtest/docs/latex/index.tex.i +data/VisualC-WinPhone/SDL/SDL-WinPhone_VS2012.vcxproj.i +data/build-scripts/winrtbuild.bat.i +data/XCodeiPhoneOS/Test/README.i +data/src/audio/arts/.cvsignore.i +data/src/audio/amigaos/SDL_ahiaudio.h.i +data/premake/Xcode-iOS/Demos/keyboard/keyboard.xcodeproj/project.pbxproj.i +data/touchTest/makefile~.i +data/include/SDL_events.h.i +data/src/render/software/SDL_blendfillrect.h.i +data/src/video/vgl/SDL_vglmouse.c.i +data/sdl.pc.in.i +data/premake/VisualC/VS2008/tests/testaudioinfo/testaudioinfo.vcproj.i +data/docs/man3/SDL_CreateMutex.3.i +data/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj.i +data/docs/man3/SDL_SetCursor.3.i +data/VisualC/tests/loopwave/loopwave_VS2010.vcxproj.i +data/XCodeiPhoneOS/Demos/src/common.c.i +data/src/video/caca/SDL_cacaevents_c.h.i +data/src/video/cocoa/SDL_cocoavideo.h.i +data/src/thread/linux/clone.S.i +data/src/cdrom/qnx/.cvsignore.i +data/src/main/macosx/Makefile.am.i +data/visualtest/docs/html/files.html.i +data/test/test-automation/plain_logger.c.i +data/test/test-automation/tests/testrender/Makefile.am.i +data/premake/patches/iOS.patch.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLApp_Prefix.pch.i +data/VisualC-WinRT/SDL/SDL_VS2012.vcxproj.filters.i +data/test/test-automation/tests/testdummy/testdummy.c.i +data/Xcode-iPhoneOS/Template/SDL iOS Application/main.c.i +data/src/cdrom/openbsd/.cvsignore.i +data/test/shapes/p16_shape24.png.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/English.lproj/InfoPlist.strings.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/Info.plist.i +data/src/joystick/win32/.cvsignore.i +data/test/test-automation/tests/testkeyboard/testkeyboard.c.i +data/src/cdrom/freebsd/Makefile.am.i +data/docs/html/sdlwasinit.html.i +data/src/video/haiku/SDL_bframebuffer.h.i +data/src/cdrom/openbsd/SDL_syscdrom.c.i +data/src/video/mir/SDL_mirwindow.h.i +data/test/test-automation/NEWS.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/SDLMain.h.i +data/src/video/emscripten/SDL_emscriptenopengles.h.i +data/android-project/res/drawable-mdpi/icon.png.i +data/premake/README-mingw.txt.i +data/test/nds-test-progs/Makefile.i +data/src/video/fbcon/3dfx_mmio.h.i +data/src/loadso/dummy/SDL_loadso.c.i +data/src/video/picogui/SDL_pgevents_c.h.i +data/test/test-automation/src/libSDLtest/common/common.h.i +data/include/SDL_config_psp.h.i +data/VisualC/tests/testjoystick/testjoystick_VS2010.vcxproj.i +data/src/audio/ums/Makefile.am.i +data/src/joystick/riscos/SDL_sysjoystick.c.i +data/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj.i +data/test/testautomation_timer.c.i +data/src/video/riscos/SDL_riscosASM.s.i +data/VisualC/tests/testshape/testshape_VS2010.vcxproj.i +data/src/atomic/dummy/SDL_atomic.c.i +data/test/test-automation/testrect/testrect.c.i +data/test/test-automation/support.c.i +data/src/video/nacl/SDL_naclvideo.c.i +data/XCodeiPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/hfutrell.pbxuser.i +data/premake/Xcode/Xcode4/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app.dSYM/Contents/Resources/DWARF/___PROJECTNAME___.i +data/src/video/ataricommon/SDL_xbiosevents.c.i +data/src/video/cybergfx/SDL_cgximage.c.i +data/visualtest/docs/latex/_s_d_l__visualtest__parsehelper_8h.tex.i +data/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj.i +data/src/video/photon/SDL_ph_events.c.i +data/docs/html/sdlquitevent.html.i +data/premake/Xcode/Xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i +data/src/video/win32/SDL_win32clipboard.h.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app.dSYM/Contents/Resources/DWARF/___PROJECTNAME___.d +data/test/shapes/p09_shape32alpha.png.i +data/src/video/ataricommon/SDL_atarieddi.S.i +data/src/video/cybergfx/Makefile.am.i +data/docs/html/sdlupdaterects.html.i +data/src/cdrom/dc/.cvsignore.i +data/src/video/x11/SDL_x11wm_c.h.i +data/src/atomic/macosx/SDL_atomic.c.i +data/src/render/software/SDL_drawline.c.i +data/visualtest/docs/html/dir_a18918b93668b435612395bbc2e8b82b.html.i +data/docs/html/sdlgetthreadid.html.i +data/VisualC/tests/testgl/testgl.vcxproj.i +data/BorlandC.html.i +data/src/render/opengles/SDL_render_gles.c.i +data/XCodeiPhoneOS/Demos/data/drums/ds_china.wav.d +data/Xcode-iPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/visualtest/docs/html/nav_f.png.i +data/docs/html/sdlrect.html.i +data/XCodeiPhoneOS/Demos/data/drums/ds_china.wav.i +data/test/test-automation/src/libSDLtest/Makefile.am.i +data/src/video/uikit/SDL_uikitevents.m.i +data/docs/html/guidebasicsinit.html.i +data/docs/man3/SDL_JoystickGetAxis.3.i +data/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj.filters.i +data/src/video/windowsrt/SDL_winrtrenderer.h.i +data/src/video/win32/SDL_win32video.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_cpuinfo.h.i +data/src/video/winrt/SDL_winrtopengles.cpp.i +data/premake/VisualC/build-scripts/generate.all.bat.i +data/VisualC/tests/testdraw2/testdraw2.vcxproj.user.i +data/test/automated/rwops/TestSupportRWops_Cocoa.m.i +data/touchTest/parseDevicesTest.c.i +data/visualtest/docs/html/search/defines_61.js.i +data/premake/Linux/build-scripts/gmake.sh.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.h.i +data/visualtest/docs/latex/windows__screenshot_8c.tex.i +data/src/power/nds/SDL_syspower.c.i +data/docs/html/sdlsetcolorkey.html.i +data/test/test-automation/src/libtest/common/img_primitives.c.i +data/src/main/linux/SDL_main.c.i +data/test/testloadso.c.i +data/Xcode-iPhoneOS/Demos/data/icon.bmp.i +data/test/test-automation/fuzzer/fuzzer.h.i +data/src/video/x11/SDL_x11window.c.i +data/README.OpenBSD.i +data/src/video/qnxgf/SDL_gf_render.h.i +data/Xcode-iPhoneOS/SDL/testsdl-Info.plist.i +data/src/haptic/darwin/SDL_syshaptic_c.h.i +data/Xcode-iPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/hfutrell.pbxuser.i +data/src/thread/os2/SDL_syscond_c.h.i +data/visualtest/docs/html/search/variables_70.js.i +data/docs/html/guidevideoopengl.html.i +data/test/shapes/p10_shape1.bmp.i +data/Xcode-iPhoneOS/Demos/src/touch.c.i +data/premake/Cygwin/build-scripts/premake4.exe.d +data/premake/Xcode/Xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj.i +data/Xcode/stationary.csh.i +data/visualtest/docs/html/tab_s.png.i +data/src/video/windowsrt/BasicTimer.h.i +data/src/thread/psp/SDL_sysmutex_c.h.i +data/docs/man3/SDL_EventState.3.i +data/Xcode-iPhoneOS/Demos/data/drums/ds_loose_skin_mute.wav.i +data/src/cdrom/osf/SDL_syscdrom.c.i +data/src/filesystem/nacl/SDL_sysfilesytem.c.i +data/premake/patches/712.patch.i +data/docs/man3/SDL_CDOpen.3.i +data/src/video/gem/SDL_gemmouse.h.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/shark.c.i +data/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/Borland.zip.d +data/EXCLUDE/GLIMM/src/Window.cpp.i +data/src/video/uikit/SDL_uikitkeyboard.h.i +data/src/video/bwindow/SDL_bframebuffer.h.i +data/src/render/direct3d11/SDL_D3D11_VertexShader_Default.hlsl.i +data/src/video/symbian/EKA2/SDL_epocevents.cpp.i +data/docs/html/sdlgetmodstate.html.i +data/test/shapes/p01_shape24.png.i +data/README-cmake.txt.i +data/src/audio/mint/SDL_mintaudio_gsxb.h.i +data/visualtest/src/screenshot.c.i +data/src/main/beos/SDL_BeApp.cc.i +data/Borland.zip.i +data/.hgtags.i +data/visualtest/launch_harness.cmd.i +data/test/testautomation_hints.c.i +data/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj.i +data/test/test-automation/AUTHORS.i +data/premake/VisualC/VS2010/tests/testloadso/testloadso.vcxproj.filters.i +data/src/libm/s_fabs.c.i +data/visualtest/docs/html/search/all_65.html.i +data/include/SDL_config.h.minimal.i +data/visualtest/docs/html/struct_s_d_l_visual_test___variator.html.i +data/VisualC/tests/testgesture/testgesture_VS2013.vcxproj.i +data/src/audio/emscripten/SDL_emscriptenaudio.h.i +data/visualtest/docs/html/search/files_6c.html.i +data/src/video/SDL_clipboard.c.i +data/premake/VisualC/VS2010/tests/testlock/testlock.vcxproj.filters.i +data/src/video/ps3/SDL_ps3video.c.i +data/test/testgesture.c.i +data/VisualC/tests/testautomation/testautomation.vcxproj.i +data/Xcode-iPhoneOS/Demos/src/accelerometer.c.i +data/Xcode-iPhoneOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/files.pbxbtree.i +data/android-project/res/values/strings.xml.i +data/VisualC/tests/testcursor/testcursor_VS2010.vcxproj.i +data/visualtest/configs/testsprite2_geometry/testsprite2_geometry.parameters.i +data/src/SDL_error_c.h.i +data/VisualC/tests/testpalette/testpalette.vcxproj.i +data/src/video/windowsrt/SDL_winrtframebuffer.cpp.i +data/visualtest/docs/html/search/all_76.js.i +data/test/test-automation/install-tests.sh.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.c.i +data/premake/VisualC/VS2012/tests/testshader/testshader.vcxproj.i +data/src/cdrom/os2/SDL_syscdrom.c.i +data/test/test-automation/tests/testrwops/testrwops.c.i +data/Xcode-iPhoneOS/Demos/src/common.c.i +data/visualtest/docs/html/search/all_6d.js.i +data/src/video/win32/SDL_win32keyboard.c.i +data/Xcode-iOS/Demos/data/ship.bmp.i +data/test/testwm.c.i +data/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata.i +data/VisualC/SDL_VS2013.sln.i +data/src/test/SDL_test_common.c.i +data/src/audio/qsa/SDL_qsa_audio.c.i +data/build-scripts/checker-buildbot.sh.i +data/docs/html/sdlwarpmouse.html.i +data/android-project/res/drawable-hdpi/ic_launcher.png.i +data/src/render/direct3d11/SDL_render_d3d11_cpp.h.i +data/test/shapes/p15_shape32alpha.png.i +data/src/video/Makefile.am.i +data/Makefile.dc.i +data/VisualC/tests/testpower/testpower.vcxproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_atomic.h.i +data/premake/Xcode/Xcode4/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForProjectBuilder/SDL Application/main.c.i +data/premake/config/SDL_config_linux.template.h.i +data/docs/html/sdlglswapbuffers.html.i +data/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.config.i +data/src/events/SDL_windowevents_c.h.i +data/docs/html/sdlgetkeystate.html.i +data/test/test-automation/src/libtest/fuzzer/utl_md5.c.i +data/Xcode/mkxcode.csh.i +data/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj.filters.i +data/src/audio/pulse/SDL_pulseaudio.c.i +data/src/audio/.cvsignore.i +data/src/events/scancodes_windows.h.i +data/src/thread/stdcpp/SDL_systhread_c.h.i +data/android/project/src/org/libsdl/app/SDLActivity.java.i +data/test/sample.wav.i +data/touchTest/testIn.i +data/VisualC/tests/testgles2/testgles2_VS2008.vcproj.i +data/src/video/win32/SDL_win32mouse.h.i +data/build-scripts/fatbuild.sh.i +data/premake/VisualC/VS2010/tests/testver/testver.vcxproj.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___variation.tex.i +data/src/video/android/SDL_androidrender.c.i +data/test/testtypes.c.i +data/Makefile.wiz.i +data/src/thread/pthread/SDL_sysmutex_c.h.i +data/Xcode-iPhoneOS/Demos/Default.png.i +data/src/video/qtopia/Makefile.am.i +data/include/SDL_messagebox.h.i +data/premake/VisualC/VS2008/tests/testwm2/testwm2.vcproj.i +data/src/loadso/os2/SDL_sysloadso.c.i +data/src/video/directfb/SDL_DirectFB_render.c.i +data/test/shapes/p16_shape8.png.i +data/src/joystick/win32/Makefile.am.i +data/visualtest/docs/html/search/classes_73.html.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_keyboard.h.i +data/src/video/cocoa/SDL_cocoavideo.m.i +data/README.iOS.i +data/test/moose.dat.i +data/visualtest/docs/html/search/files_74.js.i +data/test/shapes/p12_shape8.bmp.i +data/src/video/SDL_blit_A.c.i +data/src/video/nanox/SDL_nxvideo.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/src/main/macosx/Info.plist.i +data/src/video/psp/SDL_pspvideo.h.i +data/README.Platforms.i +data/docs/man3/SDL_FreeCursor.3.i +data/docs/html/guideinput.html.i +data/src/events/SDL_sysevents.h.i +data/docs/html/sdlmousemotionevent.html.i +data/src/timer/macos/FastTimes.h.i +data/src/video/windows/SDL_windowskeyboard.c.i +data/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj.filters.i +data/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj.i +data/src/video/win32/SDL_ceddrawrender.c.i +data/src/main/dummy.c.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.Shared.vcxitems.i +data/src/main/win32/exports/SDL.def.i +data/VisualC/tests/testgl/testgl_VS2010.vcxproj.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/src/video/ps3/SDL_ps3events.c.i +data/src/video/x11/SDL_x11dyn.h.i +data/src/video/wayland/SDL_waylandwindow.c.i +data/include/SDL_config_iphoneos.h.i +data/src/video/bwindow/SDL_bwindow.c.i +data/premake/Xcode-iOS/build-scripts/xcode3.command.i +data/docs/html/sdlkeyboardevent.html.i +data/src/video/gem/SDL_gemwm_c.h.i +data/src/video/windowsrt/SDL_winrtevents.cpp.i +data/visualtest/docs/html/search/variables_6f.html.i +data/src/video/cocoa/SDL_cocoaevents.h.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/whale.c.i +data/XCodeiPhoneOS/Demos/DemosiPhoneOS.xcodeproj/hfutrell.mode1v3.i +data/VisualC/tests/testoverlay2/testoverlay2.vcxproj.i +data/test/common.h.i +data/src/main/macos/SDL.shlib.r.i +data/include/SDL_stdlib.h.i +data/src/main/macos/.cvsignore.i +data/src/video/qtopia/SDL_sysevents.cc.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/protocols.pbxbtree.i +data/src/cdrom/dummy/Makefile.am.i +data/src/thread/pthread/SDL_sysmutex.c.i +data/visualtest/docs/html/ftv2mnode.png.i +data/src/video/windows/SDL_windowsopengl.c.i +data/test/test-automation/tests/testplatform/Makefile.am.i +data/src/video/quartz/SDL_QuartzEvents.m.i +data/src/video/emscripten/SDL_emscriptenframebuffer.h.i +data/android/config.cfg.example.i +data/src/video/wincommon/wmmsg.h.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp_Prefix.pch.i +data/README-ios.txt.i +data/Xcode-iPhoneOS/Demos/src/fireworks.c.i +data/test/automated/common/img_blit.c.i +data/premake/Xcode/Xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2010/tests/testsem/testsem.vcxproj.i +data/src/thread/nds/SDL_sysmutex.c.i +data/src/power/os2/SDL_syspower.c.i +data/Xcode/SDL/pkg-support/Readme SDL Developer.txt.i +data/VisualCE/SDL/SDL.vcp.i +data/src/video/quartz/SDL_QuartzKeys.h.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/prefix.h.i +data/src/audio/mint/SDL_mintaudiogsxb.h.i +data/build-scripts/config.sub.i +data/test/shapes/p04_shape8.bmp.i +data/visualtest/docs/html/search/all_74.js.i +data/VisualC/tests/testalpha/testalpha_VS2008.vcproj.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.h.i +data/Xcode-iPhoneOS/Demos/DemosiPhoneOS.xcodeproj/hfutrell.mode1v3.i +data/src/video/gem/SDL_gemvideo.c.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.m.i +data/autogen.sh.i +data/premake/Xcode/Xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i +data/src/audio/sun/SDL_sunaudio.c.i +data/doc/README-ios.md.i +data/docs/html/sdlunlockaudio.html.i +data/src/audio/nas/SDL_nasaudio.h.i +data/src/audio/mint/SDL_mintaudio_xbios.c.i +data/src/video/xbios/.cvsignore.i +data/visualtest/src/variator_random.c.i +data/VisualC/tests/testplatform/testplatform_VS2012.vcxproj.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-own-target-headers.hmap.i +data/XCodeiPhoneOS/Demos/Icon.png.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_version.h.i +data/premake/Xcode/Xcode4/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i +data/VisualC/tests/checkkeys/checkkeys.vcproj.i +data/android/testproject/src/org/libsdl/android/SDLActivity.java.i +data/visualtest/docs/html/search/files_76.js.i +data/touchTest/touchTest2/touchTest2/touchTest2.vcproj.i +data/src/audio/mint/SDL_mintaudio_mcsn.c.i +data/src/joystick/riscos/.cvsignore.i +data/visualtest/docs/html/tabs.css.i +data/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj.i +data/VisualC/tests/checkkeys/checkkeys_VS2013.vcxproj.i +data/test/autogen.sh.i +data/test/shapes/p07_shape8alpha.bmp.i +data/test/testautomation_sdltest.c.i +data/visualtest/docs/html/struct_s_d_l_visual_test___exhaustive_variator.html.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/SDLApp_Prefix.pch.i +data/visualtest/docs/html/search/all_66.html.i +data/docs/man3/SDL_DisplayYUVOverlay.3.i +data/docs/man3/SDL_JoyButtonEvent.3.i +data/visualtest/src/windows/windows_screenshot.c.i +data/VisualC/tests/testoverlay2/testoverlay2_VS2005.vcproj.i +data/include/SDL_ellipse.h.i +data/VisualC/SDL_VS2010.sdf.i +data/docs/man3/SDLKey.3.i +data/VisualC/SDL_VS2010.sdf.d +data/src/video/windows/SDL_windowsmodes.h.i +data/doc/README-windows.md.i +data/android/testproject/res/layout/main.xml.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_video.h.i +data/test/testfill2.c.i +data/src/video/glsdl/SDL_glsdl.c.i +data/Xcode-iOS/Demos/src/common.h.i +data/src/thread/linux/SDL_syssem.c.i +data/test/shapes/p11_shape8alpha.png.i +data/Xcode/SDLTest/Info-loopwave__Upgraded_.plist.i +data/premake/projects/testmessage.lua.i +data/premake/VisualC/VS2008/tests/checkkeys/checkkeys.vcproj.i +data/src/audio/dc/SDL_dcaudio.h.i +data/premake/VisualC/VS2012/tests/testdraw2/testdraw2.vcxproj.filters.i +data/README.WinCE.i +data/include/SDL_rwops.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config_nintendods.h.i +data/README.DC.i +data/src/audio/directsound/SDL_directsound.c.i +data/src/cdrom/macosx/SDLOSXCAGuard.c.i +data/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj.filters.i +data/src/video/uikit/SDL_uikitevents.h.i +data/src/video/quartz/SDL_QuartzVideo.h.i +data/src/joystick/dc/Makefile.am.i +data/build-scripts/windows-buildbot-zipper.bat.i +data/src/video/ggi/.cvsignore.i +data/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj.i +data/premake/projects/testintersection.lua.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/Objects-normal/i386/___PROJECTNAME___.LinkFileList.i +data/premake/Xcode/Xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2010/tests/testime/testime.vcxproj.filters.i +data/test/testautomation_surface.c.i +data/src/joystick/darwin/.cvsignore.i +data/test/test-automation/tests/SDL_test.h.i +data/include/SDL_main.h.i +data/src/video/uikit/SDL_uikitvideo.h.i +data/src/video/qnxgf/SDL_gf_opengles.c.i +data/test/testrumble.c.i +data/src/joystick/psp/SDL_sysjoystick.c.i +data/src/video/SDL_blit_copy.c.i +data/src/video/bwindow/SDL_bclipboard.h.i +data/premake/VisualC/VS2008/tests/testver/testver.vcproj.i +data/docs/man3/SDL_ConvertSurface.3.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config_pandora.h.i +data/docs/html/sdlsemvalue.html.i +data/src/video/bwindow/SDL_bframebuffer.cc.i +data/src/video/epoc/SDL_epocvideo.cpp.i +data/src/video/Xext/Xxf86dga/XF86DGA.c.i +data/src/joystick/dummy/Makefile.am.i +data/docs/man3/SDL_GetRGBA.3.i +data/Xcode-iOS/Demos/src/keyboard.c.i +data/android-project/jni/src/Android_static.mk.i +data/src/audio/macosx/.cvsignore.i +data/src/audio/SDL_audiodev_c.h.i +data/Xcode-iOS/SDL/testsdl-Info.plist.i +data/VisualC/tests/testgamecontroller/testgamecontroller_VS2013.vcxproj.i +data/src/video/wayland/SDL_waylandevents.c.i +data/docs/html/sdlsurface.html.i +data/src/video/vivante/SDL_vivantevideo.c.i +data/src/video/picogui/Makefile.am.i +data/src/video/Xext/Xxf86vm/.cvsignore.i +data/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj.filters.i +data/acinclude/c.m4.i +data/Xcode/SDLTest/Info-testkeys__Upgraded_.plist.i +data/src/video/qtopia/SDL_QPEApp.cc.i +data/src/video/uikit/SDL_uikitmodes.h.i +data/src/video/android/eglext.h.i +data/VisualC/SDLmain/SDLmain.dsp.i +data/src/video/dummy/SDL_nullvideo.h.i +data/docs/man3/SDL_GetThreadID.3.i +data/premake/projects/testdrawchessboard.lua.i +data/src/video/SDL_renderer_gl.c.i +data/Xcode-iOS/Demos/src/accelerometer.c.i +data/premake/Xcode/Xcode4/tests/testnative/testnative.xcodeproj/project.pbxproj.i +data/visualtest/testsprite2_sample.parameters.i +data/src/render/nds/SDL_libgl2D.c.i +data/src/video/fbcon-1.3/SDL_fbrender.c.i +data/visualtest/docs/html/ftv2cl.png.i +data/premake/VisualC/VS2012/tests/testerror/testerror.vcxproj.filters.i +data/src/video/cybergfx/SDL_amigamouse_c.h.i +data/src/video/raspberry/SDL_rpimouse.h.i +data/VisualC/tests/testpalette/testpalette_VS2010.vcxproj.i +data/src/audio/pulseaudio/SDL_pulseaudio.c.i +data/VisualC/tests/loopwave/loopwave_VS2008.vcproj.i +data/src/timer/linux/SDL_systimer.c.i +data/src/video/macdsp/SDL_dspvideo.c.i +data/src/thread/psp/SDL_systhread_c.h.i +data/src/video/Xext/Xv/Xv.c.i +data/src/video/bwindow/SDL_bwindow.cc.i +data/android-project/jni/Application.mk.i +data/src/video/photon/SDL_ph_image_c.h.i +data/src/video/windows/SDL_windowsmouse.h.i +data/src/main/android/SDL_android_main.c.i +data/src/cdrom/dummy/.cvsignore.i +data/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj.i +data/src/video/winrt/SDL_winrtmouse_c.h.i +data/EpocBuildFiles.zip.i +data/src/cdrom/qnx/Makefile.am.i +data/include/SDL_test_font.h.i +data/Xcode-iPhoneOS/Template/SDL Application/Icon.png.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/SDLMain.m.i +data/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h_source.html.i +data/src/video/epoc/.cvsignore.i +data/VisualC/tests/testsprite2/testsprite2_VS2013.vcxproj.i +data/VisualC-WinRT/SDL2main-WinRT-CoreWindow.nuspec.i +data/src/timer/SDL_timer.c.i +data/src/cdrom/dummy/SDL_syscdrom.c.i +data/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj.i +data/src/video/win32/SDL_win32window.h.i +data/Xcode/TemplatesForXcode/SDL Application/SDLMain.h.i +data/premake/VisualC/VS2010/tests/testver/testver.vcxproj.filters.i +data/premake/util/sdl_dependency_checkers.lua.i +data/docs/html/sdljoystickopen.html.i +data/include/SDL_opengles2_gl2platform.h.i +data/src/core/linux/SDL_ibus.c.i +data/test/testhread.c.i +data/visualtest/docs/html/globals_enum.html.i +data/premake/VisualC/VS2010/tests/testresample/testresample.vcxproj.filters.i +data/visualtest/docs/html/search/all_6e.html.i +data/README.OS2.i +data/test/test-automation/tests/testvideo/testvideo.c.i +data/docs/man3/SDL_FillRect.3.i +data/docs/man3/SDL_GetGamma.3.i +data/premake/projects/loopwave.lua.i +data/test/test-automation/common/common.c.i +data/VisualC-WinRT/SDL/SDL_VS2012-WinRT.vcxproj.filters.i +data/premake/Xcode/Xcode3/SDL2/SDL2.xcodeproj/project.pbxproj.i +data/src/video/qnxgf/SDL_gf_input.c.i +data/TEST5.txt.i +data/src/video/nds/SDL_ndsmouse_c.h.i +data/src/dynapi/SDL_dynapi_procs.h.i +data/docs/man3/SDL_UnlockSurface.3.i +data/src/video/x11/SDL_x11gamma.h.i +data/docs/man3/SDL_JoystickNumAxes.3.i +data/visualtest/docs/html/search/all_66.js.i +data/src/joystick/os2/joyos2.h.i +data/src/core/windows/SDL_windows.h.i +data/src/video/x11/SDL_x11yuv_c.h.i +data/src/audio/mint/SDL_mintaudio_stfa.h.i +data/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj.i +data/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj.i +data/src/video/winrt/SDL_winrtopengles.h.i +data/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj.i +data/visualtest/docs/html/search/variables_66.html.i +data/src/video/haiku/SDL_bwindow.cc.i +data/VisualC/tests/testshape/testshape_VS2012.vcxproj.i +data/src/cdrom/linux/SDL_syscdrom.c.i +data/VisualC/tests/testgamma/testgamma.vcxproj.i +data/src/video/photon/SDL_phyuv.c.i +data/src/audio/dsp/.cvsignore.i +data/src/cdrom/qnx/SDL_syscdrom.c.i +data/visualtest/docs/html/search/variables_76.js.i +data/src/video/maccommon/SDL_macwm_c.h.i +data/build-scripts/install-sh.i +data/docs/html/sdlresizeevent.html.i +data/src/audio/SDL_audio.c.i +data/premake/Xcode/Xcode4/tests/testmessage/testmessage.xcodeproj/project.pbxproj.i +data/src/video/directfb/SDL_DirectFB_events.c.i +data/src/timer/Makefile.am.i +data/src/video/Makefile.wat.i +data/Xcode-iPhoneOS/Template/SDL iOS Application/Info.plist.i +data/premake/Xcode/build-scripts/build.all.xcode3.i386.command.i +data/test/testeyes.c.i +data/src/video/cocoa/SDL_cocoaopengl.h.i +data/src/video/nds/SDL_ndsrender_c.h.i +data/docs/html/sdldisplayyuvoverlay.html.i +data/src/video/qnxgf/SDL_hiddi_keyboard.h.i +data/Xcode/SDLTest/Info-testalpha__Upgraded_.plist.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/main.c.i +data/BUGS.i +data/VisualC/tests/controllermap/controllermap_VS2008.vcproj.i +data/Xcode/SDLTest/Info-testloadso.plist.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch.i +data/docs/man3/SDL_PixelFormat.3.i +data/src/main/macos/SDL_main.c.i +data/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj.filters.i +data/src/video/wscons/SDL_wsconsevents_c.h.i +data/src/video/SDL_sysvideo.h.i +data/src/video/SDL_stretch.c.i +data/src/thread/nds/SDL_syssem_c.h.i +data/android/project/res/values/strings.xml.i +data/test/testshape.c.i +data/docs/README-gesture.md.i +data/premake/VisualC/VS2010/tests/testsprite2/testsprite2.vcxproj.i +data/src/video/x11/SDL_x11mouse_c.h.i +data/premake/Xcode/Xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj.i +data/test/shapes/p13_shape8alpha.png.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.m.i +data/docs/html/sdllocksurface.html.i +data/test/test-automation/icon.bmp.i +data/VisualC/tests/graywin/graywin.vcxproj.user.i +data/test/test-automation/src/runner/Makefile.am.i +data/src/video/ps2gs/SDL_gsvideo.h.i +data/docs/html/sdlsetgammaramp.html.i +data/docs/html/sdlenablekeyrepeat.html.i +data/include/SDL_getenv.h.i +data/docs/html/sdljoyaxisevent.html.i +data/src/video/wayland/SDL_waylandmouse.c.i +data/include/SDL_test_crc32.h.i +data/EXCLUDE/GLIMM/include/App.hpp.i +data/test/test-automation/.hgignore.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-all-target-headers.hmap.i +data/include/.cvsignore.i +data/src/video/bwindow/SDL_bclipboard.cc.i +data/test/test-automation/test.h.i +data/test/shapes/p15_shape24.png.i +data/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions.i +data/src/joystick/macos/SDL_sysjoystick.c.i +data/VisualC-WinPhone/SDL/SDL_VS2012-WinPhone.vcxproj.filters.i +data/android/testproject/default.properties.i +data/src/thread/generic/SDL_syssem.c.i +data/README-porting.txt.i +data/VisualC/tests/testatomic/testatomic_VS2013.vcxproj.i +data/premake/projects/rectangles.lua.i +data/VisualC-WinPhone/SDL/SDL_VS2012-WinPhone.vcxproj.i +data/src/video/ps2gs/SDL_gsyuv.c.i +data/test/nds-test-progs/general/source/main.c.i +data/visualtest/docs/html/globals_eval.html.i +data/test/acinclude.m4.i +data/docs/html/sdlaudiocvt.html.i +data/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h.html.i +data/src/video/aalib/SDL_aaevents.c.i +data/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.parameters.i +data/premake/VisualC/build-scripts/check.bin.compatibility.vs2010.bat.i +data/src/video/ataricommon/SDL_atarigl_c.h.i +data/include/SDL_config_android.h.i +data/include/SDL_config_dreamcast.h.i +data/test/test-automation/src/libtest/common/img_primitivesblend.c.i +data/src/thread/stdcpp/SDL_sysmutex.cpp.i +data/EXCLUDE/GLTSF/src/App.cpp.i +data/src/audio/mme/SDL_mmeaudio.c.i +data/src/video/gapi/SDL_gapivideo.h.i +data/Xcode-iPhoneOS/Template/SDL Application/Default.png.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch.i +data/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i +data/src/video/SDL_yuv_mmx.c.i +data/src/video/x11/Makefile.am.i +data/src/libm/math.h.i +data/src/joystick/haiku/SDL_haikujoystick.cc.i +data/touchTest/touchTest2/touchTest2.suo.i +data/src/video/win32/SDL_d3drender.h.i +data/doc/doxyfile.i +data/src/video/ps3/SDL_ps3yuv_c.h.i +data/Xcode-iOS/Demos/data/icon.bmp.i +data/VisualC/tests/testshape/testshape.vcxproj.user.i +data/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.actions.i +data/visualtest/unittest/testquit.parameters.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/MyCustomView.m.i +data/src/audio/SDL_wave.h.i +data/premake/Linux/build-scripts/run.tests.sh.i +data/test/install-sh.i +data/src/endian/SDL_endian.c.i +data/premake/VisualC/VS2010/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i +data/VisualC-WinRT/SDL2-WinRT.targets.i +data/docs/man3/SDL_Color.3.i +data/src/video/haiku/SDL_bclipboard.h.i +data/src/main/win32/version.rc.i +data/android/testproject/AndroidManifest.xml.i +data/premake/projects/testmultiaudio.lua.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/Info.plist.i +data/src/render/direct3d11/SDL_render_winrt.cpp.i +data/test/testoverlay2.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/debian/control.i +data/visualtest/docs/html/ftv2plastnode.png.i +data/docs/html/sdlsetvideomode.html.i +data/src/video/epoc/SDL_epocevents_c.h.i +data/src/video/windowsrt/SDL_winrtvideo.cpp.i +data/premake/VisualC/VS2010/tests/testiconv/testiconv.vcxproj.i +data/premake/VisualC/VS2012/tests/teststreaming/teststreaming.vcxproj.filters.i +data/src/video/symbian/EKA1/SDL_epocvideo.cpp.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/visualtest/docs/html/search/all_69.js.i +data/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h_source.html.i +data/visualtest/include/SDL_visualtest_variators.h.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/main.c.i +data/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_option.html.i +data/src/video/win32/SDL_win32keyboard.h.i +data/Xcode/SDL/SDL.xcodeproj/project.pbxproj.i +data/src/audio/openbsd/SDL_openbsdaudio.h.i +data/src/thread/dc/SDL_syscond.c.i +data/src/test/SDL_test_assert.c.i +data/src/joystick/SDL_gamecontroller.c.i +data/src/video/ps2gs/SDL_gsevents.c.i +data/src/video/windows/SDL_windowsclipboard.h.i +data/VisualC/SDL/SDL_VS2010.vcxproj.user.i +data/VisualC/SDL_VS2008.sln.i +data/src/video/xbios/Makefile.am.i +data/src/render/psp/SDL_render_psp.c.i +data/docs/html/sdlshowcursor.html.i +data/test/teststreaming.c.i +data/src/joystick/mint/.cvsignore.i +data/include/SDL_syswm.h.i +data/test/automated/audio/audio.h.i +data/premake/Xcode/Xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i +data/src/audio/bsd/SDL_bsdaudio.c.i +data/src/video/win32/SDL_win32gamma.h.i +data/src/render/software/SDL_rotate.c.i +data/src/video/nacl/SDL_naclvideo.h.i +data/premake/Xcode/Xcode4/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i +data/premake/Xcode/Xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj.i +data/VisualC/tests/testrumble/testrumble.vcxproj.i +data/test/testcdrom.c.i +data/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj.i +data/visualtest/docs/html/search/typedefs_73.html.i +data/src/video/windows/wmmsg.h.i +data/premake/Xcode/Xcode4/tests/testplatform/testplatform.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/main.c.i +data/src/video/windows/SDL_windowsmessagebox.h.i +data/src/video/nds/SDL_ndswindow.h.i +data/src/thread/riscos/SDL_systhread.c.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/English.lproj/InfoPlist.strings.i +data/visualtest/docs/html/classes.html.i +data/src/video/directfb/SDL_DirectFB_render.h.i +data/VisualC/tests/testgl2/testgl2.vcxproj.i +data/src/core/android/SDL_android.h.i +data/Xcode/SDL/pkg-support/devel-resources/ReadMe.txt.i +data/src/video/sdlgenblit.pl.i +data/build-scripts/android_libs/libcutils.so.i +data/src/video/picogui/SDL_pgvideo.c.i +data/test/testlines2.c.i +data/test/automated/surface/blit.c.i +data/EXCLUDE/GLTSF/src/TSF.cpp.i +data/src/video/win32/wactab/wintab.h.i +data/EXCLUDE/GLTSF/src/Main.cpp.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___~.dep.i +data/src/video/ipod/.cvsignore.i +data/VisualC/tests/testalpha/testalpha.vcproj.i +data/docs/html/sdlgetrelativemousestate.html.i +data/src/video/riscos/SDL_riscosevents_c.h.i +data/src/video/nds/SDL_ndsevents_c.h.i +data/android/scripts/acc.sh.i +data/test/picture.xbm.i +data/acinclude/ltdl.m4.i +data/visualtest/docs/html/search/defines_6b.js.i +data/test/testresample.c.i +data/VisualC-WinRT/tests/testthread/Assets/SmallLogo.png.i +data/src/main/macosx/info.nib.i +data/src/haptic/windows/SDL_windowshaptic_c.h.i +data/VisualC/tests/testalpha/testalpha.vcxproj.user.i +data/visualtest/docs/html/action__configparser_8c.html.i +data/src/hermes/HeadX86.h.i +data/src/video/win32/SDL_win32events.c.i +data/test/test-automation/acinclude/ltsugar.m4.i +data/src/video/bwindow/SDL_sysevents.cc.i +data/src/video/x11/edid-parse.c.i +data/android/project/AndroidManifest.xml.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/swim.c.i +data/src/libm/s_floor.c.i +data/src/Makefile.wat.i +data/src/render/direct3d11/SDL_render_d3d11.c.i +data/docs/man3/SDL_GetAppState.3.i +data/test/test-automation/tests/testrender/testrender.c.i +data/src/events/SDL_gesture.c.i +data/include/SDL_blendmode.h.i +data/src/video/glrenderer/SDL_renderer_gl.h.i +data/visualtest/docs/html/search/variables_6e.js.i +data/src/audio/windib/SDL_dibaudio.h.i +data/src/video/fbcon-1.3/SDL_fbvideo.h.i +data/src/video/bwindow/SDL_sysyuv.h.i +data/src/main/macos/Makefile.am.i +data/test/test-automation/common/img_blit.c.i +data/visualtest/docs/html/mischelper_8c.html.i +data/src/video/SDL_renderer_sw.c.i +data/test/shapes/p06_shape32alpha.bmp.i +data/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/test/config.guess.i +data/src/thread/symbian/SDL_syssem.cpp.i +data/visualtest/docs/html/index.html.i +data/docs/html/sdlpumpevents.html.i +data/visualtest/docs/latex/_s_d_l__visualtest__exhaustive__variator_8h.tex.i +data/docs/html/sdlseteventfilter.html.i +data/src/thread/stdcpp/SDL_syscond.cpp.i +data/VisualC/tests/testthread/WinRT/testthread_VS2012_WinRT.vcxproj.i +data/test/automated/common/img_face.c.i +data/premake/projects/keyboard.lua.i +data/src/video/x11/SDL_x11video.c.d +data/visualtest/docs/html/search/all_61.js.i +data/src/events/nds/SDL_ndsgesture.c.i +data/src/video/Xext/Xxf86dga/XF86DGA2.c.i +data/premake/VisualC/VS2008/tests/testime/testime.vcproj.i +data/src/video/caca/SDL_cacavideo.c.i +data/src/video/gem/.cvsignore.i +data/src/audio/dma/SDL_dmaaudio.h.i +data/src/video/wayland/SDL_waylanddyn.h.i +data/src/video/x11/SDL_x11video.c.i +data/docs/html/sdlsetcolors.html.i +data/android/testproject/res/values/strings.xml.i +data/docs/man3/SDL_ListModes.3.i +data/build-scripts/iosbuild.sh.i +data/docs/html/audio.html.i +data/test/shapes/p04_shape1.bmp.i +data/src/video/ggi/SDL_ggimouse_c.h.i +data/src/video/android/SDL_androidevents.h.i +data/src/video/caca/SDL_cacavideo.h.i +data/src/cpuinfo/gcpuinfo.c.i +data/docs/man3/SDL_KillThread.3.i +data/src/joystick/darwin/Makefile.am.i +data/test/testsprite.c.i +data/include/doxyfile.i +data/test/test-automation/src/libtest/common/img_face.c.i +data/premake/projects/testthread.lua.i +data/src/events/SDL_mouse.c.i +data/src/audio/nto/SDL_nto_audio.c.i +data/premake/Xcode/Xcode4/tests/testsem/testsem.xcodeproj/project.pbxproj.i +data/README.gesture.i +data/src/video/SDL_renderer_gles.c.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/MyController.m.i +data/VisualC/tests/graywin/graywin.vcxproj.i +data/src/video/Xext/extensions/panoramiXext.h.i +data/docs/html/sdlmixaudio.html.i +data/src/video/xbios/SDL_xbios_milan.h.i +data/doc/README-platforms.md.i +data/src/thread/amigaos/SDL_systhread_c.h.i +data/test/testpower.c.i +data/src/timer/psp/SDL_systimer.c.i +data/README-winrt.txt.i +data/premake/projects/testfile.lua.i +data/Watcom-OS2.zip.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/SDLMain.h.i +data/VisualC/tests/testgesture/testgesture_VS2005.vcproj.i +data/src/video/nanox/SDL_nximage.c.i +data/docs/html/sdllockyuvoverlay.html.i +data/src/video/mir/SDL_mirwindow.c.i +data/src/joystick/mint/SDL_sysjoystick.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/shark.c.i +data/Xcode-iPhoneOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLApp_Prefix.pch.i +data/src/video/win32/wactab/wintabx.h.i +data/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj.i +data/visualtest/docs/latex/annotated.tex.i +data/sdl2.m4.i +data/test/test-automation/build-scripts/distclean.sh.i +data/VisualC/tests/graywin/graywin.vcproj.i +data/include/SDL_mouse.h.i +data/VisualC/SDL_VS2012EE.sln.i +data/docs/man3/SDL_SetEventFilter.3.i +data/test/nds-test-progs/sprite/source/common.c.i +data/src/cdrom/linux/Makefile.am.i +data/src/cdrom/aix/Makefile.am.i +data/src/video/ggi/SDL_ggikeys.h.i +data/test/automated/rect/rect.h.i +data/visualtest/docs/html/globals_func.html.i +data/src/main/macosx/exports/SDL.x.i +data/src/video/android/SDL_androidrender_c.h.i +data/README-raspberrypi.txt.i +data/include/SDL_mutex.h.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___~.dep.i +data/src/video/windows/SDL_windowsmouse.c.i +data/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj.filters.i +data/docs/html/guidevideo.html.i +data/XCodeiPhoneOS/Demos/data/space.bmp.i +data/docs/man3/SDL_GetCursor.3.i +data/XCodeiPhoneOS/Demos/data/space.bmp.d +data/test/testdraw2.c.i +data/src/cpuinfo/.cvsignore.i +data/src/video/uikit/SDL_uikitmessagebox.h.i +data/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj.i +data/docs/html/sdlfreewav.html.i +data/premake/VisualC/VS2012/tests/testver/testver.vcxproj.i +data/visualtest/docs/html/search/defines_73.html.i +data/src/video/photon/SDL_photon_pixelfmt.h.i +data/premake/VisualC/VS2012/tests/testplatform/testplatform.vcxproj.filters.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.h.i +data/src/audio/xaudio2/SDL_xaudio2_winrthelpers.cpp.i +data/premake/MinGW/build-scripts/premake4.exe.d +data/src/video/xbios/SDL_xbiosmodes.c.i +data/docs/html/sdljoystickupdate.html.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___action_queue.tex.i +data/EXCLUDE/GLIMM/GLIMM.sln.i +data/src/audio/dma/.cvsignore.i +data/src/SDL_assert_c.h.i +data/src/video/cybergfx/SDL_cgxwm.c.i +data/src/video/dummy/SDL_nullevents.c.i +data/src/video/fbcon-1.3/SDL_fbvideo.c.i +data/premake/MinGW/build-scripts/premake4.exe.i +data/src/video/win32/SDL_msctf.h.i +data/test/controllermap.bmp.i +data/src/thread/windows/win_ce_semaphore.h.i +data/acinclude/ax_gcc_x86_cpuid.m4.htm.i +data/src/video/directfb/SDL_DirectFB_dyn.h.i +data/src/audio/mint/SDL_mintaudiodma.h.i +data/src/audio/dmedia/Makefile.am.i +data/VisualC/SDL.dsw.i +data/src/thread/nds/SDL_syscond_c.h.i +data/src/video/nanox/SDL_nxvideo.h.i +data/src/timer/haiku/SDL_systimer.c.i +data/XCodeiPhoneOS/Demos/DemosiPhoneOS.xcodeproj/hfutrell.pbxuser.i +data/visualtest/COPYING.txt.i +data/src/audio/xaudio2/SDL_xaudio2_winrthelpers.h.i +data/test/test-automation/tests/testclipboard/Makefile.am.i +data/docs/html/guidepreface.html.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_copying.h.i +data/docs/README-emscripten.txt.i +data/include/SDL_config.h.default.i +data/src/video/win32/SDL_win32opengl.h.i +data/visualtest/docs/html/globals_type.html.i +data/src/thread/riscos/SDL_sysmutex_c.h.i +data/Xcode/SDL/pkg-support/devel-resources/Welcome.txt.i +data/src/thread/windows/SDL_systhread_c.h.i +data/test/shapes/p04_shape24.png.i +data/premake/VisualC/VS2010/tests/testrendertarget/testrendertarget.vcxproj.filters.i +data/premake/Xcode/Xcode4/tests/testshape/testshape.xcodeproj/project.pbxproj.i +data/src/audio/mint/SDL_mintaudio_it.S.i +data/premake/Xcode/Xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj.i +data/README.Qtopia.i +data/src/main/beos/exports/SDL.exp.i +data/src/video/photon/SDL_ph_image.c.i +data/src/video/pandora/SDL_pandora_events.h.i +data/docs/html/sdlgetkeyname.html.i +data/test/shapes/p08_shape32alpha.png.i +data/src/render/software/SDL_draw.h.i +data/src/video/directfb/SDL_DirectFB_yuv.c.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/symbols0.pbxsymbols.i +data/src/video/wincommon/.cvsignore.i +data/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj.i +data/VisualC/visualtest/visualtest_VS2012.vcxproj.i +data/src/video/photon/SDL_photon_render.h.i +data/test/test-automation/src/libSDLtest/common/img_blit.c.i +data/VisualC/tests/testscale/testscale.vcxproj.i +data/src/video/windows/SDL_windowsopengl.h.i +data/visualtest/docs/html/_s_d_l__visualtest__action__configparser_8h.html.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___.dep.i +data/premake/Xcode/Xcode4/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i +data/test/test-automation/build-scripts/config.sub.i +data/src/thread/win32/win_ce_semaphore.h.i +data/android/project/res/drawable-ldpi/icon.png.i +data/src/thread/pthread/SDL_systhread.c.i +data/src/video/photon/SDL_photon_keycodes.h.i +data/VisualC/tests/testpalette/testpalette_VS2005.vcproj.i +data/include/SDL_power.h.i +data/test/testdyngl.c.i +data/docs/man3/SDL_JoystickNumButtons.3.i +data/src/thread/beos/SDL_systhread_c.h.i +data/README.MacOS.i +data/src/video/photon/SDL_phyuv_c.h.i +data/test/test-automation/testrwops/Makefile.am.i +data/src/thread/os2/SDL_syscond.c.i +data/test/automated/surface/surface.c.i +data/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj.i +data/src/video/photon/SDL_ph_modes.c.i +data/premake/VisualC/VS2012/tests/testtimer/testtimer.vcxproj.filters.i +data/XCodeiPhoneOS/Demos/src/rectangles.c.i +data/src/thread/linux/SDL_systhread.c.i +data/src/joystick/windows/SDL_xinputjoystick.c.i +data/src/video/x11/SDL_x11messagebox.h.i +data/test/automated/rect/rect.c.i +data/test/shapes/p08_shape1alpha.bmp.i +data/src/video/fbcon/.cvsignore.i +data/premake/projects/testgl2.lua.i +data/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj.i +data/src/touchscreen/dummy/SDL_systouchscreen.c.i +data/src/render/SDL_d3dmath.c.i +data/VisualC/tests/testalpha/testalpha_VS2005.vcproj.i +data/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj.i +data/src/SDL_loadso.h.i +data/android-project/res/drawable-ldpi/icon.png.i +data/src/video/photon/SDL_ph_mouse_c.h.i +data/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj.filters.i +data/visualtest/docs/html/search/all_6b.js.i +data/premake/VisualC/build-scripts/run.tests.vs2010.bat.i +data/src/thread/psp/SDL_syscond.c.i +data/VisualC/tests/graywin/graywin.dsp.i +data/visualtest/docs/latex/union_s_d_l_visual_test___s_u_t_option_value.tex.i +data/src/video/raspberry/SDL_rpiopengles.h.i +data/src/input/evdev/SDL_evdev.c.i +data/docs/html/sdlinitsubsystem.html.i +data/src/video/qtopia/.cvsignore.i +data/missing.i +data/premake/Xcode/build-scripts/premake4.d +data/test/automated/surface/blend.c.i +data/src/video/ataricommon/SDL_atarimxalloc_c.h.i +data/src/thread/nds/SDL_systhread_c.h.i +data/src/video/windows/SDL_gapirender.h.i +data/src/main/macosx/SDLMain.nib/objects.nib.i +data/android-project/project.properties.i +data/Xcode-iPhoneOS/Demos/data/stroke.bmp.i +data/VisualC.html.i +data/README.SVN.i +data/VisualC/tests/testfile/testfile_VS2008.vcproj.i +data/src/video/dummy/.cvsignore.i +data/premake/patches/711.patch.i +data/VisualC/tests/testvidinfo/testvidinfo.vcxproj.i +data/src/video/directfb/SDL_DirectFB_keys.h.i +data/src/video/riscos/SDL_riscosmouse.c.i +data/premake/projects/testerror.lua.i +data/test/testeyes_bitmap.h.i +data/VisualC/tests/testsprite/testsprite.dsp.i +data/premake/VisualC/VS2008/tests/testrelative/testrelative.vcproj.i +data/docs/images/rainbow.gif.i +data/visualtest/docs/html/sync_off.png.i +data/docs/man3/SDL_CDEject.3.i +data/Xcode/SDLTest/Info-testblitspeed.plist.i +data/VisualC/tests/testplatform/testplatform_VS2005.vcproj.i +data/VisualC/tests/testgamma/testgamma_VS2010.vcxproj.i +data/src/video/android/SDL_androidclipboard.h.i +data/visualtest/docs/html/ftv2mo.png.i +data/src/thread/pthread/SDL_systls.c.i +data/premake/config/SDL_config_cygwin.template.h.i +data/Xcode/TemplatesForXcode/SDL Application/main.c.i +data/src/video/photon/SDL_ph_video.h.i +data/src/video/wayland/SDL_waylandvideo.c.i +data/src/main/macos/SIZE.r.i +data/src/SDL_internal.h.i +data/test/testthread.c.i +data/src/main/linux/SDL_Qtopia_main.cc.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/close_code.h.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/SDLMain.nib/info.nib.i +data/visualtest/docs/html/variator__exhaustive_8c.html.i +data/docs/html/sdljoystickgetbutton.html.i +data/include/SDL_hints.h.i +data/test/test-automation/tests/testevents/testevents.c.i +data/src/touchscreen/SDL_systouchscreen.h.i +data/Xcode-iPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/XCodeiPhoneOS/Template/SDL Application/main.c.i +data/Xcode/SDLTest/Info-testcdrom__Upgraded_.plist.i +data/src/video/photon/.cvsignore.i +data/XCodeiPhoneOS/Demos/data/drums/ds_kick_big_amb.wav.i +data/test/shapes/p04_shape1.png.i +data/src/audio/openbsd/Makefile.am.i +data/XCodeiPhoneOS/Demos/data/drums/ds_kick_big_amb.wav.d +data/docs/man3/SDL_CreateRGBSurface.3.i +data/src/haptic/windows/SDL_xinputhaptic_c.h.i +data/src/video/qtopia/SDL_sysmouse.cc.i +data/Xcode-iOS/Demos/Icon.png.i +data/src/haptic/darwin/SDL_syshaptic.c.i +data/VisualC/tests/testgesture/testgesture_VS2012.vcxproj.i +data/docs/man3/SDL_WaitEvent.3.i +data/docs/man3/SDL_CreateCond.3.i +data/test/test-automation/src/libSDLtest/fuzzer/fuzzer.h.i +data/src/test/SDL_test_fuzzer.c.i +data/src/joystick/windows/SDL_windowsjoystick_c.h.i +data/docs/html/sdlpeepevents.html.i +data/VisualC/tests/testjoystick/testjoystick_VS2005.vcproj.i +data/src/filesystem/cocoa/SDL_sysfilesystem.m.i +data/src/video/nacl/SDL_naclglue.c.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_config.tex.i +data/src/video/qnxgf/SDL_gf_input.h.i +data/include/SDL_input.h.i +data/test/test-automation/src/libSDLtest/fuzzer/utl_random.h.i +data/docs/man3/SDL_CreateRGBSurfaceFrom.3.i +data/touchTest/touchPong.c~.i +data/premake/VisualC/VS2010/tests/testshape/testshape.vcxproj.filters.i +data/VisualC/tests/testpower/testpower_VS2010.vcxproj.i +data/premake/VisualC/VS2010/tests/testatomic/testatomic.vcxproj.i +data/premake/MinGW/SDL_config_premake.h.i +data/src/thread/win32/SDL_systhread.c.i +data/visualtest/include/SDL_visualtest_parsehelper.h.i +data/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h_source.html.i +data/VisualC/tests/testoverlay2/testoverlay2_VS2012.vcxproj.i +data/acinclude/ac_check_define.m4.i +data/touchTest/touchPong.i +data/test/testgamecontroller.c.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/atlantis/atlantis.h.i +data/premake/Xcode-iOS/Demos/rectangles/rectangles.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib.i +data/src/video/android/SDL_androidkeyboard.h.i +data/premake/VisualC/VS2012/tests/testrendercopyex/testrendercopyex.vcxproj.filters.i +data/src/video/riscos/SDL_riscosASM.S.i +data/test/shapes/p01_shape8alpha.png.i +data/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj.filters.i +data/visualtest/docs/html/_s_d_l__visualtest__variators_8h_source.html.i +data/premake/Xcode/Xcode3/SDL_config_premake.h.i +data/src/cdrom/macos/SDL_syscdrom.c.i +data/src/video/cocoa/SDL_cocoamouse.m.i +data/premake/projects/testscale.lua.i +data/src/audio/sun/Makefile.am.i +data/docs/README-hg.md.i +data/ltmain.sh.i +data/src/audio/psp/SDL_pspaudio.c.i +data/docs/html/sdljoystickindex.html.i +data/test/automated/testsdl.c.i +data/src/audio/windx5/directx.h.i +data/src/render/software/SDL_renderer_sw.c.i +data/src/video/ps2gs/.cvsignore.i +data/include/SDL_loadso.h.i +data/test/test-automation/testdummy/testdummy.c.i +data/src/video/ataricommon/SDL_atarikeys.h.i +data/VisualC/tests/testatomic/testatomic_VS2008.vcproj.i +data/test/automated/rwops/TestSupportRWops_Generic.c.i +data/docs/man3/SDL_CreateSemaphore.3.i +data/src/video/fbcon-1.3/SDL_fbmodes.c.i +data/docs/html/sdlgetmousestate.html.i +data/src/video/svga/SDL_svgaevents_c.h.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/categories.pbxbtree.i +data/acinclude/ltversion.m4.i +data/src/video/x11/SDL_x11opengles.c.i +data/VisualC/tests/testautomation/testautomation_vs2010.vcxproj.i +data/premake/VisualC/VS2012/tests/testiconv/testiconv.vcxproj.filters.i +data/android/testproject/src/org/libsdl/android/TestActivity.java.i +data/src/thread/generic/SDL_systhread_c.h.i +data/src/joystick/windows/SDL_xinputjoystick_c.h.i +data/visualtest/docs/latex/rwhelper_8c.tex.i +data/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj.i +data/VisualC/tests/testvidinfo/testvidinfo.dsp.i +data/src/joystick/Makefile.wat.i +data/test/test-automation/common/img_face.c.i +data/premake/Xcode/Xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj.i +data/COPYING.i +data/test/shapes/p11_shape8.png.i +data/src/video/Xext/extensions/Xvproto.h.i +data/premake/VisualC/VS2008/tests/testscale/testscale.vcproj.i +data/include/SDL_config_generated.h.in.i +data/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj.i +data/sdl2.pc.in.i +data/premake/VisualC/VS2010/tests/testime/testime.vcxproj.i +data/premake/VisualC/VS2008/tests/testgles/testgles.vcproj.i +data/docs/html/sdldestroymutex.html.i +data/include/SDL_error.h.i +data/src/video/directfb/SDL_DirectFB_events.h.i +data/src/haptic/windows/SDL_xinputhaptic.c.i +data/WhatsNew.i +data/src/thread/nds/SDL_syscond.c.i +data/Makefile.am.i +data/visualtest/docs/html/search/variables_61.html.i +data/Xcode-iOS/Demos/data/bitmapfont/license.txt.i +data/visualtest/configs/testsprite2_geometry/testsprite2_geometry.actions.i +data/src/main/windowsrt/SDL_WinRTApp.h.i +data/src/audio/esd/SDL_esdaudio.c.i +data/include/SDL_config_nds.h.i +data/Xcode-iPhoneOS/Demos/src/mixer.c.i +data/src/video/ps3/spulibs/Makefile.i +data/premake/projects/mixer.lua.i +data/src/video/cocoa/SDL_cocoakeyboard.h.i +data/test/test-automation/src/libtest/fuzzer/fuzzer.h.i +data/src/timer/mint/SDL_systimer.c.i +data/premake/Xcode-iOS/Demos/mixer/mixer.xcodeproj/project.pbxproj.i +data/Xcode/SDL/pkg-support/SDL-devel.info.i +data/docs/man3/SDL_ResizeEvent.3.i +data/src/video/win32/SDL_gapirender_c.h.i +data/test/test-automation/src/libtest/Makefile.am.i +data/test/automated/surface/primitives.c.i +data/Xcode/TemplatesForProjectBuilder/SDL Application/SDLMain.m.i +data/src/video/dummy/SDL_nullmouse.c.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/MyCustomView.h.i +data/premake/projects/testkeys.lua.i +data/src/render/software/SDL_rotate.h.i +data/visualtest/docs/html/search/enums_73.js.i +data/visualtest/docs/html/dir_fe549de2418b81853b5f194edb4a7f34.html.i +data/VisualC/tests/testscale/testscale_VS2012.vcxproj.i +data/src/video/gem/SDL_gemkeyboard.c.i +data/src/audio/dmedia/SDL_irixaudio.c.i +data/VisualC/tests/testgl/testgl.dsp.i +data/src/hermes/.cvsignore.i +data/visualtest/launch_harness.sh.i +data/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/swim.c.i +data/premake/Xcode/build-scripts/build.all.xcode3.x86_64.command.i +data/src/audio/mint/SDL_mintaudio_dma8.h.i +data/src/video/windowsrt/SDL_winrtframebuffer_c.h.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj.i +data/src/video/x11/SDL_x11keyboard.h.i +data/src/events/SDL_keyboard.c.i +data/build-scripts/updaterev.sh.i +data/visualtest/docs/html/screenshot_8c.html.i +data/SDL.spec.in.i +data/test/testmultiaudio.c.i +data/src/thread/epoc/SDL_sysmutex.cpp.i +data/docs/man3/SDL_JoystickOpened.3.i +data/VisualCE/SDLMain/SDLmain.vcproj.i +data/include/SDL_config_windows.h.i +data/docs/man3/SDL_WM_GetCaption.3.i +data/src/thread/psp/SDL_syssem.c.i +data/src/hermes/COPYING.LIB.i +data/src/video/wincommon/SDL_sysmouse.c.i +data/src/video/psp/SDL_pspevents.c.i +data/visualtest/docs/html/_s_d_l__visualtest__sut__configparser_8h_source.html.i +data/build-scripts/acc.sh.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/English.lproj/InfoPlist.strings.i +data/src/thread/beos/SDL_systls.c.i +data/src/loadso/macos/SDL_sysloadso.c.i +data/Xcode/SDLTest/Info-testpalette__Upgraded_.plist.i +data/test/test-automation/Makefile.in.i +data/premake/Xcode/Xcode4/tests/testgesture/testgesture.xcodeproj/project.pbxproj.i +data/src/cdrom/openbsd/Makefile.am.i +data/test/shapes/p14_shape24.png.i +data/premake/VisualC/build-scripts/vs2012.bat.i +data/test/shapes/p13_shape32alpha.bmp.i +data/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj.filters.i +data/visualtest/docs/html/search/search_l.png.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/decls.pbxbtree.i +data/test/loopwavequeue.c.i +data/src/video/x11/SDL_x11events.c.i +data/Xcode/SDL/pkg-support/resources/License.txt.i +data/src/thread/windows/SDL_systls.c.i +data/VisualC-WinRT/tests/loopwave/Package.appxmanifest.i +data/src/video/cocoa/SDL_cocoamessagebox.h.i +data/test/shapes/p13_shape8.bmp.i +data/src/video/x11/imKStoUCS.h.i +data/premake/projects/testrelative.lua.i +data/premake/patches/premake.patches.txt.i +data/src/haptic/windows/SDL_dinputhaptic.c.i +data/android/testproject/jni/importgl.cpp.i +data/test/test-automation/SDL_test.c.i +data/docs/html/sdlgeterror.html.i +data/visualtest/docs/html/search/enumvalues_73.js.i +data/src/video/windx5/SDL_dx5yuv.c.i +data/src/video/wincommon/SDL_wingl_c.h.i +data/docs/man3/SDL_QuitSubSystem.3.i +data/test/automated/surface/surface.h.i +data/src/video/xbios/SDL_xbios_tt.c.i +data/src/video/win32/SDL_win32events.h.i +data/docs/man3/SDL_JoystickClose.3.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/main.c.i +data/visualtest/docs/html/search/all_68.html.i +data/docs/man3/SDL_SaveBMP.3.i +data/README.Porting.i +data/test/testsprite2.c.i +data/visualtest/src/windows/windows_process.c.i +data/test/COPYING.i +data/docs/man3/SDL_JoyAxisEvent.3.i +data/src/libm/e_sqrt.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config.h.default.i +data/premake/VisualC/VS2008/tests/testrendertarget/testrendertarget.vcproj.i +data/premake/VisualC/VS2012/SDL.sln.i +data/src/video/Xext/extensions/xf86dga1.h.i +data/src/hermes/x86p_32.asm.i +data/test/test-automation/src/libtest/common/common.h.i +data/src/video/Xext/extensions/xf86dga1str.h.i +data/src/video/bwindow/SDL_bvideo.h.i +data/src/cdrom/SDL_syscdrom.h.i +data/VisualC/SDLtest/SDLtest_VS2008.vcproj.i +data/src/audio/SDL_mixer_MMX_VC.h.i +data/src/atomic/nds/SDL_atomic.c.i +data/src/main/windowsrt/SDLmain_WinRT_common.h.i +data/visualtest/configs/testsprite2_fullscreen/testsprite2_fullscreen.actions.i +data/src/main/macos/SDL.r.i +data/src/video/os2fslib/SDL_os2fslib.c.i +data/src/video/x11/SDL_x11shape.c.i +data/VisualC-WinRT/tests/testthread/Assets/StoreLogo.png.i +data/docs/html/sdlinit.html.i +data/test/test-automation/configure.ac.i +data/src/test/SDL_test_imageFace.c.i +data/visualtest/docs/html/search/files_72.js.i +data/test/test-automation/tests/test.c.i +data/test/test-automation/src/libtest/xml.h.i +data/VisualC/tests/testgl/testgl_VS2008.vcproj.i +data/src/video/photon/SDL_photon_input.h.i +data/src/main/Makefile.am.i +data/src/video/winrt/SDL_winrtvideo.h.i +data/README-windows.txt.i +data/README-wince.txt.i +data/src/render/opengles2/SDL_render_gles2.c.i +data/docs/html/sdluserevent.html.i +data/src/joystick/iphoneos/SDLUIAccelerationDelegate.m.i +data/visualtest/docs/html/ftv2node.png.i +data/test/testplatform.c.i +data/premake/projects/testiconv.lua.i +data/src/video/cocoa/SDL_cocoaclipboard.m.i +data/docs/html/sdlcreatergbsurface.html.i +data/INSTALL.txt.i +data/src/video/SDL_yuv.c.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/pbxindex.header.i +data/src/thread/symbian/SDL_systhread.cpp.i +data/premake/Xcode/Xcode3/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i +data/src/video/macdsp/SDL_dspvideo.h.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/TemplateInfo.plist.i +data/VisualC/tests/graywin/graywin_VS2008.vcproj.i +data/test/test-automation/testdummy/Makefile.am.i +data/VisualC/SDL/SDL_VS2012_WinRT.vcxproj.filters.i +data/docs/man3/SDL_WaitThread.3.i +data/docs/html/sdlloadwav.html.i +data/Watcom-Win32.zip.i +data/Xcode/SDLTest/Info-testmousetablet.plist.i +data/src/video/Xext/XME/.cvsignore.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app.dSYM/Contents/Info.plist.i +data/premake/util/sdl_gen_config.lua.i +data/src/joystick/windows/SDL_dinputjoystick.c.i +data/visualtest/docs/html/_s_d_l__visualtest__mischelper_8h_source.html.i +data/include/SDL_name.h.i +data/src/cdrom/macosx/Makefile.am.i +data/Xcode/SDLTest/libsdlmain_prefix.h.i +data/src/video/win32/SDL_win32mouse.c.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/SDL Custom Cocoa App.pbproj/TemplateInfo.i +data/docs/html/guidetimeexamples.html.i +data/Xcode/TemplatesForProjectBuilder/SDL Application/SDL App.pbproj/project.pbxproj.i +data/src/video/mir/SDL_mirframebuffer.c.i +data/README.pandora.i +data/test/aclocal.m4.i +data/docs/man3/SDL_FreeYUVOverlay.3.i +data/test/testautomation_render.c.i +data/src/thread/generic/SDL_syscond_c.h.i +data/src/video/cybergfx/SDL_amigaevents.c.i +data/include/SDL_egl.h.i +data/premake/Xcode/Xcode3/tests/testver/testver.xcodeproj/project.pbxproj.i +data/src/thread/symbian/SDL_systhread_c.h.i +data/test/tests/testplatform.c.i +data/src/audio/sdlgenaudiocvt.pl.i +data/test/testalpha.c.i +data/test/test-automation/tests/testrwops/TestSupportRWops.h.i +data/VisualC/tests/testpower/testpower_VS2008.vcproj.i +data/test/tests/testrwops.c.i +data/premake/VisualC/VS2012/tests/testautomation/testautomation.vcxproj.filters.i +data/VisualC/tests/testshape/testshape.vcxproj.i +data/premake/VisualC/VS2008/tests/testautomation/testautomation.vcproj.i +data/src/audio/arts/SDL_artsaudio.c.i +data/src/video/android/SDL_androidvideo.h.i +data/test/test-automation/autogen.sh.i +data/src/audio/esd/Makefile.am.i +data/VisualC/tests/automated/automated.vcxproj.user.i +data/src/video/photon/SDL_photon.h.i +data/VisualC/tests/testoverlay2/testoverlay2_VS2013.vcxproj.i +data/docs/html/sdldisplayformatalpha.html.i +data/src/video/ataricommon/SDL_ataridevmouse.c.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/main.c.i +data/src/render/software/SDL_drawpoint.c.i +data/src/video/ps3/SDL_ps3render_c.h.i +data/src/video/Xext/XmuStdCmap/Distinct.c.i +data/touchTest/touchSimp.c~.i +data/include/SDL_config_win32.h.i +data/visualtest/docs/html/search/files_61.html.i +data/doc/README-linux.md.i +data/src/core/android/SDL_android.cpp.i +data/test/shapes/p02_shape8alpha.png.i +data/src/thread/windows/win_ce_semaphore.c.i +data/src/video/quartz/SDL_QuartzYUV.m.i +data/visualtest/docs/html/search/all_76.html.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/categories.pbxbtree.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/SDLMain.m.i +data/src/audio/ums/.cvsignore.i +data/include/SDL_opengl_glext.h.d +data/visualtest/docs/html/search/all_69.html.i +data/docs/html/sdlwmseticon.html.i +data/android/testproject/jni/eglnatives.h.i +data/src/video/windows/SDL_windowsclipboard.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.m.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/src/video/svga/SDL_svgamouse.c.i +data/build-scripts/naclbuild.sh.i +data/src/video/ipod/SDL_ipodvideo.c.i +data/src/video/wscons/SDL_wsconsmouse_c.h.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/TemplateInfo.plist.i +data/VisualC-WinRT/tests/loopwave/Assets/SplashScreen.png.i +data/premake/VisualC/VS2008/tests/testrumble/testrumble.vcproj.i +data/src/thread/riscos/SDL_syssem.c.i +data/docs/html/sdlvideoinfo.html.i +data/src/video/android/SDL_androidclipboard.c.i +data/VisualC/tests/testwin/testwin.vcproj.i +data/src/video/windowsrt/DirectXHelper.h.i +data/premake/Xcode/Xcode4/tests/testthread/testthread.xcodeproj/project.pbxproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_quit.h.i +data/src/SDL.c.i +data/EXCLUDE/GLTSF/include/Window_Listener.hpp.i +data/docs/man3/SDL_JoystickGetHat.3.i +data/test/test-automation/src/libSDLtest/logger_helpers.h.i +data/test/test-automation/testrwops/testrwops.c.i +data/src/video/android/eglplatform.h.i +data/src/render/software/SDL_blendline.c.i +data/src/joystick/dc/.cvsignore.i +data/src/video/x11/SDL_x11mouse.h.i +data/test/test-automation/acinclude/lt~obsolete.m4.i +data/test/test-automation/asserts.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_joystick.h.i +data/src/main/psp/SDL_psp_main.c.i +data/touchTest/gestureSDLTest.c.i +data/src/joystick/android/SDL_sysjoystick.c.i +data/premake/VisualC/VS2012/tests/testloadso/testloadso.vcxproj.filters.i +data/src/video/Xext/extensions/xf86dga.h.i +data/premake/projects/testime.lua.i +data/src/main/macosx/SDL_main.h.i +data/docs/man3/SDL_MixAudio.3.i +data/include/SDL_haptic.h.i +data/VisualC/tests/automated/automated.vcxproj.i +data/Xcode/SDLTest/Info-testdraw2.plist.i +data/test/test-automation/acinclude/ltversion.m4.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib.i +data/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj.i +data/configure.in.i +data/src/video/photon/SDL_ph_wm_c.h.i +data/Xcode/SDLTest/Info-testintersections.plist.i +data/src/video/win32/SDL_vkeys.h.i +data/test/test-automation/xml.h.i +data/configure.in.d +data/test/nds-test/nds-test.elf.d +data/src/SDL_getenv.c.i +data/premake/VisualC/VS2012/tests/testgesture/testgesture.vcxproj.i +data/visualtest/docs/html/variator__common_8c.html.i +data/premake/Xcode/Xcode3/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i +data/src/cdrom/freebsd/.cvsignore.i +data/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj.filters.i +data/docs/html/sdlsetalpha.html.i +data/Xcode-iOS/Demos/data/space.bmp.i +data/src/thread/riscos/SDL_syscond.c.i +data/test/test-automation/tests/testsurface/testsurface.c.i +data/VisualC/tests/testscale/testscale_VS2013.vcxproj.i +data/Xcode-iOS/Demos/data/space.bmp.d +data/docs/html/sdlfreeyuvoverlay.html.i +data/src/video/symbian/EKA2/dsa_new.cpp.i +data/test/shapes/p10_shape24.png.i +data/docs/man3/SDL_ShowCursor.3.i +data/android-project/build.properties.i +data/visualtest/docs/html/_s_d_l__visualtest__random__variator_8h_source.html.i +data/test/axis.bmp.i +data/Xcode/SDLTest/Info-testgl__Upgraded_.plist.i +data/VisualC/tests/testwm/testwm_VS2010.vcxproj.i +data/VisualC/tests/testpower/testpower_VS2005.vcproj.i +data/premake/VisualC/VS2012/SDL2test/SDL2test.vcxproj.filters.i +data/src/video/SDL_blit_slow.h.i +data/src/video/xbios/SDL_xbios_f30.c.i +data/XCodeiPhoneOS/SDL/SDLiPhoneOS.xcodeproj/project.pbxproj.i +data/TEST6.txt.i +data/include/SDL_quit.h.i +data/src/video/os2fslib/SDL_os2fslib.h.i +data/src/video/SDL_blit_N.c.d +data/XCodeiPhoneOS/Demos/data/icon.bmp.i +data/docs/html/sdlwmgetcaption.html.i +data/VisualC/tests/testvidinfo/testvidinfo_VS2008.vcproj.i +data/src/video/SDL_blit_N.c.i +data/src/audio/macosx/SDL_coreaudio.c.i +data/src/video/win32/SDL_d3drender.c.i +data/src/video/e_pow.h.i +data/android-project/res/drawable-xxhdpi/ic_launcher.png.i +data/test/shapes/p14_shape8.png.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/MyCustomWindow.h.i +data/android/testproject/jni/importgl.c.i +data/test/nds-test-progs/sprite/Makefile.i +data/docs/html/sdlunlockyuvoverlay.html.i +data/VisualC/tests/testwm/testwm_VS2005.vcproj.i +data/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj.filters.i +data/docs/man3/SDL_SemTryWait.3.i +data/docs/html/sdlglgetprocaddress.html.i +data/VisualC/tests/testplatform/testplatform.dsp.i +data/src/main/macosx/SDLMain.nib/classes.nib.i +data/Xcode/SDLTest/sdlcommon_prefix.h.i +data/visualtest/docs/html/nav_g.png.i +data/EXCLUDE/GLIMM/GLIMM.vcproj.i +data/src/stdlib/.cvsignore.i +data/premake/Xcode/build-scripts/premake4.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-project-headers.hmap.i +data/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj.filters.i +data/acinclude.m4.i +data/src/video/wincommon/Makefile.am.i +data/src/video/fbcon/SDL_fbmouse.c.i +data/acinclude.m4.d +data/Xcode-iPhoneOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/debian/rules.i +data/src/core/linux/SDL_udev.h.i +data/src/cdrom/macosx/AudioFileReaderThread.c.i +data/premake/VisualC/build-scripts/clean_premake.bat.i +data/src/render/direct3d11/SDL_render_d3d11_winrthelpers.cpp.i +data/docs/man3/SDL_SemWait.3.i +data/src/timer/dummy/SDL_systimer.c.i +data/premake/util/sdl_check_compile.lua.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/Objects-normal/i386/___PROJECTNAME___.LinkFileList.i +data/premake/VisualC/VS2010/tests/testspriteminimal/testspriteminimal.vcxproj.i +data/docs/html/sdlflip.html.i +data/src/video/e_log.h.i +data/src/video/maccommon/SDL_mackeys.h.i +data/VisualCE/SDL/SDL.vcproj.i +data/premake/Xcode/Xcode4/tests/testresample/testresample.xcodeproj/project.pbxproj.i +data/test/testvidinfo.c.i +data/touchTest/touchTest2/touchTest2/SDL.dll.d +data/premake/Xcode/Xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i +data/VisualC/tests/testcursor/testcursor_VS2008.vcproj.i +data/src/video/directfb/SDL_DirectFB_modes.c.i +data/VisualC-WinRT/SDL/SDL-WinRT_VS2012.vcxproj.i +data/visualtest/docs/html/search/defines_74.js.i +data/include/SDL_scalemode.h.i +data/src/events/SDL_events_c.h.i +data/src/video/xbios/SDL_xbiosmodes.h.i +data/docs/man3/SDL_JoystickEventState.3.i +data/src/video/Xext/extensions/Makefile.am.i +data/src/thread/nds/SDL_syssem.c.i +data/include/SDL_filesystem.h.i +data/src/touchscreen/nds/SDL_systouchscreen.c.i +data/src/video/SDL_glfuncs.h.i +data/src/render/nds/SDL_ndsrender.c.i +data/Xcode/SDLTest/Info-testmultiaudio.plist.i +data/premake/config/SDL_config_macosx.template.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_name.h.i +data/VisualC/SDL/SDL.vcxproj.i +data/VisualC/tests/testautomation/testautomation_vs2012.vcxproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_opengl.h.i +data/docs/man3/SDL_CreateYUVOverlay.3.i +data/EXCLUDE/GLIMM/src/Main.cpp.i +data/test/test-automation/src/libtest/xml.c.i +data/Xcode/SDLTest/Info-testoverlay__Upgraded_.plist.i +data/visualtest/docs/html/search/variables_69.html.i +data/premake/VisualC/VS2012/tests/testoverlay2/testoverlay2.vcxproj.filters.i +data/VisualC/tests/testjoystick/testjoystick_VS2008.vcproj.i +data/src/video/nacl/SDL_naclevents.c.i +data/visualtest/docs/html/_s_d_l__visualtest__variator__common_8h.html.i +data/src/audio/disk/SDL_diskaudio.c.i +data/touchTest/touchTest2/touchTest2.sln.i +data/test/nds-test-progs/sprite2/source/testsprite2.c.i +data/src/video/glesrenderer/SDL_glesfuncs.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/src/video/x11/SDL_x11render.h.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/whale.c.i +data/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj.filters.i +data/test/shapes/p13_shape24.bmp.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/VisualCE/testalpha/testalpha.vcp.i +data/premake/projects/fireworks.lua.i +data/premake/VisualC/VS2010/tests/testgles/testgles.vcxproj.filters.i +data/src/video/x11/SDL_x11clipboard.h.i +data/test/test-automation/tests/testsyswm/testsyswm.c.i +data/src/thread/epoc/SDL_syssem.cpp.i +data/include/SDL_config_macosx.h.i +data/src/video/nanox/Makefile.am.i +data/docs/man3/SDL_FreeWAV.3.i +data/src/audio/mint/SDL_mintaudio.h.i +data/src/main/arch.c.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.WindowsPhone.vcxproj.filters.i +data/docs/man3/SDL_AudioSpec.3.i +data/XCodeiPhoneOS/Demos/Info.plist.i +data/src/audio/coreaudio/SDL_coreaudio.c.i +data/premake/projects/SDL2main.lua.i +data/src/audio/emscripten/SDL_emscriptenaudio.c.i +data/include/SDL_platform.h.i +data/docs/README-emscripten.md.i +data/src/video/fbcon/SDL_fbriva.h.i +data/src/video/mir/SDL_mirmouse.c.i +data/src/audio/mint/.cvsignore.i +data/premake/VisualC/build-scripts/build.all.vs2010.bat.i +data/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.config.i +data/docs/man3/SDL_LockYUVOverlay.3.i +data/VisualC/tests/testdraw2/testdraw2_VS2013.vcxproj.i +data/doc/README-winrt.md.i +data/docs/man3/SDL_GetRelativeMouseState.3.i +data/src/video/macrom/SDL_romvideo.h.i +data/test/shapes/p10_shape8.bmp.i +data/docs/html/sdlcreateyuvoverlay.html.i +data/src/thread/pth/SDL_systhread_c.h.i +data/test/test-automation/fuzzer/utl_random.c.i +data/debian/copyright.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/Info.plist.i +data/test/tests/testrect.c.i +data/src/audio/esd/SDL_esdaudio.h.i +data/src/video/wincommon/SDL_syswm.c.i +data/CREDITS.txt.i +data/src/video/gapi/.cvsignore.i +data/Makefile.android.i +data/VisualCE.zip.d +data/docs/html/guideaboutsdldoc.html.i +data/VisualC/tests/testwin/testwin.vcxproj.user.i +data/test/automated/common/images.h.i +data/src/timer/mint/SDL_vbltimer_s.h.i +data/docs/html/sdlpauseaudio.html.i +data/VisualCE.zip.i +data/src/endian/Makefile.wat.i +data/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj.filters.i +data/src/video/bwindow/SDL_BView.h.i +data/premake/projects/testatomic.lua.i +data/src/video/nds/SDL_ndsrender.c.i +data/premake/VisualC/VS2010/tests/testgl2/testgl2.vcxproj.filters.i +data/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj.i +data/VisualC/tests/testpower/testpower_VS2013.vcxproj.i +data/src/video/Xext/extensions/Xv.h.i +data/visualtest/docs/html/struct_s_d_l_visual_test___variation.html.i +data/VisualC/SDLmain/SDLmain.vcxproj.i +data/src/video/epoc/SDL_epocevents.cpp.i +data/test/Makefile.wat.i +data/VisualC/tests/testoverlay/testoverlay_VS2005.vcproj.i +data/src/thread/psp/SDL_sysmutex.c.i +data/src/audio/alsa/Makefile.am.i +data/Xcode/SDL/pkg-support/resources/SDL_DS_Store.i +data/src/events/SDL_events.c.i +data/src/video/dga/SDL_dgamouse.c.i +data/docs/html/guideaudioexamples.html.i +data/src/thread/linux/SDL_sysmutex.c.i +data/visualtest/configs/testsprite2_geometry/testsprite2_geometry.config.i +data/src/audio/mint/SDL_mintaudio_dma8.c.i +data/src/cdrom/macosx/CDPlayer.cpp.i +data/src/audio/amigaos/SDL_audio.c.i +data/premake/VisualC/VS2010/tests/testtimer/testtimer.vcxproj.filters.i +data/docs/README-macosx.md.i +data/doc/README-hg.md.i +data/src/video/SDL_leaks.h.i +data/test/test-automation/INSTALL.i +data/VisualC/tests/checkkeys/checkkeys.dsp.i +data/src/thread/irix/SDL_syssem.c.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/SDL Cocoa App.pbproj/TemplateInfo.plist.i +data/build-scripts/strip_fPIC.sh.i +data/visualtest/docs/html/search/classes_73.js.i +data/visualtest/docs/html/search/mag_sel.png.i +data/visualtest/src/sut_configparser.c.i +data/visualtest/docs/html/tab_h.png.i +data/README.Win32.i +data/src/video/win32/SDL_gapirender.h.i +data/src/render/software/SDL_renderer_sw_c.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLApp_Prefix.pch.i +data/src/audio/SDL_sysaudio.h.i +data/VS2012.patch.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/English.lproj/InfoPlist.strings.i +data/premake/Cygwin/build-scripts/cygwin.bat.i +data/test/test-automation/testrect/Makefile.am.i +data/src/video/riscos/.cvsignore.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-all-target-headers.hmap.i +data/visualtest/docs/latex/_s_d_l__visualtest__random__variator_8h.tex.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib.i +data/premake/VisualC/VS2012/tests/testatomic/testatomic.vcxproj.filters.i +data/src/thread/stdcpp/SDL_systhread.cpp.i +data/premake/Xcode/Xcode3/tests/testmultiaudio/testmultiaudio.xcodeproj/project.pbxproj.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app.dSYM/Contents/Resources/DWARF/___PROJECTNAME___.i +data/test/test-automation/include/SDL_test.h.i +data/README.wscons.i +data/src/video/windowsrt/CubeRenderer.h.i +data/src/events/scancodes_darwin.h.i +data/premake/Cygwin/build-scripts/premake4.exe.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/Info.plist.i +data/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav.i +data/EXCLUDE/GLIMM/include/Video_Mode.hpp.i +data/Xcode-iOS/Demos/README.i +data/VisualC/tests/testpower/testpower.vcxproj.user.i +data/src/timer/beos/SDL_systimer.c.i +data/visualtest/docs/html/search/all_6e.js.i +data/android/testproject/build.xml.i +data/src/audio/dsp/Makefile.am.i +data/src/video/haiku/SDL_bkeyboard.cc.i +data/test/testlock.c.i +data/premake/VisualC/VS2010/tests/checkkeys/checkkeys.vcxproj.i +data/src/video/wincommon/SDL_sysevents.c.i +data/src/render/software/SDL_blendfillrect.c.i +data/premake/Xcode/Xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj.i +data/src/audio/riscos/.cvsignore.i +data/docs/man3/SDL_SetClipRect.3.i +data/doc/README-touch.md.i +data/Xcode/SDL/pkg-support/resources/UniversalBinaryNotes.rtf.i +data/docs/html/sdlwmsetcaption.html.i +data/visualtest/docs/latex/files.tex.i +data/src/hermes/mmx_main.asm.i +data/premake/Cygwin/build-scripts/clean_premake.bat.i +data/src/timer/dc/SDL_systimer.c.i +data/src/video/wayland/SDL_waylandopengles.h.i +data/docs/README-windows.md.i +data/docs/html/video.html.i +data/VisualC-WinRT/tests/loopwave/Assets/SmallLogo.png.i +data/src/video/xbios/SDL_xbios_centscreen.c.i +data/src/libm/k_tan.c.i +data/src/thread/win32/SDL_systhread_c.h.i +data/src/video/riscos/SDL_riscosvideo.c.i +data/test/test-automation/src/libtest/fuzzer/utl_random.c.i +data/premake/VisualC/VS2010/tests/teststreaming/teststreaming.vcxproj.filters.i +data/src/video/android/SDL_androidtouch.c.i +data/src/SDL_hints.c.i +data/VisualC/tests/testalpha/testalpha_VS2010.vcxproj.i +data/src/video/x11/SDL_x11dga.c.i +data/docs/man3/SDL_JoystickName.3.i +data/test/testcursor.c.i +data/src/cpuinfo/scitech.mac.i +data/Xcode/SDL/pkg-support/codesign-frameworks.sh.i +data/Xcode-iPhoneOS/Demos/data/ship.bmp.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib.i +data/README-dynapi.txt.i +data/src/core/winrt/SDL_winrtapp_common.cpp.i +data/premake/VisualC/VS2010/tests/testmultiaudio/testmultiaudio.vcxproj.i +data/src/video/SDL_egl_c.h.i +data/test/test-automation/fuzzer/utl_md5.c.i +data/README.iphoneos.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/English.lproj/SDLMain.nib/objects.nib.i +data/test/automated/common/img_blitblend.c.i +data/android/testproject/build.properties.i +data/src/events/SDL_quit.c.i +data/src/video/qtopia/SDL_QWin.cc.i +data/src/joystick/iphoneos/SDL_sysjoystick_c.h.i +data/src/video/gtk/SDL_gtkmouse_c.h.i +data/src/video/mir/SDL_mirvideo.c.i +data/test/testcpuinfo.c.i +data/test/testautomation_clipboard.c.i +data/src/video/cocoa/SDL_cocoawindow.m.i +data/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj.filters.i +data/VisualC/tests/testoverlay/testoverlay.vcxproj.user.i +data/src/libm/k_rem_pio2.c.i +data/Xcode/SDL/pkg-support/resources/License.rtf.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/cdecls.pbxbtree.i +data/Xcode/TemplatesForProjectBuilder/SDL Cocoa Application/SDL Cocoa App.pbproj/project.pbxproj.i +data/Xcode/SDLTest/Info-testfile.plist.i +data/src/render/opengl/SDL_glfuncs.h.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/atlantis/atlantis.c.i +data/visualtest/docs/html/search/defines_64.html.i +data/src/video/nanox/SDL_nxmodes_c.h.i +data/docs/man3/SDL_LockAudio.3.i +data/src/audio/SDL_audiocvt.c.i +data/doc/README.md.i +data/VisualC/tests/loopwave/WinRT/loopwave_VS2012_WinRT.vcxproj.i +data/src/joystick/darwin/SDL_sysjoystick_c.h.i +data/visualtest/docs/html/search/all_6c.html.i +data/src/video/cybergfx/SDL_cgximage_c.h.i +data/premake/Xcode/build-scripts/run.tests.command.i +data/src/video/SDL_rendercopy.c.i +data/src/file/SDL_rwops.c.i +data/Xcode-iPhoneOS/Template/SDL Application/Info.plist.i +data/src/audio/bsd/.cvsignore.i +data/test/test-automation/src/libSDLtest/xml_logger.h.i +data/visualtest/docs/html/search/defines_6d.js.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/Info.plist.i +data/test/test-automation/acinclude/libtool.m4.i +data/sdl2-config.cmake.in.i +data/src/audio/openbsd/.cvsignore.i +data/premake/VisualC/VS2012/tests/testsem/testsem.vcxproj.filters.i +data/visualtest/docs/html/search/variables_6d.js.i +data/src/video/mx6/SDL_mx6events.c.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/strings.pbxstrings/strings.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config_iphoneos.h.i +data/test/testshader.c.i +data/src/audio/dc/Makefile.am.i +data/VisualC-WinRT/tests/loopwave/Assets/StoreLogo.png.i +data/test/test-automation/build-scripts/depcomp.i +data/src/thread/psp/SDL_systhread.c.i +data/src/video/android/SDL_androidwindow.c.i +data/test/testdrawchessboard.c.i +data/docs/html/sdlcdopen.html.i +data/docs/html/sdlcloseaudio.html.i +data/src/render/opengl/SDL_shaders_gl.h.i +data/src/video/windib/SDL_dibevents_c.h.i +data/src/video/directfb/SDL_DirectFB_window.c.i +data/VisualC/tests/graywin/graywin_VS2010.vcxproj.i +data/test/test-automation/src/libtest/logger_helpers.c.i +data/src/SDL_compat.c.i +data/src/events/scancodes_xfree86.h.i +data/premake/VisualC/VS2008/tests/testatomic/testatomic.vcproj.i +data/premake/VisualC/VS2010/tests/testfile/testfile.vcxproj.filters.i +data/src/video/SDL_shape.c.i +data/premake/Xcode/Xcode3/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i +data/VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj.i +data/src/video/Xext/Xinerama/.cvsignore.i +data/include/SDL_endian.h.i +data/visualtest/docs/Doxyfile.i +data/XCodeiPhoneOS/Demos/data/bitmapfont/license.txt.i +data/src/cpuinfo/README.i +data/test/test-automation/testaudio/testaudio.c.i +data/src/thread/windows/SDL_systhread.c.i +data/src/thread/SDL_systhread.h.i +data/premake/VisualC/VS2012/tests/testspriteminimal/testspriteminimal.vcxproj.filters.i +data/src/video/Xext/extensions/extutil.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_syswm.h.i +data/src/video/ataricommon/SDL_xbiosmouseevents.c.i +data/src/libm/s_sin.c.i +data/src/video/ataricommon/SDL_ataric2p_s.h.i +data/src/cdrom/macosx/AudioFilePlayer.h.i +data/docs/man3/SDL_OpenAudio.3.i +data/src/video/SDL_alphamult.h.i +data/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj.i +data/premake/Xcode/build-scripts/xcode4.command.i +data/src/main/windowsrt/SimpleVertexShader.hlsl.i +data/docs/html/sdlthreadid.html.i +data/src/video/SDL_yuv_sw_c.h.i +data/docs/html/sdlcreatecursor.html.i +data/VisualC/SDL.sln.i +data/src/thread/generic/SDL_systls.c.i +data/docs/html/guidevideoexamples.html.i +data/src/video/x11/SDL_x11sym.h.i +data/include/SDL_opengl_glext.h.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.WindowsPhone.vcxproj.i +data/src/video/mir/SDL_mirsym.h.i +data/src/audio/ums/SDL_umsaudio.c.i +data/premake/README-ios.txt.i +data/visualtest/docs/html/closed.png.i +data/test/testver.c.i +data/src/video/e_sqrt.h.i +data/premake/Xcode/Xcode4/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i +data/src/video/x11/SDL_x11touch.c.i +data/VisualC-WinRT/tests/loopwave/loopwave_VS2012_TemporaryKey.pfx.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/English.lproj/InfoPlist.strings.i +data/CMakeLists.txt.i +data/src/audio/mme/Makefile.am.i +data/src/video/emscripten/SDL_emscriptenevents.h.i +data/Xcode/SDLTest/Info-testsprite__Upgraded_.plist.i +data/build-scripts/android_libs/libEGL.so.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/English.lproj/InfoPlist.strings.i +data/src/stdlib/SDL_iconv.c.i +data/premake/Xcode/Xcode4/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i +data/src/haptic/linux/SDL_syshaptic.c.i +data/visualtest/docs/html/_s_d_l__visualtest__process_8h.html.i +data/visualtest/docs/html/search/defines_6b.html.i +data/test/test-automation/src/libSDLtest/fuzzer/utl_md5.c.i +data/test/shapes/p06_shape24.png.i +data/cmake/sdlchecks.cmake.i +data/docs/man3/SDL_CD.3.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/SDL OpenGL App.pbproj/TemplateInfo.plist.i +data/test/test-automation/tests/testsyswm/Makefile.am.i +data/src/video/x11/SDL_x11window.h.i +data/premake/VisualC/VS2010/tests/testfilesystem/testfilesystem.vcxproj.i +data/docs/man3/SDL_GL_GetAttribute.3.i +data/src/video/emscripten/SDL_emscriptenopengles.c.i +data/premake/Xcode-iOS/SDL.xcworkspace/contents.xcworkspacedata.i +data/include/SDL_opengles2_khrplatform.h.i +data/docs/README-platforms.md.i +data/src/libm/math_libm.h.i +data/src/joystick/dummy/SDL_sysjoystick.c.i +data/visualtest/docs/html/struct_s_d_l_visual_test___r_w_helper_buffer.html.i +data/premake/VisualC/VS2012/tests/testresample/testresample.vcxproj.filters.i +data/src/video/Xext/Xv/.cvsignore.i +data/premake/projects/testrumble.lua.i +data/src/video/Xext/XmuStdCmap/AllCmap.c.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/SDLMain.h.i +data/test/automated/SDL_at.h.i +data/visualtest/docs/html/sync_on.png.i +data/EXCLUDE/GLIMM/include/Window.hpp.i +data/src/timer/SDL_systimer.h.i +data/src/joystick/emscripten/SDL_sysjoystick.c.i +data/premake/Xcode/Xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj.i +data/test/testtimer.c.i +data/src/hermes/mmxp2_32.asm.i +data/test/automated/render/render.c.i +data/VisualC-WinRT/SDL2main-WinRT-NonXAML.nuspec.i +data/src/video/Xext/Xv/Makefile.am.i +data/src/render/direct3d/SDL_d3drender.c.i +data/src/events/SDL_keyboard_c.h.i +data/XCodeiPhoneOS/Test/TestiPhoneOS.xcodeproj/hfutrell.mode1v3.i +data/test/test-automation/tests/testrwops/read.i +data/src/video/x11/SDL_x11modes.h.i +data/test/icon.bmp.i +data/docs/html/sdlsempost.html.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/protocols.pbxbtree.i +data/Xcode/TemplatesForProjectBuilder/SDL Application/SDLMain.h.i +data/src/thread/generic/SDL_systhread.c.i +data/src/video/picogui/SDL_pgvideo.h.i +data/src/audio/baudio/SDL_beaudio.h.i +data/VisualC/tests/testsprite2/testsprite2_VS2012.vcxproj.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/SDLCustomCocoaApp.xcodeproj/TemplateInfo.plist.i +data/doc/README-psp.md.i +data/src/cdrom/win32/Makefile.am.i +data/README.RISCOS.i +data/src/timer/win32/SDL_systimer.c.i +data/src/video/Xext/.cvsignore.i +data/src/video/gtk/SDL_gtkvideo.c.i +data/XCodeiPhoneOS/Demos/data/stroke.bmp.i +data/test/test-automation/plain_logger.h.i +data/src/video/vgl/Makefile.am.i +data/src/power/uikit/SDL_syspower.h.i +data/VisualC/tests/checkkeys/checkkeys.vcxproj.i +data/src/video/nanox/SDL_nxmodes.c.i +data/visualtest/docs/html/search/all_64.html.i +data/src/audio/mint/SDL_mintaudiointerrupt_s.h.i +data/test/shapes/p10_shape32alpha.png.i +data/test/shapes/p07_shape8alpha.png.i +data/docs/man3/SDL_CondWait.3.i +data/VisualC/tests/testgles2/testgles2_VS2013.vcxproj.i +data/src/video/x11/.cvsignore.i +data/premake/Xcode/Xcode4/tests/testfilesystem/testfilesystem.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/project.pbxproj.i +data/test/test-automation/tests/asserts.h.i +data/docs/man3/SDL_CDName.3.i +data/docs/man3/SDL_Surface.3.i +data/src/render/SDL_render.c.i +data/visualtest/docs/html/globals_defs.html.i +data/src/audio/baudio/.cvsignore.i +data/src/video/vgl/SDL_vglmouse_c.h.i +data/mkinstalldirs.i +data/src/video/riscos/SDL_riscosFullScreenVideo.c.i +data/src/video/quartz/SDL_QuartzWindow.m.i +data/src/video/directfb/.cvsignore.i +data/test/testkeys.c.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/Info.plist.i +data/docs/man3/SDL_SetGamma.3.i +data/docs/html/sdlsetcursor.html.i +data/src/thread/bsdi/SDL_syssem.c.i +data/premake/Xcode/Xcode3/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i +data/test/test-automation/testrender/Makefile.am.i +data/src/video/wayland/SDL_waylandtouch.h.i +data/src/video/uikit/SDL_uikitmessagebox.m.i +data/src/video/epoc/Makefile.am.i +data/premake/VisualC/VS2012/SDL2main/SDL2main.vcxproj.filters.i +data/VisualC/tests/testwin/testwin_VS2008.vcproj.i +data/test/nds-test/source/main.c.i +data/premake/VisualC/VS2008/tests/testnative/testnative.vcproj.i +data/src/audio/SDL_mixer_m68k.h.i +data/docs/html/sdlglsetattribute.html.i +data/test/testgl.c.i +data/build-scripts/ltmain.sh.d +data/visualtest/docs/latex/mischelper_8c.tex.i +data/Xcode/TemplatesForProjectBuilder/SDL Application/English.lproj/InfoPlist.strings.i +data/visualtest/docs/html/search/variables_63.html.i +data/BUGS.txt.i +data/src/cdrom/Makefile.am.i +data/VisualC/tests/testpalette/testpalette_VS2008.vcproj.i +data/build-scripts/ltmain.sh.i +data/docs/html/sdlcd.html.i +data/aclocal.m4.i +data/Makefile.pandora.i +data/src/joystick/amigaos/.cvsignore.i +data/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj.i +data/test/testautomation.c.i +data/test/test-automation/src/libSDLtest/common/common.c.i +data/visualtest/Makefile.in.i +data/premake/VisualC/VS2008/tests/testgl2/testgl2.vcproj.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/SDLMain.m.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/SDLMain.m.i +data/test/testautomation_video.c.i +data/test/testhotplug.c.i +data/src/audio/SDL_mixer_MMX.c.i +data/test/shapes/p03_shape8.bmp.i +data/test/shapes/p07_shape24.png.i +data/docs/man3/SDL_WM_SetCaption.3.i +data/src/video/epoc/SDL_epocvideo.h.i +data/visualtest/docs/html/search/variables_61.js.i +data/visualtest/docs/html/search/search_m.png.i +data/test/test-automation/src/libtest/fuzzer/utl_crc32.h.i +data/docs/man3/SDL_QuitEvent.3.i +data/include/SDL_opengles2.h.i +data/src/video/SDL_shape_internals.h.i +data/VisualC/tests/testgl2/testgl2_VS2012.vcxproj.i +data/src/video/psp/SDL_pspgl_c.h.i +data/visualtest/testsprite2_sample.actions.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLApp_Prefix.pch.i +data/VisualC/tests/testgamma/testgamma.dsp.i +data/test/automated/README.i +data/src/video/photon/SDL_photon_input.c.i +data/premake/VisualC/VS2008/tests/testrendercopyex/testrendercopyex.vcproj.i +data/README.android.i +data/src/main/windowsrt/Direct3DBase.h.i +data/visualtest/docs/html/search/search.css.i +data/src/audio/macrom/Makefile.am.i +data/VisualC-WinRT/tests/testthread/Assets/SplashScreen.png.i +data/include/SDL_opengles.h.i +data/premake/projects/testsprite2.lua.i +data/premake/Linux/build-scripts/premake4.i +data/premake/VisualC/VS2008/tests/testfilesystem/testfilesystem.vcproj.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_mouse.h.i +data/premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj.i +data/src/video/windx5/.cvsignore.i +data/premake/VisualC/VS2012/SDL2/SDL2.vcxproj.filters.i +data/visualtest/docs/html/struct_s_d_l_visual_test___action.html.i +data/premake/projects/testsem.lua.i +data/src/video/nanox/.cvsignore.i +data/docs/html/sdljoysticknumaxes.html.i +data/premake/VisualC/VS2012/tests/testime/testime.vcxproj.filters.i +data/docs/man3/Makefile.am.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_mutex.h.i +data/include/SDL_active.h.i +data/src/main/windowsrt/SDL_WinRTApp.cpp.i +data/Xcode/SDLTest/Info-testatomic.plist.i +data/premake/VisualC/VS2012/tests/testsprite2/testsprite2.vcxproj.filters.i +data/src/video/Xext/README.i +data/src/video/symbian/SDL_epocevents_c.h.i +data/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj.filters.i +data/src/video/ps3/SDL_ps3events_c.h.i +data/premake/projects/testhaptic.lua.i +data/docs/man3/SDL_PumpEvents.3.i +data/src/video/gem/SDL_gemmouse.c.i +data/visualtest/docs/html/search/files_68.js.i +data/src/video/Xext/extensions/xf86dgastr.h.i +data/src/video/haiku/SDL_BWin.h.i +data/src/audio/nds/SDL_ndsaudio.c.i +data/src/video/x11/SDL_x11image_c.h.i +data/visualtest/docs/html/search/variables_65.js.i +data/test/shapes/p06_shape24.bmp.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/SDLMain.h.i +data/docs/html/sdlgetrgb.html.i +data/include/SDL_atomic.h.i +data/include/SDL_opengles2_gl2.h.i +data/Xcode/SDLTest/Info-testgamma__Upgraded_.plist.i +data/src/video/uikit/SDL_uikitopengles.m.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_keysym.h.i +data/visualtest/docs/html/search/variables_76.html.i +data/android/project/res/layout/main.xml.i +data/visualtest/src/harness_argparser.c.i +data/android-project/res/drawable-hdpi/icon.png.i +data/src/dynapi/SDL_dynapi.c.i +data/include/SDL.h.i +data/include/SDL_stdinc.h.i +data/docs/html/sdlnumjoysticks.html.i +data/src/video/nds/SDL_ndsevents.c.i +data/src/video/qnxgf/SDL_hiddi_joystick.h.i +data/src/video/maccommon/.cvsignore.i +data/src/video/ps2gs/SDL_gskeys.h.i +data/premake/VisualC/VS2010/tests/testrumble/testrumble.vcxproj.i +data/visualtest/install-sh.i +data/CWprojects.sea.bin.d +data/EXCLUDE/GLIMM/include/Window_Listener.hpp.i +data/docs/doxyfile.i +data/CWprojects.sea.bin.i +data/src/video/xbios/SDL_xbios_st.c.i +data/src/core/winrt/SDL_winrtapp_xaml.h.i +data/premake/Xcode/Xcode3/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i +data/include/SDL_config_windowsrt.h.i +data/VisualC/tests/testwm/testwm.vcproj.i +data/CREDITS.i +data/visualtest/autogen.sh.i +data/visualtest/docs/html/search/variables_65.html.i +data/src/video/win32/SDL_win32shape.c.i +data/test/shapes/p10_shape32alpha.bmp.i +data/src/haptic/windows/SDL_windowshaptic.c.i +data/docs/man3/SDL_GLattr.3.i +data/src/SDL_hints_c.h.i +data/src/thread/generic/SDL_syssem_c.h.i +data/premake/projects/testloadso.lua.i +data/include/SDL_config_pandora.h.i +data/test/test-automation/src/libSDLtest/common/images.h.i +data/src/audio/directsound/directx.h.i +data/VisualC/visualtest/unittest/testquit/testquit_VS2012.vcxproj.i +data/src/cdrom/osf/Makefile.am.i +data/premake/projects/testresample.lua.i +data/config.sub.i +data/Xcode-iPhoneOS/Demos/src/common.h.i +data/Xcode-iOS/Demos/src/rectangles.c.i +data/test/test-automation/COPYING.i +data/src/joystick/win32/SDL_dxjoystick_c.h.i +data/docs/man3/SDL_GL_SwapBuffers.3.i +data/src/video/wayland/SDL_waylanddyn.c.i +data/visualtest/docs/html/search/files_76.html.i +data/src/video/windows/SDL_msctf.h.i +data/test/testeyes.i +data/premake/VisualC/VS2008/SDL2/SDL2.vcproj.i +data/src/video/ataricommon/SDL_atarievents.c.i +data/docs/html/sdloverlay.html.i +data/premake/Xcode/Xcode4/tests/testime/testime.xcodeproj/project.pbxproj.i +data/premake/Xcode/Xcode4/tests/testfile/testfile.xcodeproj/project.pbxproj.i +data/include/close_code.h.i +data/VisualC/tests/loopwave/WinRT/Package.appxmanifest.i +data/src/joystick/windows/SDL_dxjoystick_c.h.i +data/src/main/macos/exports/gendef.pl.i +data/src/video/mir/SDL_mirframebuffer.h.i +data/src/events/SDL_windowevents.c.i +data/visualtest/docs/html/_s_d_l__visualtest__process_8h_source.html.i +data/visualtest/docs/html/search/all_6b.html.i +data/src/video/xbios/SDL_xbios_blowup.h.i +data/Xcode-iPhoneOS/Template/SDL iOS Application/Default.png.i +data/src/main/winrt/SDL_winrt_main_NonXAML.cpp.i +data/src/video/Xext/Xinerama/Xinerama.c.i +data/src/video/windowsrt/Direct3DBase.cpp.i +data/VisualC/SDLmain/SDLmain_VS2010.vcxproj.i +data/src/video/photon/SDL_ph_wm.c.i +data/premake/VisualC/VS2010/tests/testthread/testthread.vcxproj.i +data/src/video/vivante/SDL_vivantevideo.h.i +data/src/libm/e_atan2.c.i +data/include/SDL_keyboard.h.i +data/test/testautomation_events.c.i +data/docs/man3/SDL_JoystickGetButton.3.i +data/premake/VisualC/VS2008/tests/testloadso/testloadso.vcproj.i +data/test/configure.i +data/src/video/ataricommon/SDL_xbiosmouseevents_c.h.i +data/src/video/dummy/SDL_nullrender_c.h.i +data/src/video/fbcon-1.3/SDL_fbmodes_c.h.i +data/test/nacl/Makefile.i +data/Xcode-iOS/Demos/Info.plist.i +data/VisualC/tests/checkkeys/checkkeys_VS2008.vcproj.i +data/docs/html/sdljoysticknumbuttons.html.i +data/docs/man3/SDL_LoadWAV.3.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/MyCustomWindow.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/SDLMain.m.i +data/src/video/x11/edid.h.i +data/docs/man3/SDL_JoyHatEvent.3.i +data/VisualC/tests/automated/automated_VS2008.vcproj.i +data/VisualC/tests/testgl/testgl.vcproj.i +data/Xcode/SDLTest/Info-testnativex11.plist.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/icon.bmp.i +data/src/audio/sndio/SDL_sndioaudio.h.i +data/premake/config/SDL_config_minimal.template.h.i +data/src/video/directfb/SDL_DirectFB_modes.h.i +data/src/audio/bsd/SDL_bsdaudio.h.i +data/EXCLUDE/GLIMM/src/IMM.cpp.i +data/src/render/opengles/SDL_renderer_gles.c.i +data/Xcode-iOS/Demos/data/stroke.bmp.i +data/docs/html/index.html.i +data/src/audio/fusionsound/SDL_fsaudio.h.i +data/src/video/uikit/SDL_uikitclipboard.h.i +data/src/video/windowsrt/CubeRenderer.cpp.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/MyController.m.i +data/VisualC/clean.sh.i +data/src/video/maccommon/Makefile.am.i +data/README.HG.i +data/src/video/wscons/SDL_wsconsmouse.c.i +data/debian/sdl2-config.1.i +data/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_int_range.html.i +data/visualtest/docs/html/dynsections.js.i +data/src/core/windowsrt/SDL_winrtpaths.cpp.i +data/test/test-automation/build-scripts/install-sh.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/SDLCustomCocoaApp.xcodeproj/project.pbxproj.i +data/test/test-automation/build-scripts/config.guess.i +data/src/video/windx5/SDL_dx5events.c.i +data/src/video/vgl/SDL_vglvideo.c.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/symbols0.pbxsymbols.i +data/VisualC/tests/loopwave/WinRT/Assets/StoreLogo.png.i +data/src/video/cybergfx/SDL_cgxvideo.h.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAMEASIDENTIFIER____Prefix.pch.i +data/VisualC/tests/testgesture/testgesture_VS2008.vcproj.i +data/src/joystick/linux/SDL_sysjoystick.c.d +data/Xcode/SDLTest/Info-testresample.plist.i +data/premake/VisualC/VS2010/SDL.sln.i +data/src/video/Xext/Xv/Xvlibint.h.i +data/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj.i +data/src/video/win32/SDL_win32window.c.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.Windows.vcxproj.filters.i +data/src/joystick/iphoneos/SDL_sysjoystick.m.i +data/Xcode-iOS/Demos/data/drums/ds_china.wav.d +data/src/video/windows/SDL_windowsgamma.c.i +data/test/test-automation/tests/testrect/testrect.c.i +data/src/video/gtk/SDL_gtkmouse.c.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app.dSYM/Contents/Info.plist.i +data/visualtest/docs/html/bc_s.png.i +data/VisualC/tests/checkkeys/checkkeys_VS2005.vcproj.i +data/premake/projects/testautomation.lua.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_events.h.i +data/VisualC/SDLtest/SDLtest.vcxproj.i +data/android-project/jni/Android.mk.i +data/Xcode-iOS/Demos/data/drums/ds_china.wav.i +data/src/video/x11/SDL_x11framebuffer.h.i +data/premake/VisualC/VS2008/tests/testdraw2/testdraw2.vcproj.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/SDLCocoaApp.xcodeproj/TemplateInfo.plist.i +data/src/SDL_fatal.c.i +data/android/project/jni/lesson05.c.i +data/src/audio/disk/.cvsignore.i +data/src/video/SDL_surface.c.i +data/src/video/windows/SDL_ceddrawrender.c.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/Info.plist.i +data/src/video/Xext/extensions/xf86vmode.h.i +data/docs/html/sdlmousebuttonevent.html.i +data/test/test-automation/src/runner/support.c.i +data/test/test-automation/src/libtest/fuzzer/utl_random.h.i +data/visualtest/src/mischelper.c.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/atlantis.c.i +data/src/video/Xext/XmuStdCmap/StdCmap.c.i +data/build-scripts/raspberrypi-buildbot.sh.i +data/src/cpuinfo/Makefile.am.i +data/src/audio/nds/soundcommon.h.i +data/visualtest/docs/latex/harness__argparser_8c.tex.i +data/src/SDL_android.cpp.i +data/src/video/uikit/SDL_uikitviewcontroller.m.i +data/src/video/ataricommon/SDL_ikbdinterrupt.S.i +data/visualtest/docs/html/search/all_61.html.i +data/docs/.cvsignore.i +data/docs/man3/SDL_UnlockYUVOverlay.3.i +data/VisualC/tests/testsprite2/testsprite2.vcproj.i +data/premake/VisualC/VS2008/tests/testspriteminimal/testspriteminimal.vcproj.i +data/src/thread/amigaos/SDL_thread.c.i +data/EXCLUDE/GLTSF/GLTSF.vcxproj.filters.i +data/src/video/riscos/SDL_riscosvideo.h.i +data/README.MacOSX.i +data/README-directfb.txt.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/Icon.png.i +data/test/shapes/p04_shape8.png.i +data/src/cdrom/macosx/.cvsignore.i +data/src/video/wscons/SDL_wsconsevents.c.i +data/VisualC/tests/testgesture/testgesture.vcxproj.i +data/src/video/x11/SDL_x11render.c.i +data/test/nds-test-progs/sprite2/Makefile.i +data/test/test-automation/src/libSDLtest/plain_logger.h.i +data/test/shapes/p08_shape24.bmp.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLApp_Prefix.pch.i +data/test/threadwin.c.i +data/touchTest/testIn.c~.i +data/test/configure.in.i +data/test/test-automation/aclocal.m4.i +data/src/video/riscos/SDL_wimpvideo.c.i +data/VisualC/SDL_VS2010EE.sln.i +data/src/audio/directsound/SDL_directsound.h.i +data/premake/Xcode/Xcode3/SDL2test/SDL2test.xcodeproj/project.pbxproj.i +data/src/audio/paudio/.cvsignore.i +data/android/project/build.properties.i +data/test/test-automation/testplatform/testplatform.c.i +data/src/video/nanox/SDL_nxwm.c.i +data/premake/Xcode/Xcode3/tests/testrendercopyex/testrendercopyex.xcodeproj/project.pbxproj.i +data/VisualC/tests/testgl2/testgl2_VS2013.vcxproj.i +data/test/test-automation/tests/testaudio/Makefile.am.i +data/premake/Linux/build-scripts/clean_premake.sh.i +data/test/test-automation/tests/testrwops/Makefile.am.i +data/.hgignore.i +data/src/video/cocoa/SDL_cocoakeys.h.i +data/src/video/android/SDL_androidmessagebox.h.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/MyCustomView.h.i +data/docs/html/sdlenableunicode.html.i +data/debian/docs.i +data/docs/html/sdlevent.html.i +data/src/video/wayland/SDL_waylandsym.h.i +data/src/video/fbcon/SDL_fbelo.c.i +data/test/test-automation/logger.h.i +data/src/video/haiku/SDL_bkeyboard.h.i +data/src/video/emscripten/SDL_emscriptenvideo.c.i +data/src/audio/riscos/SDL_drenderer.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/atlantis.h.i +data/Xcode/TemplatesForXcode/SDL Application/SDLApp.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2010/tests/testaudioinfo/testaudioinfo.vcxproj.i +data/visualtest/docs/html/ftv2vertline.png.i +data/src/video/x11/SDL_eventtouch.h.i +data/docs/README-dynapi.md.i +data/premake/Xcode-iOS/build-scripts/clean_premake.command.i +data/src/video/win32/wmmsg.h.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/Default.png.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/English.lproj/InfoPlist.strings.i +data/premake/Xcode-iOS/SDL_config_premake.h.i +data/VisualC/tests/testsprite2/testsprite2_VS2010.vcxproj.i +data/src/audio/coreaudio/SDL_coreaudio.h.i +data/src/video/win32/SDL_ceddrawrender.h.i +data/test/nds-test-progs/sprite/source/testsprite.c.i +data/src/video/windows/SDL_windowskeyboard.h.i +data/VisualC/tests/testjoystick/testjoystick.dsp.i +data/src/main/windowsrt/SimplePixelShader.hlsl.i +data/src/thread/pth/SDL_sysmutex_c.h.i +data/VisualC/tests/checkkeys/checkkeys.vcxproj.user.i +data/docs/man3/SDL_LoadBMP.3.i +data/src/video/macdsp/.cvsignore.i +data/EXCLUDE/GLTSF/include/App.hpp.i +data/src/video/photon/SDL_photon_pixelfmt.c.i +data/src/video/winrt/SDL_winrtpointerinput.cpp.i +data/test/shapes/p15_shape24.bmp.i +data/docs/html/guideeventexamples.html.i +data/visualtest/docs/latex/dir_d44c64559bbebec7f509842c48db8b23.tex.i +data/include/SDL_gesture.h.i +data/docs/man3/SDL_MapRGB.3.i +data/docs/man3/SDL_PauseAudio.3.i +data/src/video/SDL_drawline.c.i +data/src/libm/s_copysign.c.i +data/premake/projects/SDL2.lua.i +data/docs/man3/SDL_JoystickUpdate.3.i +data/VisualC/SDL/SDL_VS2012_WinRT.vcxproj.i +data/VisualC/tests/testgles2/testgles2_VS2010.vcxproj.i +data/test/shapes/p09_shape8alpha.png.i +data/test/test-automation/fuzzer/fuzzer.c.i +data/touchTest/touchTest2/touchTest2/touchTest2.vcproj.jgran-virtualPC.jgran.user.i +data/src/video/bwindow/SDL_syswm_c.h.i +data/test/testoverlay.c.i +data/premake/projects/testshape.lua.i +data/src/video/windows/SDL_windowsmessagebox.c.i +data/Xcode/SDL/pkg-support/resources/ReadMe.txt.i +data/visualtest/docs/html/doxygen.css.i +data/premake/Xcode/Xcode4/SDL2test/SDL2test.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/src/.cvsignore.i +data/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj.i +data/src/video/maccommon/SDL_macevents_c.h.i +data/src/thread/nds/SDL_systhread.c.i +data/src/video/picogui/.cvsignore.i +data/src/video/fbcon/SDL_fbevents_c.h.i +data/src/audio/qsa/SDL_qsa_audio.h.i +data/src/loadso/dummy/SDL_sysloadso.c.i +data/src/joystick/amigaos/Makefile.am.i +data/src/cdrom/beos/.cvsignore.i +data/android/testproject/libs/armeabi/libsanangeles.so.i +data/docs/man3/SDL_CreateThread.3.i +data/VisualC/tests/checkkeys/checkkeys_VS2010.vcxproj.i +data/test/nds-test-progs/testscale/Makefile.i +data/src/video/haiku/SDL_bvideo.cc.i +data/src/video/cybergfx/SDL_cgxaccel.c.i +data/src/thread/pth/SDL_systhread.c.i +data/src/video/fbcon-1.3/SDL_fbrender_c.h.i +data/Xcode-iPhoneOS/Demos/data/bitmapfont/kromasky_16x16.bmp.i +data/VisualC/tests/testthread/WinRT/testthread_VS2012_WinRT_TemporaryKey.pfx.i +data/docs/man3/SDL_JoystickOpen.3.i +data/src/core/winrt/SDL_winrtpaths.cpp.i +data/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj.filters.i +data/VisualC/tests/testgamma/testgamma.vcproj.i +data/VisualC/SDL/SDL_VS2008.vcproj.i +data/src/video/ataricommon/SDL_atarimxalloc.c.i +data/sdl.m4.i +data/src/thread/stdcpp/SDL_systhread.c.i +data/android/testproject/jni/Android.mk.i +data/src/Makefile.am.i +data/visualtest/docs/html/search/all_70.js.i +data/docs/README-wince.md.i +data/Borland.html.i +data/VisualC-WinRT/SDL2main-WinRT-NonXAML.targets.i +data/include/SDL_timer.h.i +data/VisualC/tests/testgamecontroller/testgamecontroller_VS2010.vcxproj.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/atlantis/dolphin.c.i +data/include/SDL_copying.h.i +data/visualtest/docs/html/functions_vars.html.i +data/include/SDL_opengl.h.i +data/docs/html/sdlcdstop.html.i +data/visualtest/docs/html/search/variables_72.html.i +data/premake/projects/teststreaming.lua.i +data/visualtest/docs/html/search/variables_66.js.i +data/premake/VisualC/VS2012/tests/testnative/testnative.vcxproj.filters.i +data/docs/man3/SDL_GL_LoadLibrary.3.i +data/visualtest/docs/html/search/all_73.html.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/strings.pbxstrings/control.i +data/src/events/blank_cursor.h.i +data/src/touchscreen/SDL_touchscreen_c.h.i +data/test/test-automation/src/libSDLtest/xml.h.i +data/premake/VisualC/VS2010/SDL2main/SDL2main.vcxproj.filters.i +data/premake/Xcode-iOS/Demos/touch/touch.xcodeproj/project.pbxproj.i +data/src/libm/e_rem_pio2.c.i +data/src/video/haiku/SDL_bmodes.h.i +data/premake/Xcode/build-scripts/build.all.xcode4.x86_64.command.i +data/src/main/beos/SDL_BeApp.h.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/SDLMain.m.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/Xcode/SDL/pkg-support/resources/ReadMeDevLite.txt.i +data/docs/html/sdllockaudio.html.i +data/README-platforms.txt.i +data/doc/README-porting.md.i +data/visualtest/docs/latex/parsehelper_8c.tex.i +data/Xcode/SDLTest/Info-testwin__Upgraded_.plist.i +data/src/video/dummy/SDL_nullframebuffer.c.i +data/src/thread/dc/SDL_syscond_c.h.i +data/premake/VisualC/VS2012/tests/testhaptic/testhaptic.vcxproj.i +data/src/audio/symbian/streamplayer.h.i +data/premake/VisualC/VS2008/tests/testgesture/testgesture.vcproj.i +data/visualtest/docs/html/doxygen.png.i +data/VisualC/tests/testoverlay2/testoverlay2.vcxproj.user.i +data/premake/Xcode/Xcode4/SDL_config_premake.h.i +data/touchTest/touchSimp.c.i +data/src/joystick/android/SDL_androidjoystick.h.i +data/test/test-automation/src/libSDLtest/common/img_blitblend.c.i +data/test/test-automation/config.h.in.i +data/test/shapes/p11_shape8alpha.bmp.i +data/premake/Xcode/Xcode4/SDL2main/SDL2main.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/atlantis/swim.c.i +data/test/.gdbinit.i +data/src/video/gem/SDL_gemevents.c.i +data/include/SDL_stdarg.h.i +data/src/audio/haiku/SDL_haikuaudio.cc.i +data/visualtest/include/SDL_visualtest_exhaustive_variator.h.i +data/premake/Cygwin/build-scripts/run.tests.release.bat.i +data/VisualC-WinRT/tests/testthread/testthread_VS2012.vcxproj.i +data/README-pandora.txt.i +data/visualtest/docs/html/struct_s_d_l_visual_test___harness_state.html.i +data/src/video/windowsrt/SDL_winrtvideo.h.i +data/src/video/uikit/SDL_uikitkeyboard.m.i +data/src/events/SDL_dropevents_c.h.i +data/docs/html/sdlglgetattribute.html.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___random_variator.tex.i +data/src/cdrom/dc/Makefile.am.i +data/VisualC/tests/testoverlay/testoverlay_VS2010.vcxproj.i +data/premake/VisualC/VS2008/tests/testshape/testshape.vcproj.i +data/src/haptic/windows/SDL_dinputhaptic_c.h.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/InfoPlist.strings.i +data/VisualC/SDL/SDL.vcxproj.filters.i +data/src/video/cocoa/SDL_cocoaopengl.m.i +data/src/video/SDL_yuvfuncs.h.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLCocoaApp.xcodeproj/project.pbxproj.i +data/VisualC/tests/loopwave/loopwave.dsp.i +data/src/audio/SDL_audiotypecvt.c.i +data/src/thread/dc/SDL_systhread.c.i +data/VisualC/SDL/SDL.vcproj.i +data/README.txt.i +data/src/video/winrt/SDL_winrtvideo.cpp.i +data/src/video/haiku/SDL_bopengl.cc.i +data/premake/Xcode/Xcode4/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i +data/src/video/x11/SDL_eventtouch.c.i +data/src/video/maccommon/SDL_lowvideo.h.i +data/src/events/SDL_touch_c.h.i +data/visualtest/docs/html/functions.html.i +data/premake/Linux/SDL_config_premake.h.i +data/build-scripts/winrtbuild.ps1.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/main.c.i +data/src/video/riscos/SDL_riscostask.c.i +data/build-scripts/ald.sh.i +data/src/video/x11/SDL_x11xinput2.c.i +data/test/shapes/p14_shape8.bmp.i +data/visualtest/docs/html/search/all_73.js.i +data/VisualCE/SDLMain/SDLmain.vcp.i +data/src/joystick/linux/SDL_sysjoystick_c.h.i +data/src/audio/windx5/SDL_dx5audio.c.i +data/premake/Xcode/Xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj.i +data/Xcode/SDLTest/Info-testdyngl.plist.i +data/XCodeiPhoneOS/Demos/data/drums/ds_brush_snare.wav.i +data/src/filesystem/beos/SDL_sysfilesystem.cc.i +data/visualtest/docs/latex/screenshot_8c.tex.i +data/src/joystick/bsd/.cvsignore.i +data/docs/html/guideinputkeyboard.html.i +data/src/atomic/SDL_spinlock.c.i +data/VisualC-WinRT/SDL-WinRT_VS2012.sln.i +data/src/cdrom/macos/.cvsignore.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_audio.h.i +data/premake/projects/testrendercopyex.lua.i +data/src/timer/riscos/SDL_systimer.c.i +data/src/video/aalib/SDL_aaevents_c.h.i +data/src/joystick/riscos/Makefile.am.i +data/NOTES.i +data/docs/html/sdlconvertaudio.html.i +data/src/main/macosx/SDL_main.m.i +data/visualtest/docs/html/search/files_77.js.i +data/include/SDL_config_winrt.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/Info.plist.i +data/include/SDL_clipboard.h.i +data/test/test-automation/src/libtest/xml_logger.c.i +data/Xcode-iOS/Demos/src/common.c.i +data/test/shapes/p06_shape8alpha.bmp.i +data/src/video/ataricommon/SDL_ataric2p060_c.h.i +data/docs/man3/SDL_ExposeEvent.3.i +data/src/cdrom/bsdi/.cvsignore.i +data/include/SDL_test_assert.h.i +data/src/video/qtopia/SDL_syswm.cc.i +data/premake/Xcode/Xcode4/tests/testgles/testgles.xcodeproj/project.pbxproj.i +data/src/video/android/egl.h.i +data/src/video/x11/SDL_x11modes.c.d +data/test/relative_mode.markdown.i +data/premake/Xcode/Xcode4/tests/testrelative/testrelative.xcodeproj/project.pbxproj.i +data/src/video/x11/SDL_x11modes.c.i +data/src/filesystem/emscripten/SDL_sysfilesystem.c.i +data/test/testpalette.c.i +data/premake/VisualC/VS2012/tests/testjoystick/testjoystick.vcxproj.i +data/visualtest/docs/html/search/enums_73.html.i +data/src/timer/epoc/SDL_systimer.cpp.i +data/test/nds-test/nds-test.ds.gba.i +data/src/video/android/SDL_androidkeyboard.c.i +data/test/test-automation/testsurface/Makefile.am.i +data/src/core/linux/SDL_dbus.h.i +data/src/timer/amigaos/SDL_systimer.c.i +data/visualtest/src/variator_exhaustive.c.i +data/src/video/win32/SDL_dibrender.c.i +data/Xcode/SDLTest/testgamecontroller-Info.plist.i +data/include/SDL_test_fuzzer.h.i +data/src/video/emscripten/SDL_emscriptenmouse.c.i +data/test/shapes/p10_shape8.png.i +data/android/testproject/res/drawable-mdpi/icon.png.i +data/docs/man3/SDL_EnableUNICODE.3.i +data/premake/VisualC/VS2012/tests/checkkeys/checkkeys.vcxproj.i +data/visualtest/include/SDL_visualtest_random_variator.h.i +data/docs/html/sdlpushevent.html.i +data/src/thread/pthread/SDL_syscond.c.i +data/src/video/ggi/SDL_ggivideo.c.i +data/test/test-automation/build-scripts/install-runner.sh.i +data/src/video/windows/SDL_windowsshape.c.i +data/src/loadso/dlopen/SDL_loadso.c.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLMain.m.i +data/premake/Xcode/Xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/SDLMain.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_rect.h.i +data/premake/VisualC/VS2008/tests/testfile/testfile.vcproj.i +data/visualtest/docs/html/search/functions_73.html.i +data/docs/man3/SDL_CDPlayTracks.3.i +data/src/thread/generic/SDL_sysmutex.c.i +data/src/video/dc/Makefile.am.i +data/src/audio/dc/.cvsignore.i +data/src/thread/Makefile.wat.i +data/Xcode/TemplatesForProjectBuilder/Application.trgttmpl.i +data/test/emscripten/joystick-pre.js.i +data/visualtest/docs/html/search/all_6f.js.i +data/VisualC/tests/testatomic/testatomic_VS2005.vcproj.i +data/src/main/macosx/SDLMain.h.i +data/src/video/winrt/SDL_winrtmessagebox.h.i +data/test/testdropfile.c.i +data/src/video/photon/SDL_ph_gl.h.i +data/src/timer/.cvsignore.i +data/src/video/glesrenderer/SDL_renderer_gles.c.i +data/src/libm/k_cos.c.i +data/touchTest/touchTest2/touchTest2/SDL.dll.i +data/premake/Xcode/Xcode4/tests/testtimer/testtimer.xcodeproj/project.pbxproj.i +data/src/main/android/SDL_android_main.cpp.i +data/premake/Xcode/Xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i +data/src/video/fbcon-1.3/SDL_fbevents.c.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/pbxindex.header.i +data/premake/VisualC/VS2008/tests/testthread/testthread.vcproj.i +data/src/video/cocoa/SDL_cocoawindow.h.i +data/test/shapes/p01_shape8.png.i +data/test/testnative.c.i +data/test/testgl2.c.i +data/src/audio/riscos/SDL_drenderer.h.i +data/premake/Cygwin/build-scripts/make.debug.bat.i +data/test/shapes/p01_shape32alpha.png.i +data/android/testproject/res/drawable-hdpi/icon.png.i +data/docs/README-android.md.i +data/test/test-automation/testsurface/testsurface.c.i +data/src/main/qtopia/SDL_qtopia_main.cc.i +data/XCodeiPhoneOS/SDLiPhoneOS/SDLiPhoneOS.xcodeproj/hfutrell.mode1v3.i +data/docs/html/sdlexposeevent.html.i +data/src/core/linux/SDL_udev.c.i +data/premake/projects/testoverlay2.lua.i +data/test/nds-test/build/main.i.i +data/docs/man3/SDL_GetVideoInfo.3.i +data/test/test-automation/testplatform/Makefile.in.i +data/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj.i +data/src/video/cybergfx/SDL_cgxmodes_c.h.i +data/src/video/mir/SDL_mirevents.c.i +data/test/shapes/p12_shape24.bmp.i +data/src/video/maccommon/SDL_macmouse_c.h.i +data/src/video/xbios/SDL_xbios_blowup.c.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/main.c.i +data/docs.html.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/project.pbxproj.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/PkgInfo.i +data/src/render/opengl/SDL_render_gl.c.i +data/VisualC/tests/testalpha/testalpha.dsp.i +data/test/testeyes_mask_bitmap.h.i +data/src/video/win32/SDL_win32modes.h.i +data/src/video/nds/SDL_ndsvideo.h.i +data/src/video/SDL_cursor.c.i +data/src/test/SDL_test_crc32.c.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/SDLCocoaApp.xcodeproj/project.pbxproj.i +data/src/video/ataricommon/SDL_xbiosinterrupt.S.i +data/docs/man3/.cvsignore.i +data/premake/VisualC/VS2010/tests/testgesture/testgesture.vcxproj.filters.i +data/visualtest/docs/html/variator__random_8c.html.i +data/src/video/Xext/extensions/xme.h.i +data/src/power/emscripten/SDL_syspower.c.i +data/doc/README-dynapi.md.i +data/src/cdrom/Makefile.wat.i +data/android/config.cfg.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_error.h.i +data/include/Makefile.am.i +data/test/test-automation/src/libtest/fuzzer/utl_crc32.c.i +data/test/common.c.i +data/src/video/fbcon/SDL_fb3dfx.h.i +data/test/testaudioinfo.c.i +data/src/core/windows/SDL_xinput.c.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/TemplateInfo.plist.i +data/premake/Xcode/Xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj.i +data/src/events/default_cursor.h.i +data/docs/html/sdlcdresume.html.i +data/src/loadso/mint/SDL_sysloadso.c.i +data/visualtest/stamp-h1.i +data/premake/VisualC/VS2010/SDL2test/SDL2test.vcxproj.i +data/build-scripts/mkinstalldirs.i +data/VisualC/tests/testwin/testwin.dsp.i +data/premake/VisualC/VS2012/tests/testrelative/testrelative.vcxproj.i +data/acinclude/libtool.m4.d +data/test/testfilesystem.c.i +data/VisualC/tests/testgl2/testgl2_VS2008.vcproj.i +data/test/automated/rwops/Test_rwopsbundlesupport.m.i +data/visualtest/docs/html/ftv2folderclosed.png.i +data/src/joystick/bsd/SDL_sysjoystick.c.i +data/test/testblitspeed.c.i +data/docs/html/sdlgetappstate.html.i +data/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj.filters.i +data/premake/projects/SDL2test.lua.i +data/src/thread/pth/SDL_syscond.c.i +data/acinclude/alsa.m4.i +data/README.Watcom.i +data/EXCLUDE/GLTSF/src/Video_Mode.cpp.i +data/debian/watch.i +data/Xcode/TemplatesForXcode/SDL Application/Info.plist.i +data/src/video/fbcon/SDL_fbevents.c.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___harness_state.tex.i +data/visualtest/docs/html/tab_a.png.i +data/Xcode.tar.gz.i +data/VisualC/SDLmain/SDLmain_VS2008.vcproj.i +data/src/video/fbcon/matrox_mmio.h.i +data/visualtest/docs/html/search/files_70.html.i +data/src/main/epoc/SDL_main.cpp.i +data/Xcode.tar.gz.d +data/visualtest/docs/latex/_s_d_l__visualtest__sut__configparser_8h.tex.i +data/src/events/SDL_gesture_c.h.i +data/src/video/uikit/jump.h.i +data/docs/man3/SDL_GetKeyName.3.i +data/README.Epoc.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/Info.plist.i +data/test/automated/rwops/TestSupportRWops.h.i +data/visualtest/docs/html/search/files_6c.js.i +data/src/audio/symbian/SDL_epocaudio.h.i +data/src/audio/dma/Makefile.am.i +data/Xcode/SDLTest/Info-testthread__Upgraded_.plist.i +data/docs/html/sdlgetcliprect.html.i +data/VisualC/tests/testoverlay2/testoverlay2_VS2010.vcxproj.i +data/EXCLUDE/GLTSF/GLTSF_vs2008.sln.i +data/src/main/symbian/EKA2/sdlexe.cpp.i +data/Xcode-iOS/Template/SDL iOS Application/Info.plist.i +data/src/video/ps3/spulibs/bilin_scaler.c.i +data/VisualC/tests/testoverlay/testoverlay_VS2008.vcproj.i +data/src/timer/SDL_timer_c.h.i +data/src/audio/paudio/SDL_paudio.h.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/SDLOpenGLApp.xcodeproj/TemplateInfo.plist.i +data/test/test-automation/tests/testrwops/TestSupportRWops_Generic.c.i +data/VisualC/tests/testgamma/testgamma.vcxproj.user.i +data/VisualC/tests/testgl2/testgl2.dsp.i +data/docs/html/time.html.i +data/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h.html.i +data/test/shapes/p16_shape24.bmp.i +data/src/video/xbios/SDL_xbios_sb3.c.i +data/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.sln.i +data/test/test-automation/src/libtest/fuzzer/fuzzer.c.i +data/EXCLUDE/GLTSF/GLTSF.vcproj.i +data/src/video/SDL_fill.c.i +data/premake/VisualC/VS2010/tests/testpower/testpower.vcxproj.i +data/src/video/gem/SDL_gemmodes.c.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/dolphin.c.i +data/src/audio/mint/SDL_mintaudio_stfa.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_platform.h.i +data/src/joystick/android/SDL_sysjoystick_c.h.i +data/src/main/symbian/EKA2/SDL_main.cpp.i +data/src/audio/mme/SDL_mmeaudio.h.i +data/visualtest/docs/latex/_s_d_l__visualtest__variator__common_8h.tex.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/MyController.h.i +data/EXCLUDE/GLTSF/GLTSF.sln.i +data/android/project/default.properties.i +data/test/nds-test/nds-test.elf.i +data/src/test/SDL_test_imageBlitBlend.c.i +data/src/audio/nds/SDL_ndsaudio.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/swim.c.i +data/src/render/SDL_d3dmath.h.i +data/premake/VisualC/VS2012/tests/testkeys/testkeys.vcxproj.i +data/src/video/quartz/CGS.h.i +data/docs/man3/SDL_CDStop.3.i +data/EXCLUDE/GLTSF/GLTSF.vcxproj.i +data/acinclude/ax_check_compiler_flags.m4.i +data/docs/html/sdlopenaudio.html.i +data/src/video/cocoa/SDL_cocoaclipboard.h.i +data/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj.filters.i +data/src/video/aalib/SDL_aamouse_c.h.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-project-headers.hmap.i +data/src/loadso/os2/SDL_loadso.c.i +data/src/video/win32/wactab/pktdef.h.i +data/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.parameters.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib.i +data/src/audio/iphoneos/SDL_coreaudio_iphone.c.i +data/VisualC/tests/testalpha/testalpha.vcxproj.i +data/premake/README-cygwin.txt.i +data/src/video/qtopia/SDL_QWin.h.i +data/src/video/psp/SDL_pspmouse.c.i +data/visualtest/docs/latex/action__configparser_8c.tex.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/subclasses.pbxbtree.i +data/src/joystick/linux/Makefile.am.i +data/src/thread/nds/SDL_sysmutex_c.h.i +data/src/loadso/macos/SDL_loadso.c.i +data/src/video/SDL_drawpoint.c.i +data/docs/man3/SDL_SetColors.3.i +data/visualtest/docs/html/search/variables_6f.js.i +data/Xcode/SDLTest/Info-testversion__Upgraded_.plist.i +data/src/video/gem/SDL_gemwm.c.i +data/src/video/uikit/SDL_uikitview.m.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_int_range.tex.i +data/docs/html/sdlcreatethread.html.i +data/test/shapes/p09_shape32alpha.bmp.i +data/src/video/uikit/SDL_uikitvideo.m.i +data/premake/VisualC/VS2008/tests/testchessboard/testchessboard.vcproj.i +data/EXCLUDE/GLIMM/src/Video_Mode.cpp.i +data/premake/VisualC/VS2010/SDL2/SDL2.vcxproj.filters.i +data/acinclude/lt~obsolete.m4.i +data/Xcode/TemplatesForProjectBuilder/SDL Application/SDL App.pbproj/TemplateInfo.plist.i +data/src/cdrom/macosx/SDL_syscdrom.c.i +data/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj.filters.i +data/docs/man3/SDL_BlitSurface.3.i +data/VisualC/tests/testrumble/testrumble_VS2013.vcxproj.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-generated-files.hmap.i +data/docs/man3/SDL_UpdateRect.3.i +data/src/main/windows/SDL_windows_main.c.i +data/touchTest/gestureTest.c.i +data/test/testime.c.i +data/src/video/windows/SDL_gdirender.c.i +data/src/video/mir/SDL_mirevents.h.i +data/docs/man3/SDL_Delay.3.i +data/src/joystick/windows/SDL_dxjoystick.c.i +data/VisualC/SDLmain/SDLmain_VS2012_WinRT.vcxproj.i +data/docs/man3/SDL_GetGammaRamp.3.i +data/src/hermes/common.asm.i +data/src/video/Xext/XmuStdCmap/LookupCmap.c.i +data/visualtest/docs/html/search/files_6d.html.i +data/src/video/emscripten/SDL_emscriptenmouse.h.i +data/README-nacl.txt.i +data/src/video/cybergfx/SDL_amigaevents_c.h.i +data/src/video/cybergfx/SDL_cgxgl_c.h.i +data/docs/man3/SDL_FreeSurface.3.i +data/docs/man3/SDL_EnableKeyRepeat.3.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config.h.in.i +data/VisualC/tests/testthread/WinRT/Assets/SplashScreen.png.i +data/src/thread/epoc/SDL_systhread.cpp.i +data/src/joystick/bsd/Makefile.am.i +data/src/video/maccommon/SDL_macgl_c.h.i +data/src/events/SDL_keynames.h.i +data/src/video/windx5/SDL_dx5video.h.i +data/include/SDL_bits.h.i +data/src/video/nds/SDL_ndswindow.c.i +data/visualtest/docs/html/search/pages_76.js.i +data/src/video/uikit/SDL_uikitappdelegate.m.i +data/src/video/windows/SDL_windowswindow.c.i +data/VisualC/tests/testfile/testfile.vcxproj.user.i +data/src/audio/disk/Makefile.am.i +data/Xcode/package.i +data/VisualC-WinRT/tests/loopwave/Assets/Logo.png.i +data/src/video/Xext/extensions/StdCmap.h.i +data/src/audio/dummy/.cvsignore.i +data/src/video/SDL_drawrect.c.i +data/premake/util/sdl_string.lua.i +data/test/test-automation/xml_logger.c.i +data/Xcode/SDL/pkg-support/devel-resources/install.sh.i +data/Xcode/SDLTest/Info-testaudioinfo.plist.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/main.c.i +data/src/video/xbios/SDL_xbios_milan.c.i +data/Xcode/TemplatesForXcode/SDL Application/SDLApp_Prefix.pch.i +data/src/cdrom/macosx/CAGuard.h.i +data/src/video/raspberry/SDL_rpievents.c.i +data/.hgeol.i +data/test/test-automation/src/runner/runner.c.i +data/README.NanoX.i +data/premake/Xcode-iOS/SDL2/SDL2.xcodeproj/project.pbxproj.i +data/src/video/fbcon/riva_mmio.h.i +data/test/test-automation/skeleton.xsl.i +data/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj.i +data/premake/projects/testwm2.lua.i +data/src/endian/.cvsignore.i +data/src/video/fbcon/riva_regs.h.i +data/src/thread/amigaos/SDL_systhread.c.i +data/Xcode/SDLTest/Info-testpower.plist.i +data/test/sail.bmp.i +data/src/joystick/win32/SDL_mmjoystick.c.i +data/docs/html/sdlsetcliprect.html.i +data/src/video/android/SDL_androidevents.c.i +data/src/video/bwindow/SDL_sysmouse.cc.i +data/src/video/nanox/SDL_nxwm_c.h.i +data/XCodeiPhoneOS/Demos/data/drums/ds_loose_skin_mute.wav.i +data/android/testproject/jni/egl.h.i +data/src/video/windib/.cvsignore.i +data/test/test-automation/src/libSDLtest/fuzzer/utl_crc32.h.i +data/src/video/bwindow/SDL_bvideo.cc.i +data/docs/man3/SDL_CondSignal.3.i +data/src/main/win32/exports/Makefile.i +data/premake/Xcode/Xcode3/SDL2main/SDL2main.xcodeproj/project.pbxproj.i +data/src/video/windx5/directx.h.i +data/Xcode/SDLTest/Info-testerror__Upgraded_.plist.i +data/XCodeiPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/docs/README-cmake.md.i +data/src/test/SDL_test_imagePrimitives.c.i +data/test/README.i +data/visualtest/docs/html/windows__process_8c.html.i +data/src/timer/wince/SDL_systimer.c.i +data/src/joystick/beos/SDL_bejoystick.cc.i +data/src/video/cocoa/SDL_cocoamodes.h.i +data/src/video/windows/SDL_windowsmodes.c.i +data/VisualCE/loopwave/loopwave.vcp.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/refs.pbxbtree.i +data/src/joystick/macos/.cvsignore.i +data/src/audio/xaudio2/SDL_xaudio2.h.i +data/test/automated/platform/platform.h.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/dolphin.c.i +data/premake/VisualC/build-scripts/vs2008.bat.i +data/doc/README-pandora.md.i +data/test/automated/common/img_primitives.c.i +data/test/shapes/p06_shape32alpha.png.i +data/src/events/scancodes_win32.h.i +data/test/automated/rwops.c.i +data/visualtest/docs/html/search/functions_6d.html.i +data/setvars.cmd.i +data/src/video/raspberry/SDL_rpimouse.c.i +data/VisualC/tests/testgl2/testgl2.vcproj.i +data/premake/Xcode/Xcode4/tests/testspriteminimal/testspriteminimal.xcodeproj/project.pbxproj.i +data/src/video/mx6/SDL_mx6events_c.h.i +data/src/video/android/SDL_androidgl.c.i +data/src/video/cybergfx/SDL_amigamouse.c.i +data/VisualC/tests/tests.sln.i +data/src/video/gem/SDL_gemkeyboard.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/SDLMain.m.i +data/build-scripts/makedep.sh.i +data/VisualC/tests/loopwave/WinRT/Assets/Logo.png.i +data/VisualC/tests/testfile/testfile.vcproj.i +data/src/atomic/qnx/SDL_atomic.c.i +data/test/test-automation/src/libSDLtest/fuzzer/utl_crc32.c.i +data/XCodeiPhoneOS/Template/SDL Application/Info.plist.i +data/VisualC/tests/testatomic/testatomic_VS2012.vcxproj.i +data/test/test-automation/src/libSDLtest/SDL_test.c.i +data/VisualC/tests/automated/automated_VS2010.vcxproj.i +data/src/video/win32/SDL_win32video.c.i +data/visualtest/docs/html/windows__screenshot_8c.html.i +data/test/testintersections.c.i +data/premake/projects/checkkeys.lua.i +data/VisualC/tests/tests.sdf.d +data/src/video/dga/SDL_dgavideo.c.i +data/VisualC/tests/tests.sdf.i +data/premake/Xcode/build-scripts/clean_premake.command.i +data/android-project/ant.properties.i +data/visualtest/docs/html/ftv2lastnode.png.i +data/include/SDL_config_symbian.h.i +data/test/test-automation/logger.c.i +data/src/audio/baudio/SDL_beaudio.cc.i +data/src/cdrom/bsdi/Makefile.am.i +data/visualtest/docs/html/search/search.js.i +data/src/video/qtopia/SDL_sysevents_c.h.i +data/src/thread/beos/SDL_syssem.c.i +data/src/main/haiku/SDL_BeApp.cc.i +data/test/shapes/p16_shape8.bmp.i +data/docs/html/sdlgetvideosurface.html.i +data/VisualC/tests/testsprite/testsprite.vcxproj.i +data/src/video/aalib/SDL_aavideo.c.i +data/src/video/bwindow/SDL_bmodes.c.i +data/VisualC/SDL_VS2010.sln.i +data/src/thread/SDL_thread_c.h.i +data/src/events/SDL_resize.c.i +data/acinclude/libtool.m4.i +data/src/video/dc/SDL_dcmouse_c.h.i +data/src/audio/windx5/SDL_dx5audio.h.i +data/VisualC/tests/testpalette/testpalette.dsp.i +data/src/joystick/macos/Makefile.am.i +data/premake/projects/testplatform.lua.i +data/premake/VisualC/VS2008/tests/testmessage/testmessage.vcproj.i +data/src/video/gem/Makefile.am.i +data/visualtest/docs/latex/windows__process_8c.tex.i +data/src/video/x11/SDL_x11events.h.i +data/test/shapes/p06_shape8.png.i +data/src/video/qtopia/SDL_sysmouse_c.h.i +data/Xcode/TemplatesForXcode/SDL Application/SDLApp.xcodeproj/TemplateInfo.plist.i +data/docs/man3/SDL_SemPost.3.i +data/VisualC/tests/testsprite2/testsprite2_VS2005.vcproj.i +data/src/video/win32/SDL_win32clipboard.c.i +data/visualtest/docs/html/ftv2folderopen.png.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL.h.i +data/src/power/SDL_power.c.i +data/test/testjoystick.c.i +data/src/video/directfb/SDL_DirectFB_video.c.i +data/src/video/windx5/SDL_dx5events_c.h.i +data/src/video/quartz/SDL_QuartzWM.m.i +data/visualtest/docs/html/ftv2ns.png.i +data/premake/VisualC/VS2012/tests/testgl2/testgl2.vcxproj.filters.i +data/test/config.sub.i +data/VisualC/tests/testplatform/testplatform.vcxproj.user.i +data/src/timer/symbian/SDL_systimer.cpp.i +data/docs/html/guideexamples.html.i +data/visualtest/docs/html/testharness_8c.html.i +data/docs/html/sdlsetgamma.html.i +data/visualtest/docs/html/_s_d_l__visualtest__rwhelper_8h_source.html.i +data/visualtest/docs/html/search/all_65.js.i +data/src/video/cybergfx/SDL_cgxyuv.c.i +data/docs/html/sdlcdclose.html.i +data/src/video/bwindow/SDL_bwindow.h.i +data/src/video/cybergfx/SDL_cgxmodes.c.i +data/include/SDL_config_wiz.h.i +data/src/main/beos/SDL_BApp.h.i +data/test/nds-test/nds-test.nds.d +data/src/stdlib/SDL_malloc.c.i +data/src/video/wayland/SDL_waylandvideo.h.i +data/src/input/evdev/SDL_evdev.h.i +data/include/SDL_config_amiga.h.i +data/src/joystick/nds/SDL_sysjoystick.c.i +data/src/stdlib/SDL_malloc.c.d +data/src/joystick/windows/SDL_windowsjoystick.c.i +data/src/video/SDL_gamma.c.i +data/test/nacl/manifest.json.i +data/src/video/glsdl/SDL_glsdl.h.i +data/docs/html/sdlsetmodstate.html.i +data/src/cpuinfo/cpuinfo.h.i +data/src/video/default_cursor.h.i +data/android/project/local.properties.i +data/docs/man3/SDL_WarpMouse.3.i +data/test/nds-test/nds-test.nds.i +data/visualtest/acinclude.m4.i +data/test/test-automation/src/libtest/logger_helpers.h.i +data/VisualC/tests/testoverlay2/testoverlay2.dsp.i +data/docs/html/cdrom.html.i +data/VisualC/tests/testrendertarget/testrendertarget_VS2013.vcxproj.i +data/src/touchscreen/SDL_touchscreen.c.i +data/visualtest/src/variator_common.c.i +data/VisualC/tests/testplatform/testplatform_VS2013.vcxproj.i +data/test/testaudiohotplug.c.i +data/VisualC/tests/testgles2/testgles2_VS2012.vcxproj.i +data/src/video/windows/SDL_windowsshape.h.i +data/visualtest/docs/html/linux__process_8c.html.i +data/src/cdrom/macosx/AudioFilePlayer.c.i +data/docs/README-porting.md.i +data/test/shapes/p02_shape32alpha.png.i +data/src/test/SDL_test_random.c.i +data/android/project/res/drawable-hdpi/icon.png.i +data/src/audio/SDL_audio_c.h.i +data/docs/html/sdldisplayformat.html.i +data/src/core/winrt/SDL_winrtxaml.cpp.i +data/android-project/default.properties.i +data/visualtest/README.txt.i +data/visualtest/docs/html/sut__configparser_8c.html.i +data/src/video/ggi/SDL_ggievents.c.i +data/docs/README-nacl.md.i +data/premake/VisualC/VS2008/tests/torturethread/torturethread.vcproj.i +data/VisualC/tests/testdraw2/testdraw2_VS2012.vcxproj.i +data/src/video/win32/SDL_win32opengl.c.i +data/src/video/Xext/Xxf86dga/.cvsignore.i +data/Xcode/SDL/testsdl-Info.plist.i +data/visualtest/docs/latex/make.bat.i +data/src/joystick/linux/.cvsignore.i +data/src/video/windib/Makefile.am.i +data/src/video/ataricommon/SDL_xbiosmouseinterrupt.S.i +data/src/video/blank_cursor.h.i +data/test/testviewport.c.i +data/docs/man3/SDL_JoystickIndex.3.i +data/include/SDL_pixels.h.i +data/src/video/symbian/EKA2/SDL_epocvideo.cpp.i +data/docs/man3/SDL_SetModState.3.i +data/android/testproject/res/drawable-ldpi/icon.png.i +data/test/testnativecocoa.m.i +data/src/video/fbcon-1.3/SDL_fbevents_c.h.i +data/README-psp.txt.i +data/docs/html/sdlcondsignal.html.i +data/visualtest/docs/html/search/all_63.html.i +data/TODO.i +data/src/video/symbian/EKA2/SDL_epocvideo.h.i +data/test/shapes/p06_shape8.bmp.i +data/src/video/x11/SDL_x11events.c.d +data/src/video/SDL_rect_c.h.i +data/test/testnativex11.c.i +data/premake/projects/happy.lua.i +data/src/events/Makefile.am.i +data/test/test-automation/DoxyFile.i +data/src/video/photon/SDL_photon_render.c.i +data/test/automated/SDL_at.c.i +data/src/video/SDL_pixels.c.i +data/XCodeiPhoneOS/SDL/SDLiPhoneOS.xcodeproj/hfutrell.pbxuser.i +data/src/video/SDL_renderer_gl.h.i +data/src/video/glrenderer/SDL_renderer_gl.c.i +data/src/audio/nds/sound9.c.i +data/test/test-automation/common/common.h.i +data/test/test-automation/logger_helpers.h.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/English.lproj/SDLMain.nib/info.nib.i +data/docs/man3/SDL_CDPause.3.i +data/include/SDL_video.h.d +data/visualtest/docs/html/search/variables_6d.html.i +data/src/cdrom/macos/Makefile.am.i +data/include/SDL_video.h.i +data/src/video/fbcon/SDL_fbmatrox.c.i +data/src/video/bwindow/Makefile.am.i +data/docs/html/sdlmutexp.html.i +data/visualtest/docs/html/search/defines_73.js.i +data/src/video/vivante/SDL_vivanteplatform.c.i +data/src/audio/SDL_audiomem.c.i +data/src/video/ataricommon/SDL_ataric2p060.c.i +data/src/video/windows/SDL_windowsframebuffer.c.i +data/include/SDL_system.h.i +data/Makefile.psp.i +data/VisualC/tests/testoverlay/testoverlay.vcproj.i +data/src/video/uikit/SDL_uikitopenglview.m.i +data/build-scripts/emscripten-buildbot.sh.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/main.c.i +data/Xcode-iPhoneOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/visualtest/docs/html/dir_244674c763b96fdad0a6ffe8d0250e08.html.i +data/docs/man3/SDL_mutexV.3.i +data/src/filesystem/dummy/SDL_sysfilesystem.c.i +data/premake/projects/touch.lua.i +data/test/automated/audio/audio.c.i +data/include/SDL_cdrom.h.i +data/src/file/cocoa/SDL_rwopsbundlesupport.h.i +data/src/video/psp/SDL_pspevents_c.h.i +data/Xcode-iPhoneOS/Test/Info.plist.i +data/src/video/qnxgf/SDL_hiddi_mouse.h.i +data/test/test-automation/common/images.h.i +data/include/SDL_joystick.h.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/decls.pbxbtree.i +data/test/shapes/p11_shape32alpha.bmp.i +data/VisualC/tests/testthread/WinRT/Assets/SmallLogo.png.i +data/docs/README.md.i +data/src/video/wscons/.cvsignore.i +data/visualtest/src/rwhelper.c.i +data/premake/VisualC/VS2008/tests/loopwave/loopwave.vcproj.i +data/README.QNX.i +data/src/filesystem/windows/SDL_sysfilesystem.c.i +data/src/audio/windib/.cvsignore.i +data/premake/VisualC/VS2012/SDL_config_premake.h.i +data/docs/man3/SDL_GetModState.3.i +data/src/audio/symbian/SDL_epocaudio.cpp.i +data/visualtest/docs/html/search/all_64.js.i +data/XCodeiPhoneOS/Demos/src/happy.c.i +data/src/video/SDL_video.c.i +data/src/video/SDL_video.c.d +data/visualtest/docs/html/search/all_63.js.i +data/visualtest/docs/html/dir_88e6415a3128b404f1102a130772bdb6.html.i +data/docs/html/sdlblitsurface.html.i +data/src/video/Xext/extensions/xf86vmstr.h.i +data/src/video/win32/SDL_win32gamma.c.i +data/test/test-automation/tests/testaudio/testaudio.c.i +data/Xcode-iPhoneOS/Test/README.i +data/src/thread/pth/SDL_syscond_c.h.i +data/src/video/x11/SDL_x11keyboard.c.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/refs.pbxbtree.i +data/src/audio/symbian/streamplayer.cpp.i +data/VisualC/tests/automated/automated.vcproj.i +data/docs/html/guidecredits.html.i +data/src/main/windowsrt/CubeRenderer.cpp.i +data/premake/VisualC/VS2010/tests/torturethread/torturethread.vcxproj.i +data/test/test-automation/fuzzer/utl_crc32.h.i +data/premake/Xcode-iOS/build-scripts/xcode4.command.i +data/XCodeiPhoneOS/Template/SDL Application/Icon.png.i +data/docs/html/.cvsignore.i +data/src/video/ataricommon/SDL_ataridevmouse_c.h.i +data/src/video/mx6/SDL_mx6opengles.h.i +data/src/video/bwindow/SDL_bmodes.cc.i +data/premake/Xcode/Xcode3/tests/testchessboard/testchessboard.xcodeproj/project.pbxproj.i +data/docs/man3/SDL_MouseMotionEvent.3.i +data/src/video/ipod/SDL_ipodvideo.h.i +data/test/shapes/p06_shape1alpha.png.i +data/doc/README-nacl.md.i +data/test/test-automation/testrender/testrender.c.i +data/README.PicoGUI.i +data/visualtest/src/action_configparser.c.i +data/src/video/gem/SDL_gemmouse_c.h.i +data/include/SDL_test_random.h.i +data/src/thread/generic/SDL_syscond.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_surface.h.i +data/src/audio/amigaos/SDL_ahiaudio.c.i +data/src/video/macrom/.cvsignore.i +data/src/audio/winmm/SDL_winmm.c.i +data/VisualC/tests/testgamecontroller/testgamecontroller_VS2008.vcproj.i +data/docs/html/sdlkillthread.html.i +data/src/video/pandora/SDL_pandora.h.i +data/premake/VisualC/VS2012/SDL2/SDL2.vcxproj.i +data/src/joystick/amigaos/SDL_sysjoystick.c.i +data/docs/man3/SDL_SetVideoMode.3.i +data/src/filesystem/haiku/SDL_sysfilesystem.cc.i +data/Xcode/SDLTest/Info-testtimer__Upgraded_.plist.i +data/src/video/bwindow/SDL_sysevents_c.h.i +data/src/video/windows/SDL_windowsopengles.h.i +data/Xcode-iPhoneOS/Demos/Icon.png.i +data/src/video/picogui/SDL_pgevents.c.i +data/XCodeiPhoneOS/Demos/src/accelerometer.c.i +data/docs/html/sdlvideomodeok.html.i +data/src/video/uikit/SDL_uikitclipboard.m.i +data/src/joystick/beos/.cvsignore.i +data/VisualC/tests/testrumble/testrumble_VS2010.vcxproj.i +data/docs/html/sdlmaprgb.html.i +data/VisualC/tests/testplatform/testplatform_VS2008.vcproj.i +data/visualtest/include/SDL_visualtest_screenshot.h.i +data/src/video/ggi/SDL_ggimouse.c.i +data/src/video/ggi/SDL_ggivideo.h.i +data/src/video/haiku/SDL_bopengl.h.i +data/src/joystick/SDL_joystick_c.h.i +data/test/graywin.c.i +data/src/video/mir/SDL_mirdyn.c.i +data/Xcode/TemplatesForProjectBuilder/SDL OpenGL Application/atlantis/atlantis.c.i +data/visualtest/docs/html/search/functions_73.js.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/test/shapes/p07_shape32alpha.bmp.i +data/VisualC/tests/testvidinfo/testvidinfo.vcproj.i +data/visualtest/docs/html/search/functions_6d.js.i +data/src/video/ataricommon/Makefile.am.i +data/docs/html/sdlcreatergbsurfacefrom.html.i +data/visualtest/docs/html/jquery.js.i +data/premake/VisualC/VS2010/tests/testwm2/testwm2.vcxproj.i +data/src/audio/SDL_mixer_MMX_VC.c.i +data/test/testautomation_syswm.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_haptic.h.i +data/test/shapes/p07_shape32alpha.png.i +data/src/events/.cvsignore.i +data/premake/projects/testspriteminimal.lua.i +data/src/main/symbian/EKA2/vectorbuffer.h.i +data/src/hermes/x86p_16.asm.i +data/test/testmessage.c.i +data/premake/VisualC/VS2010/tests/loopwave/loopwave.vcxproj.filters.i +data/src/cdrom/macosx/SDLOSXCAGuard.h.i +data/docs/man3/SDL_GetEventFilter.3.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/src/render/direct3d11/SDL_D3D11_PixelShader_TextureColored.hlsl.i +data/src/haptic/nds/SDL_syshaptic.c.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/Info.plist.i +data/src/video/os2fslib/SDL_vkeys.h.i +data/test/nacl/background.js.i +data/test/test-automation/src/libSDLtest/logger_helpers.c.i +data/src/video/windows/SDL_gapirender.c.i +data/build-scripts/g++-fat.sh.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib.i +data/src/render/software/SDL_blendline.h.i +data/docs/html/sdlwaitevent.html.i +data/Xcode-iPhoneOS/Demos/src/rectangles.c.i +data/src/audio/android/SDL_androidaudio.h.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___s_u_t_option.tex.i +data/src/video/Xext/XmuStdCmap/VisCmap.c.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___action.tex.i +data/src/video/windowsrt/SDL_winrtmouse.cpp.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/Default.png.i +data/docs/html/sdlwaitthread.html.i +data/premake/VisualC/VS2008/tests/testmultiaudio/testmultiaudio.vcproj.i +data/test/shapes/p13_shape32alpha.png.i +data/src/video/ps3/spulibs/yuv2rgb_converter.c.i +data/VisualC/SDLtest/SDLtest_VS2010.vcxproj.i +data/include/SDL_windows.h.i +data/README.MiNT.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_opengles.h.i +data/test/configure.d +data/docs/html/reference.html.i +data/src/video/android/SDL_androidmouse.c.i +data/src/video/ps2gs/SDL_gsmouse.c.i +data/src/joystick/SDL_sysjoystick.h.i +data/src/video/SDL_memops.h.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/___PROJECTNAME___.i +data/build-scripts/android_libs/libutils.so.i +data/premake/Xcode-iOS/Demos/fireworks/fireworks.xcodeproj/project.pbxproj.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___-own-target-headers.hmap.i +data/premake/VisualC/VS2012/tests/testfilesystem/testfilesystem.vcxproj.i +data/premake/VisualC/VS2008/tests/teststreaming/teststreaming.vcproj.i +data/docs/man3/SDL_BuildAudioCVT.3.i +data/visualtest/docs/html/bdwn.png.i +data/src/video/SDL_pixels_c.h.i +data/android-project/res/drawable-xhdpi/ic_launcher.png.i +data/test/testautomation_stdlib.c.i +data/docs/html/wm.html.i +data/src/video/qnxgf/SDL_gf_render.c.i +data/premake/README-macosx.txt.i +data/visualtest/docs/html/_s_d_l__visualtest__harness__argparser_8h_source.html.i +data/EXCLUDE/GLTSF/include/Video_Mode.hpp.i +data/test/test-automation/testaudio/Makefile.am.i +data/src/video/ataricommon/SDL_ikbdevents_c.h.i +data/Xcode/SDLTest/Info-testhaptic.plist.i +data/test/test-automation/src/libSDLtest/fuzzer/utl_random.c.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_config_wiz.h.i +data/test/testautomation_platform.c.i +data/src/video/x11/SDL_x11gamma_c.h.i +data/src/video/x11/SDL_x11opengles.h.i +data/docs/html/sdlfreesurface.html.i +data/src/render/direct3d11/SDL_render_winrt.h.i +data/docs/html/general.html.i +data/src/video/ataricommon/SDL_ataric2p.S.i +data/src/video/glesrenderer/SDL_renderer_gles.h.i +data/visualtest/docs/html/search/all_6f.html.i +data/README.touch.i +data/src/video/x11/SDL_x11events_c.h.i +data/visualtest/docs/html/config_8h_source.html.i +data/src/video/haiku/SDL_bmodes.cc.i +data/src/video/x11/SDL_x11image.c.i +data/premake/VisualC/VS2012/tests/testrumble/testrumble.vcxproj.filters.i +data/src/video/vivante/SDL_vivanteopengles.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/SDLMain.h.i +data/premake/Xcode/Xcode4/tests/testerror/testerror.xcodeproj/project.pbxproj.i +data/src/libm/s_cos.c.i +data/src/video/maccommon/SDL_macmouse.c.i +data/premake/Xcode/Xcode4/tests/testgamecontroller/testgamecontroller.xcodeproj/project.pbxproj.i +data/src/core/winrt/SDL_winrtxaml_cpp.h.i +data/src/video/dc/.cvsignore.i +data/visualtest/docs/html/variators_8c.html.i +data/docs/man3/SDL_JoystickNumBalls.3.i +data/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/SDLMain.h.i +data/test/shapes/p07_shape1alpha.png.i +data/include/SDL_ctype.h.i +data/src/video/bwindow/SDL_BWin.h.i +data/doc/README-gesture.md.i +data/src/cdrom/macosx/CDPlayer.h.i +data/src/libm/math_private.h.i +data/docs/man3/SDL_DestroyCond.3.i +data/src/video/ps3/spulibs/spu_common.h.i +data/test/test-automation/SDL_test.h.i +data/test/test-automation/tests/testclipboard/testclipboard.c.i +data/src/loadso/windows/SDL_sysloadso.c.i +data/src/video/x11/SDL_x11wm.c.i +data/visualtest/docs/latex/_s_d_l__visualtest__harness__argparser_8h.tex.i +data/src/video/x11/SDL_x11opengl.c.i +data/src/audio/dma/SDL_dmaaudio.c.i +data/visualtest/docs/html/search/typedefs_73.js.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/English.lproj/InfoPlist.strings.i +data/src/audio/android/SDL_androidaudio.o.i +data/src/audio/macrom/.cvsignore.i +data/docs/README-winrt.md.i +data/docs/html/sdlsavebmp.html.i +data/README-android.txt.i +data/test/test-automation/src/runner/logger.h.i +data/src/libm/s_scalbn.c.i +data/src/video/fbcon/3dfx_regs.h.i +data/build-scripts/winrt-build.bat.i +data/VisualC/SDLmain/SDLmain_VS2012.vcxproj.i +data/visualtest/docs/html/_s_d_l__visualtest__exhaustive__variator_8h.html.i +data/src/video/uikit/keyinfotable.h.i +data/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj.filters.i +data/README.DirectFB.i +data/src/video/Xext/XmuStdCmap/DelCmap.c.i +data/src/joystick/.cvsignore.i +data/src/video/bwindow/SDL_bopengl.c.i +data/src/video/photon/Makefile.am.i +data/docs/man3/SDL_DestroyMutex.3.i +data/README.cmake.i +data/VisualCE/loopwave/loopwave.vcproj.i +data/docs/man3/SDL_ThreadID.3.i +data/src/video/aalib/Makefile.am.i +data/src/video/raspberry/SDL_rpivideo.c.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/English.lproj/SDLMain.nib/info.nib.i +data/android/testproject/jni/app-android.c.i +data/test/test-automation/src/libtest/common/common.c.i +data/visualtest/docs/latex/struct_s_d_l___process_info.tex.i +data/visualtest/docs/html/_s_d_l__visualtest__parsehelper_8h.html.i +data/include/SDL_test.h.i +data/premake/projects/accelerometer.lua.i +data/src/video/winrt/SDL_winrtkeyboard.cpp.i +data/src/hermes/Makefile.am.i +data/src/power/macosx/SDL_syspower.c.i +data/acinclude/ax_gcc_archflag.m4.i +data/test/shapes/p11_shape32alpha.png.i +data/src/joystick/SDL_joystick.c.i +data/VisualC-WinRT/SDL2main-WinRT-CoreWindow.targets.i +data/premake/VisualC/VS2010/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.Windows.vcxproj.i +data/src/video/ggi/SDL_ggievents_c.h.i +data/test/test-automation/fuzzer/utl_random.h.i +data/Xcode/SDL/pkg-support/SDL.info.i +data/Xcode/XcodeDocSet/Doxyfile.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_stdinc.h.i +data/UNDER_CONSTRUCTION.txt.i +data/EXCLUDE/GLTSF/include/Window.hpp.i +data/src/audio/dsp/SDL_dspaudio.c.i +data/src/video/windib/SDL_dibvideo.c.i +data/test/shapes/p08_shape8.png.i +data/src/video/dc/SDL_dcvideo.c.i +data/src/video/directfb/SDL_DirectFB_mouse.h.i +data/src/video/android/SDL_androidevents_c.h.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/atlantis/shark.c.i +data/doc/README-cmake.md.i +data/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj.i +data/src/thread/generic/SDL_sysmutex_c.h.i +data/src/filesystem/nacl/SDL_sysfilesystem.c.i +data/docs/man3/SDL_Flip.3.i +data/src/main/symbian/EKA2/sdllib.cpp.i +data/test/shapes/p13_shape24.png.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_compat.h.i +data/XCodeiPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/hfutrell.mode1v3.i +data/src/audio/nto/Makefile.am.i +data/docs/html/guide.html.i +data/premake/Xcode/build-scripts/build.all.xcode4.i386.command.i +data/src/video/SDL_bmp.c.i +data/test/.cvsignore.i +data/test/test-automation/tests/asserts.c.i +data/src/main/winrt/SDL_winrt_main.cpp.i +data/visualtest/docs/html/search/all_74.html.i +data/README.Symbian.i +data/docs/man3/SDL_AudioCVT.3.i +data/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj.i +data/test/testdyngles.c.i +data/android-project/AndroidManifest.xml.i +data/test/shapes/p08_shape24.png.i +data/src/main/win32/exports/gendef.pl.i +data/test/test-automation/asserts.c.i +data/src/video/SDL_rect.c.i +data/visualtest/docs/latex/dir_f584182df4c69fab0b14563b4d535158.tex.i +data/visualtest/docs/html/ftv2link.png.i +data/src/video/cybergfx/.cvsignore.i +data/src/power/beos/SDL_syspower.c.i +data/docs/html/sdlcdtrack.html.i +data/Xcode-iPhoneOS/rakefile.i +data/src/hermes/HeadMMX.h.i +data/src/cdrom/beos/Makefile.am.i +data/visualtest/docs/html/search/defines_64.js.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/Icon.png.i +data/visualtest/docs/html/struct_s_d_l_visual_test___random_variator.html.i +data/src/video/windows/SDL_gdirender.h.i +data/src/audio/arts/Makefile.am.i +data/premake/VisualC/VS2012/tests/loopwave/loopwave.vcxproj.i +data/src/audio/alsa/SDL_alsa_audio.h.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/atlantis.h.i +data/Xcode/uninstall.csh.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist.i +data/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj.i +data/test/test-automation/testplatform/Makefile.am.i +data/build-scripts/androidbuild.sh.i +data/src/video/cocoa/SDL_cocoamouse.h.i +data/Xcode/SDLTest/Info-testsprite2.plist.i +data/XCodeiPhoneOS/Template/SDL Application/Default.png.i +data/XCodeiPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/Info.plist.i +data/premake/Xcode/Xcode4/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj.i +data/VisualC/tests/testdraw2/testdraw2_VS2010.vcxproj.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLMain.m.i +data/src/video/wscons/SDL_wsconsvideo.c.i +data/docs/man3/SDL_VideoInfo.3.i +data/src/video/ipod/Makefile.am.i +data/src/video/x11/SDL_x11clipboard.c.i +data/docs/html/guidethebasics.html.i +data/VisualC/tests/testshape/testshape.vcproj.i +data/premake/Xcode/Xcode4/tests/testautomation/testautomation.xcodeproj/project.pbxproj.i +data/VisualC/SDLmain/SDLmain_VS2013.vcxproj.i +data/src/audio/Makefile.am.i +data/src/video/windowsrt/SDL_winrtframebuffer.c.i +data/test/shapes/p08_shape8alpha.png.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/English.lproj/SDLMain.nib/classes.nib.i +data/src/joystick/dummy/.cvsignore.i +data/docs/html/sdlconvertsurface.html.i +data/VisualC/tests/testrendertarget/testrendertarget_VS2010.vcxproj.i +data/README-macosx.txt.i +data/src/video/nanox/SDL_nximage_c.h.i +data/src/video/dummy/SDL_nullmouse_c.h.i +data/src/video/x11/SDL_x11shape.h.i +data/visualtest/docs/html/search/files_74.html.i +data/src/video/emscripten/SDL_emscriptenevents.c.i +data/premake/Xcode/Xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/imports.pbxbtree.i +data/src/video/win32/SDL_win32shape.h.i +data/src/video/SDL_blit_0.c.i +data/VisualC/tests/loopwave/loopwave_VS2013.vcxproj.i +data/premake/VisualC/VS2008/tests/testgamecontroller/testgamecontroller.vcproj.i +data/VisualC/tests/testgl2/testgl2.vcxproj.user.i +data/docs/html/sdldelay.html.i +data/Makefile.minimal.i +data/premake/VisualC/VS2010/tests/testnative/testnative.vcxproj.filters.i +data/visualtest/docs/latex/sut__configparser_8c.tex.i +data/premake/VisualC/VS2012/tests/testshape/testshape.vcxproj.filters.i +data/premake/Xcode/Xcode4/tests/testpower/testpower.xcodeproj/project.pbxproj.i +data/test/testhaptic.c.i +data/src/audio/SDL_audio.c.d +data/src/render/direct3d11/SDL_D3D11_PixelShader_TextureCopy.hlsl.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/Info.plist.i +data/src/timer/macos/SDL_MPWtimer.c.i +data/premake/VisualC/VS2010/tests/testhaptic/testhaptic.vcxproj.i +data/src/joystick/linux/SDL_sysjoystick.c.i +data/src/video/fbcon/matrox_regs.h.i +data/test/testautomation_main.c.i +data/VisualC-WinRT/SDL/SDL_VS2012.vcxproj.i +data/src/main/macosx/exports/gendef.pl.i +data/src/video/SDL_blit_1.c.i +data/src/video/symbian/EKA1/SDL_epocevents.cpp.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/Icon.png.i +data/test/utf8.txt.i +data/docs/html/sdlcdnumdrives.html.i +data/src/video/dummy/SDL_nullevents_c.h.i +data/src/video/xbios/SDL_xbios.h.i +data/src/video/aalib/SDL_aamouse.c.i +data/visualtest/include/SDL_visualtest_harness_argparser.h.i +data/premake/Xcode/Xcode3/tests/testime/testime.xcodeproj/project.pbxproj.i +data/include/SDL_byteorder.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/English.lproj/InfoPlist.strings.i +data/visualtest/docs/html/annotated.html.i +data/src/video/x11/SDL_x11modes_c.h.i +data/src/video/gtk/SDL_gtkevents.c.i +data/docs/man3/SDL_DestroySemaphore.3.i +data/src/video/gem/SDL_gemvideo.h.i +data/docs/man3/SDL_Overlay.3.i +data/VisualC/tests/loopwave/loopwave_VS2005.vcproj.i +data/include/SDL_keycode.h.i +data/include/SDL_test_images.h.i +data/test/test-automation/xml.c.i +data/premake/Xcode/Xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj.i +data/android/project/res/drawable-mdpi/icon.png.i +data/VisualC/tests/testgles2/testgles2.vcxproj.i +data/docs/html/sdlglattr.html.i +data/src/thread/amigaos/SDL_syssem.c.i +data/premake/VisualC/VS2012/tests/testrendertarget/testrendertarget.vcxproj.i +data/src/timer/Makefile.wat.i +data/Xcode/SDLTest/Info-graywin__Upgraded_.plist.i +data/src/video/os2fslib/.cvsignore.i +data/Xcode/TemplatesForXcode/SDL Application/English.lproj/InfoPlist.strings.i +data/docs/man3/SDL_SetGammaRamp.3.i +data/test/testrendercopyex.c.i +data/android/project/jni/android-support.cpp.i +data/test/test-automation/src/libSDLtest/common/img_primitivesblend.c.i +data/src/video/windows/SDL_windowsvideo.c.i +data/src/video/riscos/Makefile.am.i +data/test/shapes/p09_shape24.png.i +data/src/render/opengl/SDL_shaders_gl.c.i +data/visualtest/depcomp.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/MyCustomWindow.m.i +data/premake/Xcode/Xcode4/SDL2/SDL2.xcodeproj/project.pbxproj.i +data/premake/VisualC/VS2008/SDL_config_premake.h.i +data/test/testmmousetablet.c.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___.hmap.i +data/src/audio/macosx/Makefile.am.i +data/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav.i +data/docs/html/sdljoystickeventstate.html.i +data/android/testproject/jni/lesson05.c.i +data/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav.d +data/src/joystick/sort_controllers.py.i +data/android/scripts/ald.sh.i +data/VisualC/tests/testwin/testwin.vcxproj.i +data/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj.filters.i +data/test/test-automation/testrect/Makefile.in.i +data/src/audio/alsa/.cvsignore.i +data/src/video/windows/SDL_windowswindow.h.i +data/src/audio/dart/SDL_dart.c.i +data/Xcode-iPhoneOS/Demos/data/drums/ds_china.wav.d +data/test/testqsort.c.i +data/src/video/cybergfx/SDL_cgxwm_c.h.i +data/src/video/Xext/extensions/Xext.h.i +data/test/shapes/p03_shape24.png.i +data/VisualC/tests/loopwave/loopwave.vcxproj.i +data/XCodeiPhoneOS/Demos/data/ship.bmp.i +data/Xcode-iPhoneOS/Demos/data/drums/ds_china.wav.i +data/touchTest/touchTest2/touchTest2.ncb.i +data/visualtest/docs/latex/variators_8c.tex.i +data/src/events/SDL_mouse_c.h.i +data/src/video/SDL_copy.c.i +data/test/tests/testsuites.h.i +data/docs/man3/SDL_SetTimer.3.i +data/src/audio/iphoneos/SDL_coreaudio_iphone.h.i +data/premake/VisualC/VS2010/tests/testjoystick/testjoystick.vcxproj.i +data/src/joystick/windows/SDL_dinputjoystick_c.h.i +data/test/shapes/p07_shape8.bmp.i +data/src/video/nanox/SDL_nxmouse.c.i +data/src/video/windows/SDL_gapirender_c.h.i +data/Xcode/SDL/Info-Framework.plist.i +data/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj.i +data/test/test-automation/common/img_primitivesblend.c.i +data/premake/VisualC/VS2012/tests/testgles/testgles.vcxproj.filters.i +data/docs/html/sdlpixelformat.html.i +data/src/cdrom/dc/SDL_syscdrom.c.i +data/src/thread/symbian/SDL_sysmutex.cpp.i +data/visualtest/docs/html/search/search_r.png.i +data/VisualC-WinRT/tests/testthread/testthread_VS2012_TemporaryKey.pfx.i +data/src/video/ps2gs/SDL_gsmouse_c.h.i +data/premake/VisualC/VS2012/tests/testthread/testthread.vcxproj.i +data/src/loadso/windows/SDL_loadso.c.i +data/visualtest/docs/html/search/files_73.html.i +data/docs/man3/SDL_GetVideoSurface.3.i +data/docs/html/sdlcdplaytracks.html.i +data/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj.filters.i +data/premake/VisualC/VS2012/tests/torturethread/torturethread.vcxproj.i +data/src/video/mir/SDL_mirmouse.h.i +data/src/libm/k_sin.c.i +data/premake/Xcode/build-scripts/xcode3.command.i +data/src/video/qnxgf/SDL_gf_opengles.h.i +data/VisualC/SDLmain/SDLmain_VS2005.vcproj.i +data/test/shapes/p14_shape24.bmp.i +data/test/automated/rwops/read.i +data/src/video/wayland/SDL_waylandevents_c.h.i +data/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav.i +data/premake/Cygwin/build-scripts/make.release.bat.i +data/docs/html/sdlcondwait.html.i +data/XCodeiPhoneOS/README.i +data/test/Makefile.in.i +data/build-scripts/showrev.sh.i +data/test/testautomation_keyboard.c.i +data/premake/config/SDL_config_iphoneos.template.h.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/English.lproj/SDLMain.nib/objects.nib.i +data/src/timer/nds/SDL_systimer.c.i +data/docs/man3/SDL_GL_GetProcAddress.3.i +data/src/events/SDL_active.c.i +data/premake/VisualC/VS2010/tests/testerror/testerror.vcxproj.i +data/android/testproject/jni/app-android.cpp.i +data/src/audio/SDL_mixer_m68k.c.i +data/visualtest/docs/html/search/variables_72.js.i +data/test/nds-test-progs/testspriteminimal/Makefile.i +data/build-scripts/snapshot.sh.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/main.c.i +data/VisualC/tests/testplatform/testplatform.vcxproj.i +data/src/SDL_assert.c.i +data/src/video/uikit/SDL_uikitmodes.m.i +data/test/testautomation_pixels.c.i +data/VisualC/tests/testatomic/testatomic.vcxproj.i +data/src/video/mir/SDL_miropengl.c.i +data/visualtest/docs/html/rwhelper_8c.html.i +data/docs/html/eventstructures.html.i +data/src/video/svga/SDL_svgaevents.c.i +data/visualtest/docs/latex/struct_s_d_l_visual_test___r_w_helper_buffer.tex.i +data/premake/projects/testrendertarget.lua.i +data/docs/man3/SDL_GetRGB.3.i +data/src/main/beos/exports/Makefile.i +data/src/render/SDL_sysrender.h.i +data/VisualC/tests/testgesture/testgesture_VS2010.vcxproj.i +data/premake/VisualC/VS2010/tests/testkeys/testkeys.vcxproj.filters.i +data/premake/projects/testfilesystem.lua.i +data/src/dynapi/gendynapi.pl.i +data/src/video/qtopia/SDL_syswm_c.h.i +data/docs/html/sdlgetaudiostatus.html.i +data/src/hermes/common.inc.i +data/src/thread/dc/SDL_sysmutex.c.i +data/VisualC-WinRT/SDL/SDL_VS2012-WinRT.vcxproj.i +data/test/test-automation/common/img_primitives.c.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/English.lproj/InfoPlist.strings.i +data/premake/VisualC/VS2012/tests/testchessboard/testchessboard.vcxproj.filters.i +data/premake/Xcode-iOS/Demos/accelerometer/accelerometer.xcodeproj/project.pbxproj.i +data/src/video/bwindow/SDL_lowvideo.h.i +data/premake/VisualC/VS2012/tests/testaudioinfo/testaudioinfo.vcxproj.filters.i +data/docs/man3/SDL_Event.3.i +data/premake/VisualC/VS2008/tests/testplatform/testplatform.vcproj.i +data/src/video/mx6/SDL_mx6video.c.i +data/src/joystick/os2/SDL_sysjoystick.c.i +data/src/haptic/dummy/SDL_syshaptic.c.i +data/src/video/uikit/SDL_uikitwindow.m.i +data/src/video/aalib/.cvsignore.i +data/test/automated/rwops/rwops.h.i +data/src/thread/os2/SDL_systhread_c.h.i +data/README.ds.i +data/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj.i +data/src/video/ps3/SDL_ps3video.h.i +data/visualtest/docs/html/search/files_6d.js.i +data/src/audio/mint/SDL_mintaudio.c.i +data/src/video/SDL_cursor_c.h.i +data/src/main/windowsrt/Direct3DBase.cpp.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/Info.plist.i +data/premake/VisualC/VS2012/tests/testgamecontroller/testgamecontroller.vcxproj.filters.i +data/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.parameters.i +data/src/loadso/macosx/SDL_loadso.c.i +data/src/video/mir/SDL_mirdyn.h.i +data/src/joystick/windowsrt/SDL_xinputjoystick.c.i +data/docs/html/sdlfreecursor.html.i +data/include/SDL_config_macos.h.i +data/src/thread/linux/SDL_systhread_c.h.i +data/src/cdrom/aix/SDL_syscdrom.c.i +data/ltconfig.i +data/src/audio/sun/SDL_sunaudio.h.i +data/docs/html/sdljoystickclose.html.i +data/src/timer/mint/SDL_vbltimer.S.i +data/visualtest/configs/testsprite2_blendmodes/testsprite2_blendmodes.config.i +data/src/video/qtopia/SDL_QPEApp.h.i +data/src/video/svga/.cvsignore.i +data/src/thread/irix/SDL_systhread.c.i +data/src/audio/SDL_audiomem.h.i +data/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp.i +data/XCodeiPhoneOS/README.txt.i +data/premake/VisualC/VS2010/tests/testmessage/testmessage.vcxproj.i +data/Xcode/SDL/Info-FrameworkNoX11.plist.i +data/test/test-automation/tests/testplatform/testplatform.c.i +data/src/main/beos/exports/genexp.pl.i +data/Xcode/TemplatesForXcode/SDL Application/SDLMain.m.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_gesture.h.i +data/src/main/macos/exports/SDL.x.i +data/visualtest/docs/latex/linux__process_8c.tex.i +data/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj.filters.i +data/src/video/ataricommon/SDL_atarievents_c.h.i +data/test/shapes/p12_shape8.png.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/SDLApp_Prefix.pch.i +data/src/thread/dc/SDL_syssem.c.i +data/docs/html/guidecdromexamples.html.i +data/src/main/macosx/Info.plist.in.i +data/visualtest/docs/html/search/variables_64.js.i +data/visualtest/docs/html/dir_f584182df4c69fab0b14563b4d535158.html.i +data/src/video/windowsrt/SDL_WinRTApp.h.i +data/acinclude/ltsugar.m4.i +data/Xcode/SDLTest/Info-testsem__Upgraded_.plist.i +data/XCodeiPhoneOS/SDL/SDLiPhoneOS.xcodeproj/hfutrell.mode1v3.i +data/test/shapes/p09_shape8.png.i +data/src/video/nanox/SDL_nxmouse_c.h.i +data/android-project/build.xml.i +data/touchTest/TODO.i +data/src/power/linux/SDL_syspower.c.i +data/test/shapes/p06_shape8alpha.png.i +data/src/video/raspberry/SDL_rpivideo.h.i +data/docs/html/sdlgetcursor.html.i +data/src/video/dga/SDL_dgaevents_c.h.i +data/test/tests/testclipboard.c.i +data/src/main/macosx/exports/Makefile.i +data/VisualC-WinPhone/SDL/SDL-WinPhone_VS2012.vcxproj.filters.i +data/VisualC/tests/testgl/testgl.vcxproj.user.i +data/src/cdrom/aix/.cvsignore.i +data/src/video/ataricommon/SDL_xbiosinterrupt_s.h.i +data/src/video/directfb/SDL_DirectFB_shape.h.i +data/src/video/x11/SDL_x11touch.h.i +data/docs/html/sdlcolor.html.i +data/visualtest/docs/html/struct_s_d_l_visual_test___action_node.html.i +data/VisualC/tests/testsprite/testsprite.vcxproj.user.i +data/test/shapes/p10_shape1alpha.bmp.i +data/EXCLUDE/GLIMM/include/IMM.hpp.i +data/src/joystick/Makefile.am.i +data/src/video/fbcon/SDL_fbvideo.h.i +data/src/video/dga/SDL_dgavideo.h.i +data/src/video/symbian/EKA1/SDL_epocvideo.h.i +data/src/haptic/windows/SDL_syshaptic_c.h.i +data/src/video/cybergfx/SDL_cgxvideo.c.i +data/include/SDL_thread.h.i +data/docs/index.html.i +data/test/button.bmp.i +data/test/shapes/p02_shape8alpha.bmp.i +data/premake/VisualC/VS2010/tests/testshader/testshader.vcxproj.filters.i +data/src/video/windows/SDL_vkeys.h.i +data/test/test-automation/Makefile.am.i +data/test/shapes/p01_shape8alpha.bmp.i +data/visualtest/docs/html/search/close.png.i +data/src/cdrom/macosx/SDL_syscdrom_c.h.i +data/docs/html/sdlsemwaittimeout.html.i +data/src/video/Xext/extensions/Xinerama.h.i +data/src/video/uikit/jumphack.c.i +data/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/dolphin.c.i +data/premake/VisualC/VS2010/tests/testplatform/testplatform.vcxproj.filters.i +data/src/thread/riscos/SDL_systhread_c.h.i +data/src/timer/macos/SDL_systimer.c.i +data/test/nds-test-progs/testsprite2/Makefile.i +data/include/SDL_log.h.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/icon.bmp.i +data/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj.filters.i +data/docs/README-directfb.md.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/SDLMain.nib/info.nib.i +data/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/SDLMain.h.i +data/VisualC/tests/testdraw2/testdraw2_VS2005.vcproj.i +data/src/cdrom/osf/.cvsignore.i +data/visualtest/docs/html/struct_s_d_l_visual_test___s_u_t_config.html.i +data/test/controllermap.c.i +data/include/SDL_surface.h.i +data/src/main/win32/SDL_win32_main.c.i +data/VisualC/tests/testgl2/testgl2_VS2005.vcproj.i +data/premake/VisualC/VS2012/tests/testmultiaudio/testmultiaudio.vcxproj.i +data/test/nds-test/Makefile.i +data/docs/man3/SDL_CreateCursor.3.i +data/Xcode/TemplatesForXcode/SDL OpenGL Application/atlantis/atlantis.h.i +data/src/loadso/dlopen/SDL_sysloadso.c.i +data/visualtest/docs/html/search/all_6d.html.i +data/src/stdlib/SDL_string.c.i +data/src/video/dc/SDL_dcvideo.h.i +data/src/video/qnxgf/SDL_gf_pixelfmt.h.i +data/touchTest/testIn.c.i +data/XCodeiPhoneOS/Test/Info.plist.i +data/visualtest/src/linux/linux_process.c.i +data/docs/html/sdlunlocksurface.html.i +data/visualtest/docs/latex/_s_d_l__visualtest__screenshot_8h.tex.i +data/src/filesystem/unix/SDL_sysfilesystem.c.i +data/config.guess.i +data/include/SDL_test_log.h.i +data/src/thread/pth/SDL_sysmutex.c.i +data/docs/man3/SDL_ConvertAudio.3.i +data/src/video/win32/SDL_dibrender.h.i +data/visualtest/docs/html/search/all_70.html.i +data/src/video/wincommon/SDL_sysmouse_c.h.i +data/Xcode-iOS/Template/SDL iOS Application/Default.png.i +data/src/video/directfb/SDL_DirectFB_WM.c.i +data/src/loadso/haiku/SDL_sysloadso.c.i +data/include/SDL_config_os2.h.i +data/src/video/quartz/.cvsignore.i +data/.cvsignore.i +data/premake/Xcode/Xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj.i +data/Xcode-iPhoneOS/Template/SDL Application/build/Debug-iphonesimulator/___PROJECTNAME___.app/PkgInfo.i +data/VisualC/tests/testfile/testfile_VS2013.vcxproj.i +data/build-scripts/winrt-build.ps1.i +data/VisualC/tests/testsprite/testsprite_VS2005.vcproj.i +data/premake/patches/709.patch.i +data/src/video/nanox/SDL_nxevents_c.h.i +data/docs/man3/SDL_SemWaitTimeout.3.i +data/src/video/ataricommon/SDL_xbiosevents_c.h.i +data/Xcode/TemplatesForProjectBuilder/SDL Custom Cocoa Application/SDLMain.nib/objects.nib.i +data/VisualC/tests/testthread/WinRT/Assets/StoreLogo.png.i +data/test/testhittesting.c.i +data/visualtest/docs/html/search/variables_73.js.i +data/premake/VisualC/VS2010/SDL_config_premake.h.i +data/src/video/android/SDL_androidrender.h.i +data/docs/html/joystick.html.i +data/visualtest/docs/html/ftv2doc.png.i +data/src/joystick/SDL_gamecontrollerdb.h.i +data/src/video/SDL_blendrect.c.i +data/docs/man3/SDL_Palette.3.i +data/VisualC/SDL_VS2005.sln.i +data/docs/html/sdldestroysemaphore.html.i +data/src/render/opengles2/SDL_gles2funcs.h.i +data/VisualC/tests/testfile/testfile.vcxproj.i +data/VisualC/tests/testwm/testwm.vcxproj.i +data/src/video/android/SDL_androidtouch.h.i +data/test/shapes/p01_shape24.bmp.i +data/src/haptic/win32/SDL_syshaptic.c.i +data/src/SDL_fatal.h.i +data/src/audio/nas/Makefile.am.i +data/premake/premake4.lua.i +data/premake/VisualC/VS2008/tests/testjoystick/testjoystick.vcproj.i +data/test/shapes/p07_shape1alpha.bmp.i +data/src/video/psp/SDL_pspvideo.c.i +data/src/video/caca/SDL_cacaevents.c.i +data/src/core/linux/SDL_ibus.h.i +data/src/hermes/x86_main.asm.i +data/docs/html/Makefile.am.i +data/include/SDL_revision.h.i +data/premake/Xcode/Xcode4/tests/testwm2/testwm2.xcodeproj/project.pbxproj.i +data/visualtest/testsprite2_sample.config.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_rwops.h.i +data/Xcode/SDLTest/Info-testtypes__Upgraded_.plist.i +data/Xcode/TemplatesForXcodeTiger/SDL Application/SDLApp.xcodeproj/project.pbxproj.i +data/src/video/xbios/SDL_xbios_ctpci.c.i +data/src/audio/dsp/SDL_dspaudio.h.i +data/include/begin_code.h.i +data/premake/VisualC/build-scripts/premake4.exe.d +data/src/video/bwindow/SDL_syswm.cc.i +data/VisualC/tests/testrumble/testrumble_VS2012.vcxproj.i +data/XCodeiPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/___PROJECTNAME___.pbxindex/strings.pbxstrings/control.i +data/src/audio/windx5/Makefile.am.i +data/src/hermes/README.i +data/src/file/Makefile.wat.i +data/docs/man3/SDL_CDPlay.3.i +data/VisualC/tests/testwm/testwm.dsp.i +data/src/video/fbcon/SDL_fbmatrox.h.i +data/PBProjects.tar.gz.i +data/visualtest/docs/latex/_s_d_l__visualtest__action__configparser_8h.tex.i +data/premake/VisualC/VS2010/tests/testautomation/testautomation.vcxproj.i +data/src/video/windib/SDL_vkeys.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/doxyfile.i +data/visualtest/docs/latex/dir_a18918b93668b435612395bbc2e8b82b.tex.i +data/premake/Xcode-iOS/Demos/happy/happy.xcodeproj/project.pbxproj.i +data/PBProjects.tar.gz.d +data/include/SDL_test_harness.h.i +data/src/cdrom/freebsd/SDL_syscdrom.c.i +data/src/video/gtk/SDL_gtkevents_c.h.i +data/README.psp.i +data/android-project/proguard-project.txt.i +data/src/cpuinfo/COPYING.LIB.i +data/src/video/winrt/SDL_winrtmessagebox.cpp.i +data/visualtest/docs/latex/_s_d_l__visualtest__process_8h.tex.i +data/src/audio/mint/SDL_mintaudio_mcsn.h.i +data/src/loadso/mint/SDL_loadso.c.i +data/test/test-automation/tests/Makefile.am.i +data/Xcode-iPhoneOS/Template/SDL Application/___PROJECTNAME___.xcodeproj/hfutrell.mode1v3.i +data/src/video/SDL_yuv_sw.c.i +data/README.i +data/docs/html/sdlactiveevent.html.i +data/premake/Xcode/Xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj.i +data/VisualC/tests/controllermap/controllermap.vcxproj.i +data/Xcode/SDLTest/Info-testnativecocoa.plist.i +data/src/video/quartz/Makefile.am.i +data/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj.i +data/src/audio/macrom/SDL_romaudio.h.i +data/Xcode/SDLTest/Info-testvidinfo__Upgraded_.plist.i +data/install-sh.i +data/Xcode/TemplatesForXcode/SDL Cocoa Application/English.lproj/SDLMain.nib/classes.nib.i +data/src/video/ps2gs/SDL_gsevents_c.h.i +data/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/SDLMain.m.i +data/include/SDL_config_minimal.h.i +data/test/shapes/p15_shape8alpha.png.i +data/VisualC/tests/testoverlay/testoverlay.dsp.i +data/premake/README.txt.i +data/VisualC/tests/testdraw2/testdraw2.vcxproj.i +data/docs/README-pandora.md.i +data/src/power/haiku/SDL_syspower.c.i +data/premake/VisualC/VS2012/tests/testwm2/testwm2.vcxproj.filters.i +data/src/video/SDL_draw.h.i +data/src/events/scancodes_linux.h.i +data/doc/README-SDL.md.i +data/premake/projects/testtimer.lua.i +data/VisualC/tests/graywin/graywin_VS2005.vcproj.i +data/docs/html/sdlcdeject.html.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/SDLApp_Prefix.pch.i +data/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns.i +data/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png.i +data/src/main/macos/exports/Makefile.i +data/visualtest/docs/html/tab_b.png.i +data/src/core/winrt/SDL_winrtapp.cpp.i +data/visualtest/docs/html/_s_d_l__visualtest__screenshot_8h.html.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_endian.h.i +data/visualtest/docs/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html.i +data/src/video/wincommon/SDL_lowvideo.h.i +data/src/video/cocoa/SDL_cocoashape.m.i +data/Xcode/TemplatesForXcode/SDL Custom Cocoa Application/MyCustomView.m.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/lib/libSDLiPhoneOS.a.i +data/src/video/android/SDL_androidmessagebox.c.i +data/test/test-automation/src/libSDLtest/common/img_face.c.i +data/src/video/wayland/SDL_waylandtouch.c.i +data/visualtest/docs/html/search/variables_74.js.i +data/premake/Xcode/Xcode4/tests/testrumble/testrumble.xcodeproj/project.pbxproj.i +data/src/video/windowsrt/SDL_winrtevents_c.h.i +data/src/test/SDL_test_harness.c.i +data/include/SDL_config.h.cmake.i +data/premake/VisualC/VS2010/tests/testrelative/testrelative.vcxproj.filters.i +data/src/video/windowsrt/Direct3DBase.h.i +data/VisualC/tests/testvidinfo/testvidinfo.vcxproj.user.i +data/src/video/quartz/SDL_QuartzWindow.h.i +data/src/audio/SDL_wave.c.i +data/build-scripts/config.guess.i +data/src/core/winrt/SDL_winrtapp_common.h.i +data/src/video/dummy/SDL_nullframebuffer_c.h.i +data/src/video/windowsrt/SimpleVertexShader.hlsl.i +data/src/video/x11/imKStoUCS.c.i +data/Xcode-iPhoneOS/Demos/data/space.bmp.i +data/src/render/software/SDL_render_sw.c.i +data/Xcode-iPhoneOS/Demos/data/space.bmp.d +data/VisualC/tests/loopwave/WinRT/Assets/SmallLogo.png.i +data/Xcode/SDLTest/Info-testiconv.plist.i +data/src/main/haiku/SDL_BApp.h.i +data/src/power/windows/SDL_syspower.c.i +data/src/power/android/SDL_syspower.c.i +data/src/video/x11/SDL_shape.c.i +data/test/testdragareas.c.i +data/src/audio/SDL_mixer.c.i +data/test/testerror.c.i +data/src/video/qnxgf/SDL_gf_pixelfmt.c.i +data/docs/html/sdlpalette.html.i +data/src/video/quartz/SDL_QuartzGL.m.i +data/src/video/fbcon/SDL_fbkeys.h.i +data/premake/VisualC/VS2012/tests/testscale/testscale.vcxproj.i +data/src/haptic/SDL_haptic_c.h.i +data/test/testautomation_suites.h.i +data/premake/VisualC/VS2008/tests/testresample/testresample.vcproj.i +data/test/test-automation/src/libSDLtest/fuzzer/utl_md5.h.i +data/premake/VisualC/VS2012/tests/testmessage/testmessage.vcxproj.i +data/src/thread/os2/SDL_syssem.c.i +data/src/video/Xext/extensions/Xvlib.h.i +data/android-project/local.properties.i +data/src/events/SDL_clipboardevents.c.i +data/premake/VisualC/VS2008/tests/testlock/testlock.vcproj.i +data/docs/html/sdleventstate.html.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_clipboard.h.i +data/touchTest/Iphone Test/touchTestIPhone2/touchTestIPhone/include/SDL_pixels.h.i +data/include/SDL_touch.h.i +data/src/video/windows/SDL_windowsgamma.h.i +data/src/video/ataricommon/SDL_ikbdinterrupt_s.h.i +data/src/audio/dmedia/.cvsignore.i +data/src/core/winrt/SDL_winrtapp.h.i +data/src/video/photon/SDL_ph_mouse.c.i +data/src/video/directfb/SDL_DirectFB_opengl.h.i +data/docs/man3/SDL_CondWaitTimeout.3.i +data/src/video/haiku/SDL_bevents.h.i +data/src/render/direct3d/SDL_render_d3d.c.i +data/docs/html/sdlsyswmevent.html.i +data/src/video/fbcon/Makefile.am.i +data/src/audio/amigaos/SDL_sysaudio.h.i +data/VisualC/tests/testjoystick/testjoystick.vcxproj.i +data/docs/man3/SDL_GetMouseState.3.i +data/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/project.pbxproj.i +data/src/audio/SDL_audiodev.c.i +data/src/video/haiku/SDL_bclipboard.cc.i +data/premake/Xcode/Xcode4/tests/testgl2/testgl2.xcodeproj/project.pbxproj.i +data/src/cdrom/win32/.cvsignore.i +data/VisualC/SDL_VS2012_WinRT.sln.i +data/src/video/dc/SDL_dcmouse.c.i +data/premake/Xcode/Xcode4/tests/testrendertarget/testrendertarget.xcodeproj/project.pbxproj.i +data/src/main/macosx/SDLMain.nib.tar.gz.i +data/docs/man3/SDL_SetAlpha.3.i +data/visualtest/src/variators.c.i +data/src/core/windows/SDL_windows.c.i +data/Xcode/SDLTest/Info-testlock__Upgraded_.plist.i +data/src/cdrom/macosx/AudioFilePlayer.cpp.i +data/test/test-automation/build-scripts/install-tests.sh.i +data/symbian.zip.i +data/src/cdrom/beos/SDL_syscdrom.c.i +data/docs/man3/SDL_PollEvent.3.i +data/src/cdrom/SDL_cdrom.c.i +data/Xcode-iPhoneOS/Template/SDL Application/build/___PROJECTNAME___.build/Debug-iphonesimulator/___PROJECTNAME___.build/___PROJECTNAME___.hmap.i +data/test/testfill.c.i +data/src/video/photon/SDL_ph_gl.c.i +data/src/video/symbian/EKA2/dsa_old.cpp.i +data/test/shapes/p02_shape24.bmp.i +data/README-gesture.txt.i +data/test/nds-test-progs/sprite/source/common.h.i +data/visualtest/docs/html/struct_s_d_l___process_exit_status.html.i +data/src/video/bwindow/SDL_bevents.cc.i +data/src/video/windx5/Makefile.am.i +data/test/shapes/p10_shape8alpha.bmp.i +data/docs/man3/SDL_keysym.3.i +data/Xcode/SDLTest/Info-testjoystick__Upgraded_.plist.i +data/docs/html/sdlquitsubsystem.html.i +data/premake/VisualC/VS2012/tests/testfile/testfile.vcxproj.i +data/VisualC/tests/testrumble/testrumble_VS2008.vcproj.i +data/VisualC/tests/testpower/testpower.vcproj.i +data/premake/projects/testver.lua.i +data/test/test-automation/src/libSDLtest/xml.c.i +data/src/video/qtopia/SDL_sysvideo.cc.i +data/premake/VisualC/VS2010/tests/testchessboard/testchessboard.vcxproj.i +data/test/test-automation/src/libtest/common/img_blitblend.c.i +data/test/testdisplayinfo.c.i +data/VisualCE/testtimer/testtimer.vcp.i +data/Xcode-iOS/Demos/src/fireworks.c.i +data/test/testgamma.c.i +data/src/thread/dc/SDL_sysmutex_c.h.i +data/docs/man3/SDL_DisplayFormatAlpha.3.i +data/visualtest/include/SDL_visualtest_variator_common.h.i +data/acinclude/esd.m4.i +data/test/shapes/trollface_24.bmp.i +data/test/testautomation_rwops.c.i +data/test/nds-test/build/nds-test.map.i +data/src/video/uikit/SDL_uikitopengles.h.i +data/Xcode-iPhoneOS/Demos/data/bitmapfont/license.txt.i +data/visualtest/docs/html/globals.html.i +data/premake/VisualC/VS2010/tests/testscale/testscale.vcxproj.i +data/src/cdrom/macos/SDL_syscdrom_c.h.i +data/src/video/Xext/extensions/.cvsignore.i +data/test/test-automation/test.c.i +data/test/test-automation/src/libtest/common/img_blit.c.i +data/src/main/nacl/SDL_nacl_main.c.i +data/include/SDL_audio.h.i +data/src/audio/windib/SDL_dibaudio.c.i +data/src/video/SDL_blit_A.h.i +data/include/SDL_shape.h.i +data/src/thread/beos/SDL_systhread.c.i diff --git a/SDL/.hg/store/phaseroots b/SDL/.hg/store/phaseroots new file mode 100644 index 0000000..e69de29 diff --git a/SDL/.hg/store/undo b/SDL/.hg/store/undo new file mode 100644 index 0000000..72efcce Binary files /dev/null and b/SDL/.hg/store/undo differ diff --git a/SDL/.hg/store/undo.phaseroots b/SDL/.hg/store/undo.phaseroots new file mode 100644 index 0000000..e69de29 diff --git a/SDL/.hg/undo.bookmarks b/SDL/.hg/undo.bookmarks new file mode 100644 index 0000000..e69de29 diff --git a/SDL/.hg/undo.branch b/SDL/.hg/undo.branch new file mode 100644 index 0000000..331d858 --- /dev/null +++ b/SDL/.hg/undo.branch @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/SDL/.hg/undo.desc b/SDL/.hg/undo.desc new file mode 100644 index 0000000..da0e10a --- /dev/null +++ b/SDL/.hg/undo.desc @@ -0,0 +1,3 @@ +0 +pull +https://hg.libsdl.org/SDL diff --git a/SDL/.hg/undo.dirstate b/SDL/.hg/undo.dirstate new file mode 100644 index 0000000..e69de29 diff --git a/SDL/.hgignore b/SDL/.hgignore new file mode 100644 index 0000000..84122f8 --- /dev/null +++ b/SDL/.hgignore @@ -0,0 +1,126 @@ +syntax:glob +aclocal.m4 +autom4te* +config.cache +config.log +config.status +Makefile +sdl-config +SDL2.spec +build +Build + +# for Xcode +*.orig +*.swp +*.tmp +*.rej +*~ +*.o +*.mode1* +*.perspective* +*.pbxuser +(^|/)build($|/) +.DS_Store +xcuserdata +*.xcworkspace + +# for Visual C++ +Debug +Release +*.user +*.ncb +*.suo +*.sdf +VisualC/tests/loopwave/sample.wav +VisualC/tests/testautomation/CompareSurfaces0001_Reference.bmp +VisualC/tests/testautomation/CompareSurfaces0001_TestOutput.bmp +VisualC/tests/testgamecontroller/axis.bmp +VisualC/tests/testgamecontroller/button.bmp +VisualC/tests/testgamecontroller/controllermap.bmp +VisualC/tests/testoverlay2/moose.dat +VisualC/tests/testrendertarget/icon.bmp +VisualC/tests/testrendertarget/sample.bmp +VisualC/tests/testscale/icon.bmp +VisualC/tests/testscale/sample.bmp +VisualC/tests/testsprite2/icon.bmp +VisualC/visualtest/icon.bmp +VisualC/visualtest/testquit.actions +VisualC/visualtest/testquit.config +VisualC/visualtest/testquit.exe +VisualC/visualtest/testquit.parameters +VisualC/visualtest/testsprite2.exe +VisualC/visualtest/testsprite2_sample.actions +VisualC/visualtest/testsprite2_sample.config +VisualC/visualtest/testsprite2_sample.parameters + +# for Android +android-project/local.properties + +sdl.pc +test/autom4te* +test/config.cache +test/config.log +test/config.status +test/Makefile +test/SDL2.dll +test/checkkeys +test/controllermap +test/loopwave +test/loopwavequeue +test/testatomic +test/testaudiohotplug +test/testaudioinfo +test/testautomation +test/testdraw2 +test/testdrawchessboard +test/testdropfile +test/testerror +test/testfile +test/testgamecontroller +test/testgesture +test/testgl2 +test/testgles +test/testgles2 +test/testhaptic +test/testhittesting +test/testhotplug +test/testiconv +test/testime +test/testintersections +test/testjoystick +test/testkeys +test/testloadso +test/testlock +test/testmessage +test/testmultiaudio +test/testnative +test/testoverlay2 +test/testplatform +test/testpower +test/testfilesystem +test/testrelative +test/testrendercopyex +test/testrendertarget +test/testresample +test/testrumble +test/testscale +test/testsem +test/testshader +test/testshape +test/testsprite2 +test/testspriteminimal +test/teststreaming +test/testthread +test/testtimer +test/testver +test/testviewport +test/testwm2 +test/testbounds +test/torturethread +test/testdisplayinfo +test/testqsort +test/*.exe +test/*.dSYM +buildbot +test/buildbot diff --git a/SDL/.hgtags b/SDL/.hgtags new file mode 100644 index 0000000..899f4f7 --- /dev/null +++ b/SDL/.hgtags @@ -0,0 +1,31 @@ +0afe0e38e02cf2048e93582f01c52fbb91d3c7bb release-1.2.7 +230b156829ed13b31134d96f689c917981f57b84 release-1.2.5 +27cab50ec9c746e886ce0f3fdaa0b0cdc55a594f release-1.2.11 +2fe3fbd2bff50165b3cad33bf40d70b3bb3c9fd0 release-1.2.3 +3c052d3bcc76c899dfd4846be76243a78e8c7180 release-1.2.4 +3c5eed71a3320962551af3b3dfbee0c99fcf0086 release-1.2.10 +4867f7f7dd3426d1dbbeef48b3f3b3aa19590cc4 release-1.2.12 +6e28dae59e3baf4447c83e833a8d2ac912536f5b release-1.2.1 +7c2589fb8d4df54c6faabd3faebd0c0e73f67879 release-1.2.13 +86de11faf082881ad9b73a1a1d78733ca07f8db8 release-1.2.6 +bb051fa871aa0b53ea57df56a446cec3bb85924c release-1.2.2 +cfcb2e1c36ebe9809577adf768b0ec53e8768af9 release-1.2.8 +e044e7c70a50a2f54d14ee20d0933e904e5853b6 release-1.2.9 +f14cf9d71233934811774f941d0de121d5f96ccf release-1.2.14 +39c22a953456f6c9e2c8993c8ff973824104102a pre-touch-removal +ccf5fbfa2afabab429ad911308f362201a94d810 macosx_10_4_supported +d6a8fa507a45d9de7258e51585eab3e45c415149 release-2.0.0 +a8bd63b33636715f2cf6e7d36ab7201acbd478fe release-2.0.1 +a8bd63b33636715f2cf6e7d36ab7201acbd478fe release-2.0.1 +715a01415ac9305b9f8ec72b99fcf8cc9dd64dde release-2.0.1 +715a01415ac9305b9f8ec72b99fcf8cc9dd64dde release-2.0.1 +9ec71e56071cc80eda6691a3f8719ed5395dfcfb release-2.0.1 +9ec71e56071cc80eda6691a3f8719ed5395dfcfb release-2.0.1 +0000000000000000000000000000000000000000 release-2.0.1 +0000000000000000000000000000000000000000 release-2.0.1 +b9663c77f5c95ebf05f3c18e80619caae8ae1460 release-2.0.1 +be2102f000d0d2d9bab75e9703a1d503d0f6bb33 release-2.0.2 +f285b9487756ff681f76c85644222c03a7bfa1c7 release-2.0.3 +f285b9487756ff681f76c85644222c03a7bfa1c7 release-2.0.3 +704a0bfecf754e4e1383f83c7d5118b00cae26ea release-2.0.3 +e12c387305129c847b3928a123300b113782fe3f release-2.0.4 diff --git a/SDL/Android.mk b/SDL/Android.mk new file mode 100755 index 0000000..13d765f --- /dev/null +++ b/SDL/Android.mk @@ -0,0 +1,69 @@ +LOCAL_PATH := $(call my-dir) + +########################### +# +# SDL shared library +# +########################### + +include $(CLEAR_VARS) + +LOCAL_MODULE := SDL2 + +LOCAL_C_INCLUDES := $(LOCAL_PATH)/include + +LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) + +LOCAL_SRC_FILES := \ + $(subst $(LOCAL_PATH)/,, \ + $(wildcard $(LOCAL_PATH)/src/*.c) \ + $(wildcard $(LOCAL_PATH)/src/audio/*.c) \ + $(wildcard $(LOCAL_PATH)/src/audio/android/*.c) \ + $(wildcard $(LOCAL_PATH)/src/audio/dummy/*.c) \ + $(LOCAL_PATH)/src/atomic/SDL_atomic.c \ + $(LOCAL_PATH)/src/atomic/SDL_spinlock.c.arm \ + $(wildcard $(LOCAL_PATH)/src/core/android/*.c) \ + $(wildcard $(LOCAL_PATH)/src/cpuinfo/*.c) \ + $(wildcard $(LOCAL_PATH)/src/dynapi/*.c) \ + $(wildcard $(LOCAL_PATH)/src/events/*.c) \ + $(wildcard $(LOCAL_PATH)/src/file/*.c) \ + $(wildcard $(LOCAL_PATH)/src/haptic/*.c) \ + $(wildcard $(LOCAL_PATH)/src/haptic/dummy/*.c) \ + $(wildcard $(LOCAL_PATH)/src/joystick/*.c) \ + $(wildcard $(LOCAL_PATH)/src/joystick/android/*.c) \ + $(wildcard $(LOCAL_PATH)/src/loadso/dlopen/*.c) \ + $(wildcard $(LOCAL_PATH)/src/power/*.c) \ + $(wildcard $(LOCAL_PATH)/src/power/android/*.c) \ + $(wildcard $(LOCAL_PATH)/src/filesystem/android/*.c) \ + $(wildcard $(LOCAL_PATH)/src/render/*.c) \ + $(wildcard $(LOCAL_PATH)/src/render/*/*.c) \ + $(wildcard $(LOCAL_PATH)/src/stdlib/*.c) \ + $(wildcard $(LOCAL_PATH)/src/thread/*.c) \ + $(wildcard $(LOCAL_PATH)/src/thread/pthread/*.c) \ + $(wildcard $(LOCAL_PATH)/src/timer/*.c) \ + $(wildcard $(LOCAL_PATH)/src/timer/unix/*.c) \ + $(wildcard $(LOCAL_PATH)/src/video/*.c) \ + $(wildcard $(LOCAL_PATH)/src/video/android/*.c) \ + $(wildcard $(LOCAL_PATH)/src/test/*.c)) + +LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES +LOCAL_LDLIBS := -ldl -lGLESv1_CM -lGLESv2 -llog -landroid + +include $(BUILD_SHARED_LIBRARY) + +########################### +# +# SDL static library +# +########################### + +LOCAL_MODULE := SDL2_static + +LOCAL_MODULE_FILENAME := libSDL2 + +LOCAL_SRC_FILES += $(subst $(LOCAL_PATH)/,,$(LOCAL_PATH)/src/main/android/SDL_android_main.c) + +LOCAL_LDLIBS := +LOCAL_EXPORT_LDLIBS := -Wl,--undefined=Java_org_libsdl_app_SDLActivity_nativeInit -ldl -lGLESv1_CM -lGLESv2 -llog -landroid + +include $(BUILD_STATIC_LIBRARY) diff --git a/SDL/BUGS.txt b/SDL/BUGS.txt new file mode 100644 index 0000000..7ef5538 --- /dev/null +++ b/SDL/BUGS.txt @@ -0,0 +1,16 @@ + +Bugs are now managed in the SDL bug tracker, here: + + http://bugzilla.libsdl.org/ + +You may report bugs there, and search to see if a given issue has already + been reported, discussed, and maybe even fixed. + + +You may also find help on the SDL mailing list. Subscription information: + + http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org + +Bug reports are welcome here, but we really appreciate if you use Bugzilla, as + bugs discussed on the mailing list may be forgotten or missed. + diff --git a/SDL/CMakeLists.txt b/SDL/CMakeLists.txt new file mode 100644 index 0000000..54571ff --- /dev/null +++ b/SDL/CMakeLists.txt @@ -0,0 +1,1579 @@ +if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) + message(FATAL_ERROR "Prevented in-tree built. Please create a build directory outside of the SDL source code and call cmake from there") +endif() + +cmake_minimum_required(VERSION 2.8) +project(SDL2 C) + +# !!! FIXME: this should probably do "MACOSX_RPATH ON" as a target property +# !!! FIXME: for the SDL2 shared library (so you get an +# !!! FIXME: install_name ("soname") of "@rpath/libSDL-whatever.dylib" +# !!! FIXME: instead of "/usr/local/lib/libSDL-whatever.dylib"), but I'm +# !!! FIXME: punting for now and leaving the existing behavior. Until this +# !!! FIXME: properly resolved, this line silences a warning in CMake 3.0+. +# !!! FIXME: remove it and this comment entirely once the problem is +# !!! FIXME: properly resolved. +#cmake_policy(SET CMP0042 OLD) + +include(CheckFunctionExists) +include(CheckLibraryExists) +include(CheckIncludeFiles) +include(CheckIncludeFile) +include(CheckSymbolExists) +include(CheckCSourceRuns) +include(CheckCCompilerFlag) +include(CheckTypeSize) +include(CheckStructHasMember) +include(CMakeDependentOption) +include(FindPkgConfig) +set(CMAKE_MODULE_PATH "${SDL2_SOURCE_DIR}/cmake") +include(${SDL2_SOURCE_DIR}/cmake/macros.cmake) +include(${SDL2_SOURCE_DIR}/cmake/sdlchecks.cmake) + +# General settings +# Edit include/SDL_version.h and change the version, then: +# SDL_MICRO_VERSION += 1; +# SDL_INTERFACE_AGE += 1; +# SDL_BINARY_AGE += 1; +# if any functions have been added, set SDL_INTERFACE_AGE to 0. +# if backwards compatibility has been broken, +# set SDL_BINARY_AGE and SDL_INTERFACE_AGE to 0. +set(SDL_MAJOR_VERSION 2) +set(SDL_MINOR_VERSION 0) +set(SDL_MICRO_VERSION 4) +set(SDL_INTERFACE_AGE 0) +set(SDL_BINARY_AGE 4) +set(SDL_VERSION "${SDL_MAJOR_VERSION}.${SDL_MINOR_VERSION}.${SDL_MICRO_VERSION}") + +# Calculate a libtool-like version number +math(EXPR LT_CURRENT "${SDL_MICRO_VERSION} - ${SDL_INTERFACE_AGE}") +math(EXPR LT_AGE "${SDL_BINARY_AGE} - ${SDL_INTERFACE_AGE}") +math(EXPR LT_MAJOR "${LT_CURRENT}- ${LT_AGE}") +set(LT_REVISION "${SDL_INTERFACE_AGE}") +set(LT_RELEASE "${SDL_MAJOR_VERSION}.${SDL_MINOR_VERSION}") +set(LT_VERSION "${LT_MAJOR}.${LT_AGE}.${LT_REVISION}") + +message(STATUS "${LT_VERSION} :: ${LT_AGE} :: ${LT_REVISION} :: ${LT_CURRENT} :: ${LT_RELEASE}") + +# General settings & flags +set(LIBRARY_OUTPUT_DIRECTORY "build") +# Check for 64 or 32 bit +set(SIZEOF_VOIDP ${CMAKE_SIZEOF_VOID_P}) +if(CMAKE_SIZEOF_VOID_P EQUAL 8) + set(ARCH_64 TRUE) + set(PROCESSOR_ARCH "x64") +else() + set(ARCH_64 FALSE) + set(PROCESSOR_ARCH "x86") +endif() +set(LIBNAME SDL2) +if(NOT LIBTYPE) + set(LIBTYPE SHARED) +endif() + +# Get the platform +if(WIN32) + if(NOT WINDOWS) + set(WINDOWS TRUE) + endif() +elseif(UNIX AND NOT APPLE) + if(CMAKE_SYSTEM_NAME MATCHES ".*Linux") + set(LINUX TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "kFreeBSD.*") + set(FREEBSD TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "kNetBSD.*|NetBSD.*") + set(NETBSD TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "kOpenBSD.*|OpenBSD.*") + set(OPENBSD TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES ".*GNU.*") + set(GNU TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES ".*BSDI.*") + set(BSDI TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "DragonFly.*|FreeBSD") + set(FREEBSD TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "SYSV5.*") + set(SYSV5 TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "Solaris.*") + set(SOLARIS TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "HP-UX.*") + set(HPUX TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "AIX.*") + set(AIX TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES "Minix.*") + set(MINIX TRUE) + endif() +elseif(APPLE) + if(CMAKE_SYSTEM_NAME MATCHES ".*Darwin.*") + set(DARWIN TRUE) + elseif(CMAKE_SYSTEM_NAME MATCHES ".*MacOS.*") + set(MACOSX TRUE) + endif() + # TODO: iOS? +elseif(CMAKE_SYSTEM_NAME MATCHES "BeOS.*") + message_error("BeOS support has been removed as of SDL 2.0.2.") +elseif(CMAKE_SYSTEM_NAME MATCHES "Haiku.*") + set(HAIKU TRUE) +endif() + +# Don't mistake osx for unix +if(UNIX AND NOT APPLE) + set(UNIX_SYS ON) +else() + set(UNIX_SYS OFF) +endif() + +if(UNIX OR APPLE) + set(UNIX_OR_MAC_SYS ON) +else() + set(UNIX_OR_MAC_SYS OFF) +endif() + +if (UNIX_OR_MAC_SYS AND NOT EMSCRIPTEN) # JavaScript does not yet have threading support, so disable pthreads when building for Emscripten. + set(SDL_PTHREADS_ENABLED_BY_DEFAULT ON) +else() + set(SDL_PTHREADS_ENABLED_BY_DEFAULT OFF) +endif() + +# Default option knobs +if(APPLE OR ARCH_64) + set(OPT_DEF_SSEMATH ON) +endif() +if(UNIX OR MINGW OR MSYS) + set(OPT_DEF_LIBC ON) +endif() + +# Compiler info +if(CMAKE_COMPILER_IS_GNUCC) + set(USE_GCC TRUE) + set(OPT_DEF_ASM TRUE) +elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") + set(USE_CLANG TRUE) + set(OPT_DEF_ASM TRUE) +elseif(MSVC_VERSION GREATER 1400) # VisualStudio 8.0+ + set(OPT_DEF_ASM TRUE) + #set(CMAKE_C_FLAGS "/ZI /WX- / +else() + set(OPT_DEF_ASM FALSE) +endif() + +# Default flags, if not set otherwise +if("$ENV{CFLAGS}" STREQUAL "") + if(CMAKE_BUILD_TYPE STREQUAL "") + if(USE_GCC OR USE_CLANG) + set(CMAKE_C_FLAGS "-g -O3") + endif() + endif() +else() + set(CMAKE_C_FLAGS "$ENV{CFLAGS}") + list(APPEND EXTRA_CFLAGS "$ENV{CFLAGS}") +endif() +if(NOT ("$ENV{CFLAGS}" STREQUAL "")) # Hackish, but does the trick on Win32 + list(APPEND EXTRA_LDFLAGS "$ENV{LDFLAGS}") +endif() + +if(MSVC) + option(FORCE_STATIC_VCRT "Force /MT for static VC runtimes" OFF) + if(FORCE_STATIC_VCRT) + foreach(flag_var + CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE + CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO) + if(${flag_var} MATCHES "/MD") + string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") + endif() + endforeach() + endif() + + # Make sure /RTC1 is disabled, otherwise it will use functions from the CRT + foreach(flag_var + CMAKE_C_FLAGS CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_RELEASE + CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_RELWITHDEBINFO) + string(REGEX REPLACE "/RTC(su|[1su])" "" ${flag_var} "${${flag_var}}") + endforeach(flag_var) +endif() + +# Those are used for pkg-config and friends, so that the SDL2.pc, sdl2-config, +# etc. are created correctly. +set(SDL_LIBS "-lSDL2") +set(SDL_CFLAGS "") + +# Emscripten toolchain has a nonempty default value for this, and the checks +# in this file need to change that, so remember the original value, and +# restore back to that afterwards. For check_function_exists() to work in +# Emscripten, this value must be at its default value. +set(ORIG_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS}) + +if(CYGWIN) + # We build SDL on cygwin without the UNIX emulation layer + include_directories("-I/usr/include/mingw") + set(CMAKE_REQUIRED_FLAGS "-mno-cygwin") + check_c_source_compiles("int main(int argc, char **argv) {}" + HAVE_GCC_NO_CYGWIN) + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + if(HAVE_GCC_NO_CYGWIN) + list(APPEND EXTRA_LDFLAGS "-mno-cygwin") + list(APPEND SDL_LIBS "-mno-cygwin") + endif() + set(SDL_CFLAGS "${SDL_CFLAGS} -I/usr/include/mingw") +endif() + +add_definitions(-DUSING_GENERATED_CONFIG_H) +# General includes +include_directories(${SDL2_BINARY_DIR}/include ${SDL2_SOURCE_DIR}/include) + +# All these ENABLED_BY_DEFAULT vars will default to ON if not specified, so +# you only need to have a platform override them if they are disabling. +set(OPT_DEF_ASM TRUE) +if(EMSCRIPTEN) + # Set up default values for the currently supported set of subsystems: + # Emscripten/Javascript does not have assembly support, a dynamic library + # loading architecture, low-level CPU inspection or multithreading. + set(OPT_DEF_ASM FALSE) + set(SDL_SHARED_ENABLED_BY_DEFAULT OFF) + set(SDL_ATOMIC_ENABLED_BY_DEFAULT OFF) + set(SDL_THREADS_ENABLED_BY_DEFAULT OFF) + set(SDL_LOADSO_ENABLED_BY_DEFAULT OFF) + set(SDL_CPUINFO_ENABLED_BY_DEFAULT OFF) + set(SDL_DLOPEN_ENABLED_BY_DEFAULT OFF) +endif() + +if (NOT DEFINED SDL_SHARED_ENABLED_BY_DEFAULT) + set(SDL_SHARED_ENABLED_BY_DEFAULT ON) +endif() + +set(SDL_SUBSYSTEMS + Atomic Audio Video Render Events Joystick Haptic Power Threads Timers + File Loadso CPUinfo Filesystem Dlopen) +foreach(_SUB ${SDL_SUBSYSTEMS}) + string(TOUPPER ${_SUB} _OPT) + if (NOT DEFINED SDL_${_OPT}_ENABLED_BY_DEFAULT) + set(SDL_${_OPT}_ENABLED_BY_DEFAULT ON) + endif() + option(SDL_${_OPT} "Enable the ${_SUB} subsystem" ${SDL_${_OPT}_ENABLED_BY_DEFAULT}) +endforeach() + +option_string(ASSERTIONS "Enable internal sanity checks (auto/disabled/release/enabled/paranoid)" "auto") +#set_option(DEPENDENCY_TRACKING "Use gcc -MMD -MT dependency tracking" ON) +set_option(LIBC "Use the system C library" ${OPT_DEF_LIBC}) +set_option(GCC_ATOMICS "Use gcc builtin atomics" ${USE_GCC}) +set_option(ASSEMBLY "Enable assembly routines" ${OPT_DEF_ASM}) +set_option(SSEMATH "Allow GCC to use SSE floating point math" ${OPT_DEF_SSEMATH}) +set_option(MMX "Use MMX assembly routines" ${OPT_DEF_ASM}) +set_option(3DNOW "Use 3Dnow! MMX assembly routines" ${OPT_DEF_ASM}) +set_option(SSE "Use SSE assembly routines" ${OPT_DEF_ASM}) +set_option(SSE2 "Use SSE2 assembly routines" ${OPT_DEF_SSEMATH}) +set_option(ALTIVEC "Use Altivec assembly routines" ${OPT_DEF_ASM}) +set_option(DISKAUDIO "Support the disk writer audio driver" ON) +set_option(DUMMYAUDIO "Support the dummy audio driver" ON) +set_option(VIDEO_DIRECTFB "Use DirectFB video driver" OFF) +dep_option(DIRECTFB_SHARED "Dynamically load directfb support" ON "VIDEO_DIRECTFB" OFF) +set_option(FUSIONSOUND "Use FusionSound audio driver" OFF) +dep_option(FUSIONSOUND_SHARED "Dynamically load fusionsound audio support" ON "FUSIONSOUND" OFF) +set_option(VIDEO_DUMMY "Use dummy video driver" ON) +set_option(VIDEO_OPENGL "Include OpenGL support" ON) +set_option(VIDEO_OPENGLES "Include OpenGL ES support" ON) +set_option(PTHREADS "Use POSIX threads for multi-threading" ${SDL_PTHREADS_ENABLED_BY_DEFAULT}) +dep_option(PTHREADS_SEM "Use pthread semaphores" ON "PTHREADS" OFF) +set_option(SDL_DLOPEN "Use dlopen for shared object loading" ${SDL_DLOPEN_ENABLED_BY_DEFAULT}) +set_option(OSS "Support the OSS audio API" ${UNIX_SYS}) +set_option(ALSA "Support the ALSA audio API" ${UNIX_SYS}) +dep_option(ALSA_SHARED "Dynamically load ALSA audio support" ON "ALSA" OFF) +set_option(ESD "Support the Enlightened Sound Daemon" ${UNIX_SYS}) +dep_option(ESD_SHARED "Dynamically load ESD audio support" ON "ESD" OFF) +set_option(PULSEAUDIO "Use PulseAudio" ${UNIX_SYS}) +dep_option(PULSEAUDIO_SHARED "Dynamically load PulseAudio support" ON "PULSEAUDIO" OFF) +set_option(ARTS "Support the Analog Real Time Synthesizer" ${UNIX_SYS}) +dep_option(ARTS_SHARED "Dynamically load aRts audio support" ON "ARTS" OFF) +set_option(NAS "Support the NAS audio API" ${UNIX_SYS}) +set_option(NAS_SHARED "Dynamically load NAS audio API" ${UNIX_SYS}) +set_option(SNDIO "Support the sndio audio API" ${UNIX_SYS}) +set_option(RPATH "Use an rpath when linking SDL" ${UNIX_SYS}) +set_option(CLOCK_GETTIME "Use clock_gettime() instead of gettimeofday()" OFF) +set_option(INPUT_TSLIB "Use the Touchscreen library for input" ${UNIX_SYS}) +set_option(VIDEO_X11 "Use X11 video driver" ${UNIX_SYS}) +set_option(VIDEO_WAYLAND "Use Wayland video driver" ${UNIX_SYS}) +dep_option(WAYLAND_SHARED "Dynamically load Wayland support" ON "VIDEO_WAYLAND" OFF) +dep_option(VIDEO_WAYLAND_QT_TOUCH "QtWayland server support for Wayland video driver" ON "VIDEO_WAYLAND" OFF) +set_option(VIDEO_MIR "Use Mir video driver" ${UNIX_SYS}) +dep_option(MIR_SHARED "Dynamically load Mir support" ON "VIDEO_MIR" OFF) +set_option(VIDEO_RPI "Use Raspberry Pi video driver" ${UNIX_SYS}) +dep_option(X11_SHARED "Dynamically load X11 support" ON "VIDEO_X11" OFF) +set(SDL_X11_OPTIONS Xcursor Xinerama XInput Xrandr Xscrnsaver XShape Xvm) +foreach(_SUB ${SDL_X11_OPTIONS}) + string(TOUPPER "VIDEO_X11_${_SUB}" _OPT) + dep_option(${_OPT} "Enable ${_SUB} support" ON "VIDEO_X11" OFF) +endforeach() +set_option(VIDEO_COCOA "Use Cocoa video driver" ${APPLE}) +set_option(DIRECTX "Use DirectX for Windows audio/video" ${WINDOWS}) +set_option(RENDER_D3D "Enable the Direct3D render driver" ${WINDOWS}) +set_option(VIDEO_VIVANTE "Use Vivante EGL video driver" ${UNIX_SYS}) + +# TODO: We should (should we?) respect cmake's ${BUILD_SHARED_LIBS} flag here +# The options below are for compatibility to configure's default behaviour. +set(SDL_SHARED ${SDL_SHARED_ENABLED_BY_DEFAULT} CACHE BOOL "Build a shared version of the library") +set(SDL_STATIC ON CACHE BOOL "Build a static version of the library") + +dep_option(SDL_STATIC_PIC "Static version of the library should be built with Position Independent Code" OFF "SDL_STATIC" OFF) + +# General source files +file(GLOB SOURCE_FILES + ${SDL2_SOURCE_DIR}/src/*.c + ${SDL2_SOURCE_DIR}/src/atomic/*.c + ${SDL2_SOURCE_DIR}/src/audio/*.c + ${SDL2_SOURCE_DIR}/src/cpuinfo/*.c + ${SDL2_SOURCE_DIR}/src/dynapi/*.c + ${SDL2_SOURCE_DIR}/src/events/*.c + ${SDL2_SOURCE_DIR}/src/file/*.c + ${SDL2_SOURCE_DIR}/src/libm/*.c + ${SDL2_SOURCE_DIR}/src/render/*.c + ${SDL2_SOURCE_DIR}/src/render/*/*.c + ${SDL2_SOURCE_DIR}/src/stdlib/*.c + ${SDL2_SOURCE_DIR}/src/thread/*.c + ${SDL2_SOURCE_DIR}/src/timer/*.c + ${SDL2_SOURCE_DIR}/src/video/*.c) + + +if(ASSERTIONS STREQUAL "auto") + # Do nada - use optimization settings to determine the assertion level +elseif(ASSERTIONS STREQUAL "disabled") + set(SDL_DEFAULT_ASSERT_LEVEL 0) +elseif(ASSERTIONS STREQUAL "release") + set(SDL_DEFAULT_ASSERT_LEVEL 1) +elseif(ASSERTIONS STREQUAL "enabled") + set(SDL_DEFAULT_ASSERT_LEVEL 2) +elseif(ASSERTIONS STREQUAL "paranoid") + set(SDL_DEFAULT_ASSERT_LEVEL 3) +else() + message_error("unknown assertion level") +endif() +set(HAVE_ASSERTIONS ${ASSERTIONS}) + +# Compiler option evaluation +if(USE_GCC OR USE_CLANG) + # Check for -Wall first, so later things can override pieces of it. + check_c_compiler_flag(-Wall HAVE_GCC_WALL) + if(HAVE_GCC_WALL) + list(APPEND EXTRA_CFLAGS "-Wall") + if(HAIKU) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-multichar") + endif() + endif() + + check_c_compiler_flag(-Wdeclaration-after-statement HAVE_GCC_WDECLARATION_AFTER_STATEMENT) + if(HAVE_GCC_WDECLARATION_AFTER_STATEMENT) + check_c_compiler_flag(-Werror=declaration-after-statement HAVE_GCC_WERROR_DECLARATION_AFTER_STATEMENT) + if(HAVE_GCC_WERROR_DECLARATION_AFTER_STATEMENT) + list(APPEND EXTRA_CFLAGS "-Werror=declaration-after-statement") + endif() + list(APPEND EXTRA_CFLAGS "-Wdeclaration-after-statement") + endif() + + if(DEPENDENCY_TRACKING) + check_c_source_compiles(" + #if !defined(__GNUC__) || __GNUC__ < 3 + #error Dependency tracking requires GCC 3.0 or newer + #endif + int main(int argc, char **argv) { }" HAVE_DEPENDENCY_TRACKING) + endif() + + if(GCC_ATOMICS) + check_c_source_compiles("int main(int argc, char **argv) { + int a; + void *x, *y, *z; + __sync_lock_test_and_set(&a, 4); + __sync_lock_test_and_set(&x, y); + __sync_fetch_and_add(&a, 1); + __sync_bool_compare_and_swap(&a, 5, 10); + __sync_bool_compare_and_swap(&x, y, z); }" HAVE_GCC_ATOMICS) + if(NOT HAVE_GCC_ATOMICS) + check_c_source_compiles("int main(int argc, char **argv) { + int a; + __sync_lock_test_and_set(&a, 1); + __sync_lock_release(&a); }" HAVE_GCC_SYNC_LOCK_TEST_AND_SET) + endif() + endif() + + set(CMAKE_REQUIRED_FLAGS "-mpreferred-stack-boundary=2") + check_c_source_compiles("int x = 0; int main(int argc, char **argv) {}" + HAVE_GCC_PREFERRED_STACK_BOUNDARY) + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + + set(CMAKE_REQUIRED_FLAGS "-fvisibility=hidden -Werror") + check_c_source_compiles(" + #if !defined(__GNUC__) || __GNUC__ < 4 + #error SDL only uses visibility attributes in GCC 4 or newer + #endif + int main(int argc, char **argv) {}" HAVE_GCC_FVISIBILITY) + if(HAVE_GCC_FVISIBILITY) + list(APPEND EXTRA_CFLAGS "-fvisibility=hidden") + endif() + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + + check_c_compiler_flag(-Wshadow HAVE_GCC_WSHADOW) + if(HAVE_GCC_WSHADOW) + list(APPEND EXTRA_CFLAGS "-Wshadow") + endif() + + set(CMAKE_REQUIRED_FLAGS "-Wl,--no-undefined") + check_c_compiler_flag("" HAVE_NO_UNDEFINED) + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + if(HAVE_NO_UNDEFINED) + list(APPEND EXTRA_LDFLAGS "-Wl,--no-undefined") + endif() +endif() + +if(ASSEMBLY) + if(USE_GCC OR USE_CLANG) + set(SDL_ASSEMBLY_ROUTINES 1) + # TODO: Those all seem to be quite GCC specific - needs to be + # reworked for better compiler support + set(HAVE_ASSEMBLY TRUE) + if(MMX) + set(CMAKE_REQUIRED_FLAGS "-mmmx") + check_c_source_compiles(" + #ifdef __MINGW32__ + #include <_mingw.h> + #ifdef __MINGW64_VERSION_MAJOR + #include + #else + #include + #endif + #else + #include + #endif + #ifndef __MMX__ + #error Assembler CPP flag not enabled + #endif + int main(int argc, char **argv) { }" HAVE_MMX) + if(HAVE_MMX) + list(APPEND EXTRA_CFLAGS "-mmmx") + endif() + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + endif() + + if(3DNOW) + set(CMAKE_REQUIRED_FLAGS "-m3dnow") + check_c_source_compiles(" + #include + #ifndef __3dNOW__ + #error Assembler CPP flag not enabled + #endif + int main(int argc, char **argv) { + void *p = 0; + _m_prefetch(p); + }" HAVE_3DNOW) + if(HAVE_3DNOW) + list(APPEND EXTRA_CFLAGS "-m3dnow") + endif() + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + endif() + + if(SSE) + set(CMAKE_REQUIRED_FLAGS "-msse") + check_c_source_compiles(" + #ifdef __MINGW32__ + #include <_mingw.h> + #ifdef __MINGW64_VERSION_MAJOR + #include + #else + #include + #endif + #else + #include + #endif + #ifndef __SSE__ + #error Assembler CPP flag not enabled + #endif + int main(int argc, char **argv) { }" HAVE_SSE) + if(HAVE_SSE) + list(APPEND EXTRA_CFLAGS "-msse") + endif() + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + endif() + + if(SSE2) + set(CMAKE_REQUIRED_FLAGS "-msse2") + check_c_source_compiles(" + #ifdef __MINGW32__ + #include <_mingw.h> + #ifdef __MINGW64_VERSION_MAJOR + #include + #else + #include + #endif + #else + #include + #endif + #ifndef __SSE2__ + #error Assembler CPP flag not enabled + #endif + int main(int argc, char **argv) { }" HAVE_SSE2) + if(HAVE_SSE2) + list(APPEND EXTRA_CFLAGS "-msse2") + endif() + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + endif() + + if(SSEMATH) + if(SSE OR SSE2) + if(USE_GCC) + list(APPEND EXTRA_CFLAGS "-mfpmath=387") + endif() + set(HAVE_SSEMATH TRUE) + endif() + endif() + + if(ALTIVEC) + set(CMAKE_REQUIRED_FLAGS "-maltivec") + check_c_source_compiles(" + #include + vector unsigned int vzero() { + return vec_splat_u32(0); + } + int main(int argc, char **argv) { }" HAVE_ALTIVEC_H_HDR) + check_c_source_compiles(" + vector unsigned int vzero() { + return vec_splat_u32(0); + } + int main(int argc, char **argv) { }" HAVE_ALTIVEC) + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + if(HAVE_ALTIVEC OR HAVE_ALTIVEC_H_HDR) + set(HAVE_ALTIVEC TRUE) # if only HAVE_ALTIVEC_H_HDR is set + list(APPEND EXTRA_CFLAGS "-maltivec") + set(SDL_ALTIVEC_BLITTERS 1) + if(HAVE_ALTIVEC_H_HDR) + set(HAVE_ALTIVEC_H 1) + endif() + endif() + endif() + elseif(MSVC_VERSION GREATER 1500) + # TODO: SDL_cpuinfo.h needs to support the user's configuration wish + # for MSVC - right now it is always activated + if(NOT ARCH_64) + set(HAVE_MMX TRUE) + set(HAVE_3DNOW TRUE) + endif() + set(HAVE_SSE TRUE) + set(HAVE_SSE2 TRUE) + set(SDL_ASSEMBLY_ROUTINES 1) + endif() +# TODO: +#else() +# if(USE_GCC OR USE_CLANG) +# list(APPEND EXTRA_CFLAGS "-mno-sse" "-mno-sse2" "-mno-mmx") +# endif() +endif() + +# TODO: Can't deactivate on FreeBSD? w/o LIBC, SDL_stdinc.h can't define +# anything. +if(LIBC) + if(WINDOWS AND NOT MINGW) + set(HAVE_LIBC TRUE) + foreach(_HEADER stdio.h string.h ctype.h math.h) + string(TOUPPER "HAVE_${_HEADER}" _UPPER) + string(REPLACE "." "_" _HAVE_H ${_UPPER}) + set(${_HAVE_H} 1) + endforeach() + set(HAVE_SIGNAL_H 1) + foreach(_FN + malloc calloc realloc free qsort abs memset memcpy memmove memcmp + strlen _strrev _strupr _strlwr strchr strrchr strstr itoa _ltoa + _ultoa strtol strtoul strtoll strtod atoi atof strcmp strncmp + _stricmp _strnicmp sscanf atan atan2 acos asin ceil copysign cos + cosf fabs floor log pow scalbn sin sinf sqrt sqrtf tan tanf) + string(TOUPPER ${_FN} _UPPER) + set(HAVE_${_UPPER} 1) + endforeach() + if(NOT CYGWIN AND NOT MINGW) + set(HAVE_ALLOCA 1) + endif() + set(HAVE_M_PI 1) + add_definitions(-D_USE_MATH_DEFINES) # needed for M_PI + set(STDC_HEADERS 1) + else() + set(HAVE_LIBC TRUE) + check_include_file(sys/types.h HAVE_SYS_TYPES_H) + foreach(_HEADER + stdio.h stdlib.h stddef.h stdarg.h malloc.h memory.h string.h + strings.h inttypes.h stdint.h ctype.h math.h iconv.h signal.h) + string(TOUPPER "HAVE_${_HEADER}" _UPPER) + string(REPLACE "." "_" _HAVE_H ${_UPPER}) + check_include_file("${_HEADER}" ${_HAVE_H}) + endforeach() + + check_include_files("dlfcn.h;stdint.h;stddef.h;inttypes.h;stdlib.h;strings.h;string.h;float.h" STDC_HEADERS) + check_type_size("size_t" SIZEOF_SIZE_T) + check_symbol_exists(M_PI math.h HAVE_M_PI) + # TODO: refine the mprotect check + check_c_source_compiles("#include + #include + int main() { }" HAVE_MPROTECT) + foreach(_FN + strtod malloc calloc realloc free getenv setenv putenv unsetenv + qsort abs bcopy memset memcpy memmove memcmp strlen strlcpy strlcat + strdup _strrev _strupr _strlwr strchr strrchr strstr itoa _ltoa + _uitoa _ultoa strtol strtoul _i64toa _ui64toa strtoll strtoull + atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp + vsscanf vsnprintf fseeko fseeko64 sigaction setjmp + nanosleep sysconf sysctlbyname + ) + string(TOUPPER ${_FN} _UPPER) + set(_HAVEVAR "HAVE_${_UPPER}") + check_function_exists("${_FN}" ${_HAVEVAR}) + endforeach() + + check_library_exists(m pow "" HAVE_LIBM) + if(HAVE_LIBM) + set(CMAKE_REQUIRED_LIBRARIES m) + foreach(_FN + atan atan2 ceil copysign cos cosf fabs floor log pow scalbn sin + sinf sqrt sqrtf tan tanf acos asin) + string(TOUPPER ${_FN} _UPPER) + set(_HAVEVAR "HAVE_${_UPPER}") + check_function_exists("${_FN}" ${_HAVEVAR}) + endforeach() + set(CMAKE_REQUIRED_LIBRARIES) + list(APPEND EXTRA_LIBS m) + endif() + + check_library_exists(iconv iconv_open "" HAVE_LIBICONV) + if(HAVE_LIBICONV) + list(APPEND EXTRA_LIBS iconv) + set(HAVE_ICONV 1) + endif() + + if(NOT APPLE) + check_include_file(alloca.h HAVE_ALLOCA_H) + check_function_exists(alloca HAVE_ALLOCA) + else() + set(HAVE_ALLOCA_H 1) + set(HAVE_ALLOCA 1) + endif() + + check_struct_has_member("struct sigaction" "sa_sigaction" "signal.h" HAVE_SA_SIGACTION) + endif() +else() + if(WINDOWS) + set(HAVE_STDARG_H 1) + set(HAVE_STDDEF_H 1) + endif() +endif() + + +# Enable/disable various subsystems of the SDL library +foreach(_SUB ${SDL_SUBSYSTEMS}) + string(TOUPPER ${_SUB} _OPT) + if(NOT SDL_${_OPT}) + set(SDL_${_OPT}_DISABLED 1) + endif() +endforeach() +if(SDL_JOYSTICK) + file(GLOB JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${JOYSTICK_SOURCES}) +endif() +if(SDL_HAPTIC) + if(NOT SDL_JOYSTICK) + # Haptic requires some private functions from the joystick subsystem. + message_error("SDL_HAPTIC requires SDL_JOYSTICK, which is not enabled") + endif() + file(GLOB HAPTIC_SOURCES ${SDL2_SOURCE_DIR}/src/haptic/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${HAPTIC_SOURCES}) +endif() +if(SDL_POWER) + file(GLOB POWER_SOURCES ${SDL2_SOURCE_DIR}/src/power/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${POWER_SOURCES}) +endif() +# TODO: in configure.in, the test for LOADSO and SDL_DLOPEN is a bit weird: +# if LOADSO is not wanted, SDL_LOADSO_DISABLED is set +# If however on Unix or APPLE dlopen() is detected via CheckDLOPEN(), +# SDL_LOADSO_DISABLED will not be set, regardless of the LOADSO settings + +# General SDL subsystem options, valid for all platforms +if(SDL_AUDIO) + # CheckDummyAudio/CheckDiskAudio - valid for all platforms + if(DUMMYAUDIO) + set(SDL_AUDIO_DRIVER_DUMMY 1) + file(GLOB DUMMYAUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/dummy/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${DUMMYAUDIO_SOURCES}) + set(HAVE_DUMMYAUDIO TRUE) + endif() + if(DISKAUDIO) + set(SDL_AUDIO_DRIVER_DISK 1) + file(GLOB DISKAUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/disk/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${DISKAUDIO_SOURCES}) + set(HAVE_DISKAUDIO TRUE) + endif() +endif() + +if(SDL_DLOPEN) + # Relevant for Unix/Darwin only + if(UNIX OR APPLE) + CheckDLOPEN() + endif() +endif() + +if(SDL_VIDEO) + if(VIDEO_DUMMY) + set(SDL_VIDEO_DRIVER_DUMMY 1) + file(GLOB VIDEO_DUMMY_SOURCES ${SDL2_SOURCE_DIR}/src/video/dummy/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${VIDEO_DUMMY_SOURCES}) + set(HAVE_VIDEO_DUMMY TRUE) + set(HAVE_SDL_VIDEO TRUE) + endif() +endif() + +if(ANDROID) + file(GLOB ANDROID_CORE_SOURCES ${SDL2_SOURCE_DIR}/src/core/android/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${ANDROID_CORE_SOURCES}) + file(GLOB ANDROID_MAIN_SOURCES ${SDL2_SOURCE_DIR}/src/main/android/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${ANDROID_MAIN_SOURCES}) + if(SDL_AUDIO) + set(SDL_AUDIO_DRIVER_ANDROID 1) + file(GLOB ANDROID_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/android/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${ANDROID_AUDIO_SOURCES}) + set(HAVE_SDL_AUDIO TRUE) + endif() + if(SDL_FILESYSTEM) + set(SDL_FILESYSTEM_ANDROID 1) + file(GLOB ANDROID_FILESYSTEM_SOURCES ${SDL2_SOURCE_DIR}/src/filesystem/android/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${ANDROID_FILESYSTEM_SOURCES}) + set(HAVE_SDL_FILESYSTEM TRUE) + endif() + if(SDL_JOYSTICK) + set(SDL_JOYSTICK_ANDROID 1) + file(GLOB ANDROID_JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/android/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${ANDROID_JOYSTICK_SOURCES}) + set(HAVE_SDL_JOYSTICK TRUE) + endif() + if(SDL_POWER) + set(SDL_POWER_ANDROID 1) + file(GLOB ANDROID_POWER_SOURCES ${SDL2_SOURCE_DIR}/src/power/android/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${ANDROID_POWER_SOURCES}) + set(HAVE_SDL_POWER TRUE) + endif() + if(SDL_VIDEO) + set(SDL_VIDEO_DRIVER_ANDROID 1) + file(GLOB ANDROID_VIDEO_SOURCES ${SDL2_SOURCE_DIR}/src/video/android/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${ANDROID_VIDEO_SOURCES}) + set(HAVE_SDL_VIDEO TRUE) + + #enable gles + if(VIDEO_OPENGLES) + set(SDL_VIDEO_OPENGL_EGL 1) + set(HAVE_VIDEO_OPENGLES TRUE) + set(SDL_VIDEO_OPENGL_ES2 1) + set(SDL_VIDEO_RENDER_OGL_ES2 1) + endif() + endif() + list(APPEND EXTRA_LDFLAGS "-Wl,--undefined=Java_org_libsdl_app_SDLActivity_nativeInit") +endif() + +# Platform-specific options and settings +if(EMSCRIPTEN) + # Hide noisy warnings that intend to aid mostly during initial stages of porting a new + # project. Uncomment at will for verbose cross-compiling -I/../ path info. + add_definitions(-Wno-warn-absolute-paths) + if(SDL_AUDIO) + set(SDL_AUDIO_DRIVER_EMSCRIPTEN 1) + file(GLOB EM_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/emscripten/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${EM_AUDIO_SOURCES}) + set(HAVE_SDL_AUDIO TRUE) + endif() + if(SDL_FILESYSTEM) + set(SDL_FILESYSTEM_EMSCRIPTEN 1) + file(GLOB EM_FILESYSTEM_SOURCES ${SDL2_SOURCE_DIR}/src/filesystem/emscripten/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${EM_FILESYSTEM_SOURCES}) + set(HAVE_SDL_FILESYSTEM TRUE) + endif() + if(SDL_JOYSTICK) + set(SDL_JOYSTICK_EMSCRIPTEN 1) + file(GLOB EM_JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/emscripten/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${EM_JOYSTICK_SOURCES}) + set(HAVE_SDL_JOYSTICK TRUE) + endif() + if(SDL_POWER) + set(SDL_POWER_EMSCRIPTEN 1) + file(GLOB EM_POWER_SOURCES ${SDL2_SOURCE_DIR}/src/power/emscripten/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${EM_POWER_SOURCES}) + set(HAVE_SDL_POWER TRUE) + endif() + if(SDL_VIDEO) + set(SDL_VIDEO_DRIVER_EMSCRIPTEN 1) + file(GLOB EM_VIDEO_SOURCES ${SDL2_SOURCE_DIR}/src/video/emscripten/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${EM_VIDEO_SOURCES}) + set(HAVE_SDL_VIDEO TRUE) + + #enable gles + if(VIDEO_OPENGLES) + set(SDL_VIDEO_OPENGL_EGL 1) + set(HAVE_VIDEO_OPENGLES TRUE) + set(SDL_VIDEO_OPENGL_ES2 1) + set(SDL_VIDEO_RENDER_OGL_ES2 1) + endif() + endif() +elseif(UNIX AND NOT APPLE) + if(SDL_AUDIO) + if(SYSV5 OR SOLARIS OR HPUX) + set(SDL_AUDIO_DRIVER_SUNAUDIO 1) + file(GLOB SUN_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/sun/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${SUN_AUDIO_SOURCES}) + set(HAVE_SDL_AUDIO TRUE) + elseif(NETBSD OR OPENBSD) + set(SDL_AUDIO_DRIVER_BSD 1) + file(GLOB BSD_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/bsd/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${BSD_AUDIO_SOURCES}) + set(HAVE_SDL_AUDIO TRUE) + elseif(AIX) + set(SDL_AUDIO_DRIVER_PAUDIO 1) + file(GLOB AIX_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/paudio/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${AIX_AUDIO_SOURCES}) + set(HAVE_SDL_AUDIO TRUE) + endif() + CheckOSS() + CheckALSA() + CheckPulseAudio() + CheckESD() + CheckARTS() + CheckNAS() + CheckSNDIO() + CheckFusionSound() + endif() + + if(SDL_VIDEO) + # Need to check for Raspberry PI first and add platform specific compiler flags, otherwise the test for GLES fails! + CheckRPI() + CheckX11() + CheckMir() + CheckDirectFB() + CheckOpenGLX11() + CheckOpenGLESX11() + CheckWayland() + CheckVivante() + endif() + + if(LINUX) + check_c_source_compiles(" + #include + #ifndef EVIOCGNAME + #error EVIOCGNAME() ioctl not available + #endif + int main(int argc, char** argv) {}" HAVE_INPUT_EVENTS) + + check_c_source_compiles(" + #include + #include + + int main(int argc, char **argv) + { + struct kbentry kbe; + kbe.kb_table = KG_CTRL; + ioctl(0, KDGKBENT, &kbe); + }" HAVE_INPUT_KD) + + file(GLOB CORE_SOURCES ${SDL2_SOURCE_DIR}/src/core/linux/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${CORE_SOURCES}) + + if(HAVE_INPUT_EVENTS) + set(SDL_INPUT_LINUXEV 1) + endif() + + if(SDL_HAPTIC AND HAVE_INPUT_EVENTS) + set(SDL_HAPTIC_LINUX 1) + file(GLOB HAPTIC_SOURCES ${SDL2_SOURCE_DIR}/src/haptic/linux/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${HAPTIC_SOURCES}) + set(HAVE_SDL_HAPTIC TRUE) + endif() + + if(HAVE_INPUT_KD) + set(SDL_INPUT_LINUXKD 1) + endif() + + check_include_file("libudev.h" HAVE_LIBUDEV_H) + + # !!! FIXME: this needs pkg-config to find the include path, I think. + check_include_file("dbus/dbus.h" HAVE_DBUS_DBUS_H) + endif() + + if(INPUT_TSLIB) + check_c_source_compiles(" + #include \"tslib.h\" + int main(int argc, char** argv) { }" HAVE_INPUT_TSLIB) + if(HAVE_INPUT_TSLIB) + set(SDL_INPUT_TSLIB 1) + list(APPEND EXTRA_LIBS ts) + endif() + endif() + + if(SDL_JOYSTICK) + CheckUSBHID() # seems to be BSD specific - limit the test to BSD only? + if(LINUX AND NOT ANDROID) + set(SDL_JOYSTICK_LINUX 1) + file(GLOB JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/linux/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${JOYSTICK_SOURCES}) + set(HAVE_SDL_JOYSTICK TRUE) + endif() + endif() + + CheckPTHREAD() + + if(CLOCK_GETTIME) + check_library_exists(rt clock_gettime "" FOUND_CLOCK_GETTIME) + if(FOUND_CLOCK_GETTIME) + list(APPEND EXTRA_LIBS rt) + set(HAVE_CLOCK_GETTIME 1) + else() + check_library_exists(c clock_gettime "" FOUND_CLOCK_GETTIME) + if(FOUND_CLOCK_GETTIME) + set(HAVE_CLOCK_GETTIME 1) + endif() + endif() + endif() + + check_include_file(linux/version.h HAVE_LINUX_VERSION_H) + if(HAVE_LINUX_VERSION_H) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DHAVE_LINUX_VERSION_H") + endif() + + if(SDL_POWER) + if(LINUX) + set(SDL_POWER_LINUX 1) + file(GLOB POWER_SOURCES ${SDL2_SOURCE_DIR}/src/power/linux/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${POWER_SOURCES}) + set(HAVE_SDL_POWER TRUE) + endif() + endif() + + if(SDL_FILESYSTEM) + set(SDL_FILESYSTEM_UNIX 1) + file(GLOB FILESYSTEM_SOURCES ${SDL2_SOURCE_DIR}/src/filesystem/unix/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${FILESYSTEM_SOURCES}) + set(HAVE_SDL_FILESYSTEM TRUE) + endif() + + if(SDL_TIMERS) + set(SDL_TIMER_UNIX 1) + file(GLOB TIMER_SOURCES ${SDL2_SOURCE_DIR}/src/timer/unix/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${TIMER_SOURCES}) + set(HAVE_SDL_TIMERS TRUE) + endif() + + if(RPATH) + set(SDL_RLD_FLAGS "") + if(BSDI OR FREEBSD OR LINUX OR NETBSD) + set(CMAKE_REQUIRED_FLAGS "-Wl,--enable-new-dtags") + check_c_compiler_flag("" HAVE_ENABLE_NEW_DTAGS) + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + if(HAVE_ENABLE_NEW_DTAGS) + set(SDL_RLD_FLAGS "-Wl,-rpath,\${libdir} -Wl,--enable-new-dtags") + else() + set(SDL_RLD_FLAGS "-Wl,-rpath,\${libdir}") + endif() + elseif(SOLARIS) + set(SDL_RLD_FLAGS "-R\${libdir}") + endif() + set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) + set(HAVE_RPATH TRUE) + endif() + +elseif(WINDOWS) + find_program(WINDRES windres) + + check_c_source_compiles(" + #include + int main(int argc, char **argv) { }" HAVE_WIN32_CC) + + file(GLOB CORE_SOURCES ${SDL2_SOURCE_DIR}/src/core/windows/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${CORE_SOURCES}) + + if(MSVC) + # Prevent codegen that would use the VC runtime libraries. + add_definitions(/GS-) + if(NOT ARCH_64) + add_definitions(/arch:SSE) + endif() + endif() + + # Check for DirectX + if(DIRECTX) + if(DEFINED MSVC_VERSION AND NOT ${MSVC_VERSION} LESS 1700) + set(USE_WINSDK_DIRECTX TRUE) + endif() + if(NOT CMAKE_COMPILER_IS_MINGW AND NOT USE_WINSDK_DIRECTX) + if("$ENV{DXSDK_DIR}" STREQUAL "") + message_error("DIRECTX requires the \$DXSDK_DIR environment variable to be set") + endif() + set(CMAKE_REQUIRED_FLAGS "/I\"$ENV{DXSDK_DIR}\\Include\"") + endif() + + if(HAVE_WIN32_CC) + # xinput.h may need windows.h, but doesn't include it itself. + check_c_source_compiles(" + #include + #include + int main(int argc, char **argv) { }" HAVE_XINPUT_H) + else() + check_include_file(xinput.h HAVE_XINPUT_H) + endif() + + check_include_file(d3d9.h HAVE_D3D_H) + check_include_file(d3d11_1.h HAVE_D3D11_H) + check_include_file(ddraw.h HAVE_DDRAW_H) + check_include_file(dsound.h HAVE_DSOUND_H) + check_include_file(dinput.h HAVE_DINPUT_H) + check_include_file(xaudio2.h HAVE_XAUDIO2_H) + check_include_file(dxgi.h HAVE_DXGI_H) + if(HAVE_D3D_H OR HAVE_D3D11_H OR HAVE_DDRAW_H OR HAVE_DSOUND_H OR HAVE_DINPUT_H OR HAVE_XAUDIO2_H) + set(HAVE_DIRECTX TRUE) + if(NOT CMAKE_COMPILER_IS_MINGW AND NOT USE_WINSDK_DIRECTX) + # TODO: change $ENV{DXSDL_DIR} to get the path from the include checks + link_directories($ENV{DXSDK_DIR}\\lib\\${PROCESSOR_ARCH}) + include_directories($ENV{DXSDK_DIR}\\Include) + endif() + endif() + set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS}) + endif() + + if(SDL_AUDIO) + set(SDL_AUDIO_DRIVER_WINMM 1) + file(GLOB WINMM_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/winmm/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${WINMM_AUDIO_SOURCES}) + set(HAVE_SDL_AUDIO TRUE) + + if(HAVE_DSOUND_H) + set(SDL_AUDIO_DRIVER_DSOUND 1) + file(GLOB DSOUND_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/directsound/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${DSOUND_AUDIO_SOURCES}) + endif() + + if(HAVE_XAUDIO2_H) + set(SDL_AUDIO_DRIVER_XAUDIO2 1) + file(GLOB XAUDIO2_AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/xaudio2/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${XAUDIO2_AUDIO_SOURCES}) + endif() + endif() + + if(SDL_VIDEO) + # requires SDL_LOADSO on Windows (IME, DX, etc.) + if(NOT SDL_LOADSO) + message_error("SDL_VIDEO requires SDL_LOADSO, which is not enabled") + endif() + set(SDL_VIDEO_DRIVER_WINDOWS 1) + file(GLOB WIN_VIDEO_SOURCES ${SDL2_SOURCE_DIR}/src/video/windows/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${WIN_VIDEO_SOURCES}) + + if(RENDER_D3D AND HAVE_D3D_H) + set(SDL_VIDEO_RENDER_D3D 1) + set(HAVE_RENDER_D3D TRUE) + endif() + if(RENDER_D3D AND HAVE_D3D11_H) + set(SDL_VIDEO_RENDER_D3D11 1) + set(HAVE_RENDER_D3D TRUE) + endif() + set(HAVE_SDL_VIDEO TRUE) + endif() + + if(SDL_THREADS) + set(SDL_THREAD_WINDOWS 1) + set(SOURCE_FILES ${SOURCE_FILES} + ${SDL2_SOURCE_DIR}/src/thread/windows/SDL_sysmutex.c + ${SDL2_SOURCE_DIR}/src/thread/windows/SDL_syssem.c + ${SDL2_SOURCE_DIR}/src/thread/windows/SDL_systhread.c + ${SDL2_SOURCE_DIR}/src/thread/windows/SDL_systls.c + ${SDL2_SOURCE_DIR}/src/thread/generic/SDL_syscond.c) + set(HAVE_SDL_THREADS TRUE) + endif() + + if(SDL_POWER) + set(SDL_POWER_WINDOWS 1) + set(SOURCE_FILES ${SOURCE_FILES} ${SDL2_SOURCE_DIR}/src/power/windows/SDL_syspower.c) + set(HAVE_SDL_POWER TRUE) + endif() + + if(SDL_FILESYSTEM) + set(SDL_FILESYSTEM_WINDOWS 1) + file(GLOB FILESYSTEM_SOURCES ${SDL2_SOURCE_DIR}/src/filesystem/windows/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${FILESYSTEM_SOURCES}) + set(HAVE_SDL_FILESYSTEM TRUE) + endif() + + # Libraries for Win32 native and MinGW + list(APPEND EXTRA_LIBS user32 gdi32 winmm imm32 ole32 oleaut32 version uuid) + + # TODO: in configure.in the check for timers is set on + # cygwin | mingw32* - does this include mingw32CE? + if(SDL_TIMERS) + set(SDL_TIMER_WINDOWS 1) + file(GLOB TIMER_SOURCES ${SDL2_SOURCE_DIR}/src/timer/windows/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${TIMER_SOURCES}) + set(HAVE_SDL_TIMERS TRUE) + endif() + + if(SDL_LOADSO) + set(SDL_LOADSO_WINDOWS 1) + file(GLOB LOADSO_SOURCES ${SDL2_SOURCE_DIR}/src/loadso/windows/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${LOADSO_SOURCES}) + set(HAVE_SDL_LOADSO TRUE) + endif() + + file(GLOB CORE_SOURCES ${SDL2_SOURCE_DIR}/src/core/windows/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${CORE_SOURCES}) + + if(SDL_VIDEO) + if(VIDEO_OPENGL) + set(SDL_VIDEO_OPENGL 1) + set(SDL_VIDEO_OPENGL_WGL 1) + set(SDL_VIDEO_RENDER_OGL 1) + set(HAVE_VIDEO_OPENGL TRUE) + endif() + + if(VIDEO_OPENGLES) + set(SDL_VIDEO_OPENGL_EGL 1) + set(SDL_VIDEO_OPENGL_ES2 1) + set(SDL_VIDEO_RENDER_OGL_ES2 1) + set(HAVE_VIDEO_OPENGLES TRUE) + endif() + endif() + + if(SDL_JOYSTICK) + file(GLOB JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/windows/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${JOYSTICK_SOURCES}) + if(HAVE_DINPUT_H) + set(SDL_JOYSTICK_DINPUT 1) + list(APPEND EXTRA_LIBS dinput8) + if(CMAKE_COMPILER_IS_MINGW) + list(APPEND EXTRA_LIBS dxerr8) + elseif (NOT USE_WINSDK_DIRECTX) + list(APPEND EXTRA_LIBS dxerr) + endif() + endif() + if(HAVE_XINPUT_H) + set(SDL_JOYSTICK_XINPUT 1) + endif() + if(NOT HAVE_DINPUT_H AND NOT HAVE_XINPUT_H) + set(SDL_JOYSTICK_WINMM 1) + endif() + set(HAVE_SDL_JOYSTICK TRUE) + + if(SDL_HAPTIC) + if(HAVE_DINPUT_H OR HAVE_XINPUT_H) + file(GLOB HAPTIC_SOURCES ${SDL2_SOURCE_DIR}/src/haptic/windows/*.c) + if(HAVE_DINPUT_H) + set(SDL_HAPTIC_DINPUT 1) + endif() + if(HAVE_XINPUT_H) + set(SDL_HAPTIC_XINPUT 1) + endif() + else() + file(GLOB HAPTIC_SOURCES ${SDL2_SOURCE_DIR}/src/haptic/dummy/*.c) + set(SDL_HAPTIC_DUMMY 1) + endif() + set(SOURCE_FILES ${SOURCE_FILES} ${HAPTIC_SOURCES}) + set(HAVE_SDL_HAPTIC TRUE) + endif() + endif() + + file(GLOB VERSION_SOURCES ${SDL2_SOURCE_DIR}/src/main/windows/*.rc) + file(GLOB SDLMAIN_SOURCES ${SDL2_SOURCE_DIR}/src/main/windows/*.c) + if(MINGW OR CYGWIN) + list(APPEND EXTRA_LIBS mingw32) + list(APPEND EXTRA_LDFLAGS "-mwindows") + set(SDL_CFLAGS "${SDL_CFLAGS} -Dmain=SDL_main") + list(APPEND SDL_LIBS "-lmingw32" "-lSDL2main" "-mwindows") + endif() +elseif(APPLE) + # TODO: rework this for proper MacOS X, iOS and Darwin support + + # Requires the darwin file implementation + if(SDL_FILE) + file(GLOB EXTRA_SOURCES ${SDL2_SOURCE_DIR}/src/file/cocoa/*.m) + set(SOURCE_FILES ${EXTRA_SOURCES} ${SOURCE_FILES}) + set_source_files_properties(${EXTRA_SOURCES} PROPERTIES LANGUAGE C) + set(HAVE_SDL_FILE TRUE) + set(SDL_FRAMEWORK_COCOA 1) + set(SDL_FRAMEWORK_COREVIDEO 1) + else() + message_error("SDL_FILE must be enabled to build on MacOS X") + endif() + + if(SDL_AUDIO) + set(SDL_AUDIO_DRIVER_COREAUDIO 1) + file(GLOB AUDIO_SOURCES ${SDL2_SOURCE_DIR}/src/audio/coreaudio/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${AUDIO_SOURCES}) + set(HAVE_SDL_AUDIO TRUE) + set(SDL_FRAMEWORK_COREAUDIO 1) + set(SDL_FRAMEWORK_AUDIOUNIT 1) + endif() + + if(SDL_JOYSTICK) + set(SDL_JOYSTICK_IOKIT 1) + file(GLOB JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/darwin/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${JOYSTICK_SOURCES}) + set(HAVE_SDL_JOYSTICK TRUE) + set(SDL_FRAMEWORK_IOKIT 1) + set(SDL_FRAMEWORK_FF 1) + endif() + + if(SDL_HAPTIC) + set(SDL_HAPTIC_IOKIT 1) + file(GLOB HAPTIC_SOURCES ${SDL2_SOURCE_DIR}/src/haptic/darwin/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${HAPTIC_SOURCES}) + set(HAVE_SDL_HAPTIC TRUE) + set(SDL_FRAMEWORK_IOKIT 1) + set(SDL_FRAMEWORK_FF 1) + if(NOT SDL_JOYSTICK) + message(FATAL_ERROR "SDL_HAPTIC requires SDL_JOYSTICK to be enabled") + endif() + endif() + + if(SDL_POWER) + set(SDL_POWER_MACOSX 1) + file(GLOB POWER_SOURCES ${SDL2_SOURCE_DIR}/src/power/macosx/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${POWER_SOURCES}) + set(HAVE_SDL_POWER TRUE) + set(SDL_FRAMEWORK_CARBON 1) + set(SDL_FRAMEWORK_IOKIT 1) + endif() + + if(SDL_TIMERS) + set(SDL_TIMER_UNIX 1) + file(GLOB TIMER_SOURCES ${SDL2_SOURCE_DIR}/src/timer/unix/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${TIMER_SOURCES}) + set(HAVE_SDL_TIMERS TRUE) + endif(SDL_TIMERS) + + if(SDL_FILESYSTEM) + set(SDL_FILESYSTEM_COCOA 1) + file(GLOB FILESYSTEM_SOURCES ${SDL2_SOURCE_DIR}/src/filesystem/cocoa/*.m) + set_source_files_properties(${FILESYSTEM_SOURCES} PROPERTIES LANGUAGE C) + set(SOURCE_FILES ${SOURCE_FILES} ${FILESYSTEM_SOURCES}) + set(HAVE_SDL_FILESYSTEM TRUE) + endif() + + # Actually load the frameworks at the end so we don't duplicate include. + if(SDL_FRAMEWORK_COREVIDEO) + find_library(COREVIDEO CoreVideo) + list(APPEND EXTRA_LIBS ${COREVIDEO}) + endif() + if(SDL_FRAMEWORK_COCOA) + find_library(COCOA_LIBRARY Cocoa) + list(APPEND EXTRA_LIBS ${COCOA_LIBRARY}) + endif() + if(SDL_FRAMEWORK_IOKIT) + find_library(IOKIT IOKit) + list(APPEND EXTRA_LIBS ${IOKIT}) + endif() + if(SDL_FRAMEWORK_FF) + find_library(FORCEFEEDBACK ForceFeedback) + list(APPEND EXTRA_LIBS ${FORCEFEEDBACK}) + endif() + if(SDL_FRAMEWORK_CARBON) + find_library(CARBON_LIBRARY Carbon) + list(APPEND EXTRA_LIBS ${CARBON_LIBRARY}) + endif() + if(SDL_FRAMEWORK_COREAUDIO) + find_library(COREAUDIO CoreAudio) + list(APPEND EXTRA_LIBS ${COREAUDIO}) + endif() + if(SDL_FRAMEWORK_AUDIOUNIT) + find_library(AUDIOUNIT AudioUnit) + list(APPEND EXTRA_LIBS ${AUDIOUNIT}) + endif() + + # iOS hack needed - http://code.google.com/p/ios-cmake/ ? + if(SDL_VIDEO) + CheckCOCOA() + if(VIDEO_OPENGL) + set(SDL_VIDEO_OPENGL 1) + set(SDL_VIDEO_OPENGL_CGL 1) + set(SDL_VIDEO_RENDER_OGL 1) + set(HAVE_VIDEO_OPENGL TRUE) + endif() + endif() + + CheckPTHREAD() +elseif(HAIKU) + if(SDL_VIDEO) + set(SDL_VIDEO_DRIVER_HAIKU 1) + file(GLOB HAIKUVIDEO_SOURCES ${SDL2_SOURCE_DIR}/src/video/haiku/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${HAIKUVIDEO_SOURCES}) + set(HAVE_SDL_VIDEO TRUE) + + set(SDL_FILESYSTEM_HAIKU 1) + file(GLOB FILESYSTEM_SOURCES ${SDL2_SOURCE_DIR}/src/filesystem/haiku/*.cc) + set(SOURCE_FILES ${SOURCE_FILES} ${FILESYSTEM_SOURCES}) + set(HAVE_SDL_FILESYSTEM TRUE) + + if(SDL_TIMERS) + set(SDL_TIMER_HAIKU 1) + file(GLOB TIMER_SOURCES ${SDL2_SOURCE_DIR}/src/timer/haiku/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${TIMER_SOURCES}) + set(HAVE_SDL_TIMERS TRUE) + endif(SDL_TIMERS) + + if(VIDEO_OPENGL) + # TODO: Use FIND_PACKAGE(OpenGL) instead + set(SDL_VIDEO_OPENGL 1) + set(SDL_VIDEO_OPENGL_BGL 1) + set(SDL_VIDEO_RENDER_OGL 1) + list(APPEND EXTRA_LIBS GL) + set(HAVE_VIDEO_OPENGL TRUE) + endif() + endif() + + CheckPTHREAD() +endif() + +# Dummies +# configure.in does it differently: +# if not have X +# if enable_X { SDL_X_DISABLED = 1 } +# [add dummy sources] +# so it always adds a dummy, without checking, if it was actually requested. +# This leads to missing internal references on building, since the +# src/X/*.c does not get included. +if(NOT HAVE_SDL_JOYSTICK) + set(SDL_JOYSTICK_DISABLED 1) + if(SDL_JOYSTICK AND NOT APPLE) # results in unresolved symbols on OSX + + file(GLOB JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/dummy/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${JOYSTICK_SOURCES}) + endif() +endif() +if(NOT HAVE_SDL_HAPTIC) + set(SDL_HAPTIC_DISABLED 1) + file(GLOB HAPTIC_SOURCES ${SDL2_SOURCE_DIR}/src/haptic/dummy/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${HAPTIC_SOURCES}) +endif() +if(NOT HAVE_SDL_LOADSO) + set(SDL_LOADSO_DISABLED 1) + file(GLOB LOADSO_SOURCES ${SDL2_SOURCE_DIR}/src/loadso/dummy/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${LOADSO_SOURCES}) +endif() +if(NOT HAVE_SDL_FILESYSTEM) + set(SDL_FILESYSTEM_DISABLED 1) + file(GLOB FILESYSTEM_SOURCES ${SDL2_SOURCE_DIR}/src/filesystem/dummy/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${FILESYSTEM_SOURCES}) +endif() + +# We always need to have threads and timers around +if(NOT HAVE_SDL_THREADS) + set(SDL_THREADS_DISABLED 1) + file(GLOB THREADS_SOURCES ${SDL2_SOURCE_DIR}/src/thread/generic/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${THREADS_SOURCES}) +endif() +if(NOT HAVE_SDL_TIMERS) + set(SDL_TIMERS_DISABLED 1) + file(GLOB TIMER_SOURCES ${SDL2_SOURCE_DIR}/src/timer/dummy/*.c) + set(SOURCE_FILES ${SOURCE_FILES} ${TIMER_SOURCES}) +endif() + +if(NOT SDLMAIN_SOURCES) + file(GLOB SDLMAIN_SOURCES ${SDL2_SOURCE_DIR}/src/main/dummy/*.c) +endif() + +# Append the -MMD -MT flags +# if(DEPENDENCY_TRACKING) +# if(COMPILER_IS_GNUCC) +# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -MMD -MT \$@") +# endif() +# endif() + +configure_file("${SDL2_SOURCE_DIR}/include/SDL_config.h.cmake" + "${SDL2_BINARY_DIR}/include/SDL_config.h") + +# Prepare the flags and remove duplicates +if(EXTRA_LDFLAGS) + list(REMOVE_DUPLICATES EXTRA_LDFLAGS) +endif() +if(EXTRA_LIBS) + list(REMOVE_DUPLICATES EXTRA_LIBS) +endif() +if(EXTRA_CFLAGS) + list(REMOVE_DUPLICATES EXTRA_CFLAGS) +endif() +listtostr(EXTRA_CFLAGS _EXTRA_CFLAGS) +set(EXTRA_CFLAGS ${_EXTRA_CFLAGS}) + +# Compat helpers for the configuration files +if(NOT WINDOWS OR CYGWIN) + # TODO: we need a Windows script, too + execute_process(COMMAND sh ${SDL2_SOURCE_DIR}/build-scripts/updaterev.sh) + + set(prefix ${CMAKE_INSTALL_PREFIX}) + set(exec_prefix "\${prefix}") + set(libdir "\${exec_prefix}/lib${LIB_SUFFIX}") + set(bindir "\${exec_prefix}/bin") + set(includedir "\${prefix}/include") + if(SDL_STATIC) + set(ENABLE_STATIC_TRUE "") + set(ENABLE_STATIC_FALSE "#") + else() + set(ENABLE_STATIC_TRUE "#") + set(ENABLE_STATIC_FALSE "") + endif() + if(SDL_SHARED) + set(ENABLE_SHARED_TRUE "") + set(ENABLE_SHARED_FALSE "#") + else() + set(ENABLE_SHARED_TRUE "#") + set(ENABLE_SHARED_FALSE "") + endif() + + # Clean up the different lists + listtostr(EXTRA_LIBS _EXTRA_LIBS "-l") + set(SDL_STATIC_LIBS ${SDL_LIBS} ${EXTRA_LDFLAGS} ${_EXTRA_LIBS}) + list(REMOVE_DUPLICATES SDL_STATIC_LIBS) + listtostr(SDL_STATIC_LIBS _SDL_STATIC_LIBS) + set(SDL_STATIC_LIBS ${_SDL_STATIC_LIBS}) + listtostr(SDL_LIBS _SDL_LIBS) + set(SDL_LIBS ${_SDL_LIBS}) + + # MESSAGE(STATUS "SDL_LIBS: ${SDL_LIBS}") + # MESSAGE(STATUS "SDL_STATIC_LIBS: ${SDL_STATIC_LIBS}") + + configure_file("${SDL2_SOURCE_DIR}/sdl2.pc.in" + "${SDL2_BINARY_DIR}/sdl2.pc" @ONLY) + configure_file("${SDL2_SOURCE_DIR}/sdl2-config.in" + "${SDL2_BINARY_DIR}/sdl2-config") + configure_file("${SDL2_SOURCE_DIR}/sdl2-config.in" + "${SDL2_BINARY_DIR}/sdl2-config" @ONLY) + configure_file("${SDL2_SOURCE_DIR}/SDL2.spec.in" + "${SDL2_BINARY_DIR}/SDL2.spec" @ONLY) +endif() + +##### Info output ##### +message(STATUS "") +message(STATUS "SDL2 was configured with the following options:") +message(STATUS "") +message(STATUS "Platform: ${CMAKE_SYSTEM}") +message(STATUS "64-bit: ${ARCH_64}") +message(STATUS "Compiler: ${CMAKE_C_COMPILER}") +message(STATUS "") +message(STATUS "Subsystems:") +foreach(_SUB ${SDL_SUBSYSTEMS}) + string(TOUPPER ${_SUB} _OPT) + message_bool_option(${_SUB} SDL_${_OPT}) +endforeach() +message(STATUS "") +message(STATUS "Options:") +list(SORT ALLOPTIONS) +foreach(_OPT ${ALLOPTIONS}) + # Longest option is VIDEO_X11_XSCREENSAVER = 22 characters + # Get the padding + string(LENGTH ${_OPT} _OPTLEN) + math(EXPR _PADLEN "23 - ${_OPTLEN}") + string(RANDOM LENGTH ${_PADLEN} ALPHABET " " _PADDING) + message_tested_option(${_OPT} ${_PADDING}) +endforeach() +message(STATUS "") +message(STATUS " CFLAGS: ${CMAKE_C_FLAGS}") +message(STATUS " EXTRA_CFLAGS: ${EXTRA_CFLAGS}") +message(STATUS " EXTRA_LDFLAGS: ${EXTRA_LDFLAGS}") +message(STATUS " EXTRA_LIBS: ${EXTRA_LIBS}") +message(STATUS "") +message(STATUS " Build Shared Library: ${SDL_SHARED}") +message(STATUS " Build Static Library: ${SDL_STATIC}") +if(SDL_STATIC) + message(STATUS " Build Static Library with Position Independent Code: ${SDL_STATIC_PIC}") +endif() +message(STATUS "") +if(UNIX) + message(STATUS "If something was not detected, although the libraries") + message(STATUS "were installed, then make sure you have set the") + message(STATUS "CFLAGS and LDFLAGS environment variables correctly.") + message(STATUS "") +endif() + +# Ensure that the extra cflags are used at compile time +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS}") + +# Always build SDLmain +add_library(SDL2main STATIC ${SDLMAIN_SOURCES}) +set(_INSTALL_LIBS "SDL2main") + +if(SDL_SHARED) + add_library(SDL2 SHARED ${SOURCE_FILES}) + if(UNIX) + set_target_properties(SDL2 PROPERTIES + VERSION ${LT_VERSION} + SOVERSION ${LT_REVISION} + OUTPUT_NAME "SDL2-${LT_RELEASE}") + else() + set_target_properties(SDL2 PROPERTIES + VERSION ${SDL_VERSION} + SOVERSION ${LT_REVISION} + OUTPUT_NAME "SDL2") + endif() + if(MSVC) + # Don't try to link with the default set of libraries. + set_target_properties(SDL2 PROPERTIES LINK_FLAGS_RELEASE "/NODEFAULTLIB") + set_target_properties(SDL2 PROPERTIES LINK_FLAGS_DEBUG "/NODEFAULTLIB") + set_target_properties(SDL2 PROPERTIES STATIC_LIBRARY_FLAGS "/NODEFAULTLIB") + endif() + set(_INSTALL_LIBS "SDL2" ${_INSTALL_LIBS}) + target_link_libraries(SDL2 ${EXTRA_LIBS} ${EXTRA_LDFLAGS}) +endif() + +if(SDL_STATIC) + set (BUILD_SHARED_LIBS FALSE) + add_library(SDL2-static STATIC ${SOURCE_FILES}) + set_target_properties(SDL2-static PROPERTIES OUTPUT_NAME "SDL2") + set_target_properties(SDL2-static PROPERTIES POSITION_INDEPENDENT_CODE ${SDL_STATIC_PIC}) + if(MSVC) + set_target_properties(SDL2-static PROPERTIES LINK_FLAGS_RELEASE "/NODEFAULTLIB") + set_target_properties(SDL2-static PROPERTIES LINK_FLAGS_DEBUG "/NODEFAULTLIB") + set_target_properties(SDL2-static PROPERTIES STATIC_LIBRARY_FLAGS "/NODEFAULTLIB") + endif() + # TODO: Win32 platforms keep the same suffix .lib for import and static + # libraries - do we need to consider this? + set(_INSTALL_LIBS "SDL2-static" ${_INSTALL_LIBS}) + target_link_libraries(SDL2-static ${EXTRA_LIBS} ${EXTRA_LDFLAGS}) +endif() + +##### Installation targets ##### +install(TARGETS ${_INSTALL_LIBS} + LIBRARY DESTINATION "lib${LIB_SUFFIX}" + ARCHIVE DESTINATION "lib${LIB_SUFFIX}" + RUNTIME DESTINATION bin) + +file(GLOB INCLUDE_FILES ${SDL2_SOURCE_DIR}/include/*.h) +file(GLOB BIN_INCLUDE_FILES ${SDL2_BINARY_DIR}/include/*.h) +foreach(_FNAME ${BIN_INCLUDE_FILES}) + get_filename_component(_INCNAME ${_FNAME} NAME) + list(REMOVE_ITEM INCLUDE_FILES ${SDL2_SOURCE_DIR}/include/${_INCNAME}) +endforeach() +list(APPEND INCLUDE_FILES ${BIN_INCLUDE_FILES}) +install(FILES ${INCLUDE_FILES} DESTINATION include/SDL2) + +if(NOT (WINDOWS OR CYGWIN)) + if(SDL_SHARED) + if (APPLE) + set(SOEXT "dylib") + else() + set(SOEXT "so") + endif() + install(CODE " + execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink + \"libSDL2-2.0.${SOEXT}\" \"libSDL2.${SOEXT}\")") + install(FILES ${SDL2_BINARY_DIR}/libSDL2.${SOEXT} DESTINATION "lib${LIB_SUFFIX}") + endif() + if(FREEBSD) + # FreeBSD uses ${PREFIX}/libdata/pkgconfig + install(FILES ${SDL2_BINARY_DIR}/sdl2.pc DESTINATION "libdata/pkgconfig") + else() + install(FILES ${SDL2_BINARY_DIR}/sdl2.pc + DESTINATION "lib${LIB_SUFFIX}/pkgconfig") + endif() + install(PROGRAMS ${SDL2_BINARY_DIR}/sdl2-config DESTINATION bin) + # TODO: what about the .spec file? Is it only needed for RPM creation? + install(FILES "${SDL2_SOURCE_DIR}/sdl2.m4" DESTINATION "share/aclocal") +endif() + +##### Uninstall target ##### + +configure_file( + "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" + IMMEDIATE @ONLY) + +add_custom_target(uninstall + COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) diff --git a/SDL/COPYING.txt b/SDL/COPYING.txt new file mode 100644 index 0000000..04f14ee --- /dev/null +++ b/SDL/COPYING.txt @@ -0,0 +1,20 @@ + +Simple DirectMedia Layer +Copyright (C) 1997-2016 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + diff --git a/SDL/CREDITS.txt b/SDL/CREDITS.txt new file mode 100644 index 0000000..74163e8 --- /dev/null +++ b/SDL/CREDITS.txt @@ -0,0 +1,53 @@ + +Simple DirectMedia Layer CREDITS +Thanks to everyone who made this possible, including: + +* Cliff Matthews, for giving me a reason to start this project. :) + -- Executor rocks! *grin* + +* Ryan Gordon for helping everybody out and keeping the dream alive. :) + +* Gabriel Jacobo for his work on the Android port and generally helping out all around. + +* Philipp Wiesemann for his attention to detail reviewing the entire SDL code base and proposes patches. + +* Andreas Schiffler for his dedication to unit tests, Visual Studio projects, and managing the Google Summer of Code. + +* Mike Sartain for incorporating SDL into Team Fortress 2 and cheering me on at Valve. + +* Alfred Reynolds for the game controller API and general (in)sanity + +* Jørgen Tjernø for numerous magical Mac OS X fixes. + +* Pierre-Loup Griffais for his deep knowledge of OpenGL drivers. + +* Julian Winter for the SDL 2.0 website. + +* Sheena Smith for many months of great work on the SDL wiki creating the API documentation and style guides. + +* Paul Hunkin for his port of SDL to Android during the Google Summer of Code 2010. + +* Eli Gottlieb for his work on shaped windows during the Google Summer of Code 2010. + +* Jim Grandpre for his work on multi-touch and gesture recognition during + the Google Summer of Code 2010. + +* Edgar "bobbens" Simo for his force feedback API development during the + Google Summer of Code 2008. + +* Aaron Wishnick for his work on audio resampling and pitch shifting during + the Google Summer of Code 2008. + +* Holmes Futrell for his port of SDL to the iPhone and iPod Touch during the + Google Summer of Code 2008. + +* Jon Atkins for SDL_image, SDL_mixer and SDL_net documentation. + +* Everybody at Loki Software, Inc. for their great contributions! + + And a big hand to everyone else who has contributed over the years. + +THANKS! :) + + -- Sam Lantinga + diff --git a/SDL/INSTALL.txt b/SDL/INSTALL.txt new file mode 100644 index 0000000..2df10bd --- /dev/null +++ b/SDL/INSTALL.txt @@ -0,0 +1,40 @@ + +To compile and install SDL: + + 1. Windows with Visual Studio: + * Read VisualC.html + + Windows with gcc, either native or cross-compiling: + * Read the FAQ at http://wiki.libsdl.org/moin.fcg/FAQWindows + * Run './configure; make; make install' + + Mac OS X with Xcode: + * Read docs/README-macosx.md + + Mac OS X from the command line: + * Run './configure; make; make install' + + Linux and other UNIX systems: + * Run './configure; make; make install' + + Android: + * Read docs/README-android.md + + iOS: + * Read docs/README-ios.md + + Using Cmake: + * Read docs/README-cmake.md + + 2. Look at the example programs in ./test, and check out the online + documentation at http://wiki.libsdl.org/ + + 3. Join the SDL developer mailing list by sending E-mail to + sdl-request@libsdl.org + and put "subscribe" in the subject of the message. + + Or alternatively you can use the web interface: + http://www.libsdl.org/mailing-list.php + +That's it! +Sam Lantinga diff --git a/SDL/Makefile b/SDL/Makefile new file mode 100644 index 0000000..3718968 --- /dev/null +++ b/SDL/Makefile @@ -0,0 +1,659 @@ +# Makefile to build and install the SDL library + +top_builddir = . +srcdir = /home/sean/Documents/Code/SDL +objects = build +prefix = /usr/local +exec_prefix = ${prefix} +bindir = ${exec_prefix}/bin +libdir = ${exec_prefix}/lib +includedir = ${prefix}/include +datarootdir = ${prefix}/share +datadir = ${datarootdir} +auxdir = build-scripts +distpath = $(srcdir)/.. +distdir = SDL2-2.0.4 +distfile = $(distdir).tar.gz + + +SHELL = /bin/bash +CC = gcc +INCLUDE = -Iinclude -I/home/sean/Documents/Code/SDL/include +CFLAGS = -g -O3 -DUSING_GENERATED_CONFIG_H +EXTRA_CFLAGS = -Iinclude -I/home/sean/Documents/Code/SDL/include -mmmx -m3dnow -msse -msse2 -Wall -fvisibility=hidden -Wdeclaration-after-statement -Werror=declaration-after-statement -D_REENTRANT -DHAVE_LINUX_VERSION_H +LDFLAGS = +EXTRA_LDFLAGS = -Wl,--no-undefined -lm -ldl -lpthread -lrt +LIBTOOL = $(SHELL) $(top_builddir)/libtool +INSTALL = /usr/bin/install -c +AR = ar +RANLIB = ranlib +WINDRES = : + +TARGET = libSDL2.la +OBJECTS = $(objects)/SDL.lo $(objects)/SDL_assert.lo $(objects)/SDL_error.lo $(objects)/SDL_hints.lo $(objects)/SDL_log.lo $(objects)/SDL_atomic.lo $(objects)/SDL_spinlock.lo $(objects)/SDL_audio.lo $(objects)/SDL_audiocvt.lo $(objects)/SDL_audiodev.lo $(objects)/SDL_audiotypecvt.lo $(objects)/SDL_mixer.lo $(objects)/SDL_wave.lo $(objects)/SDL_cpuinfo.lo $(objects)/SDL_dynapi.lo $(objects)/SDL_clipboardevents.lo $(objects)/SDL_dropevents.lo $(objects)/SDL_events.lo $(objects)/SDL_gesture.lo $(objects)/SDL_keyboard.lo $(objects)/SDL_mouse.lo $(objects)/SDL_quit.lo $(objects)/SDL_touch.lo $(objects)/SDL_windowevents.lo $(objects)/SDL_rwops.lo $(objects)/SDL_haptic.lo $(objects)/SDL_gamecontroller.lo $(objects)/SDL_joystick.lo $(objects)/e_atan2.lo $(objects)/e_log.lo $(objects)/e_pow.lo $(objects)/e_rem_pio2.lo $(objects)/e_sqrt.lo $(objects)/k_cos.lo $(objects)/k_rem_pio2.lo $(objects)/k_sin.lo $(objects)/k_tan.lo $(objects)/s_atan.lo $(objects)/s_copysign.lo $(objects)/s_cos.lo $(objects)/s_fabs.lo $(objects)/s_floor.lo $(objects)/s_scalbn.lo $(objects)/s_sin.lo $(objects)/s_tan.lo $(objects)/SDL_power.lo $(objects)/SDL_d3dmath.lo $(objects)/SDL_render.lo $(objects)/SDL_yuv_mmx.lo $(objects)/SDL_yuv_sw.lo $(objects)/SDL_render_d3d.lo $(objects)/SDL_render_d3d11.lo $(objects)/SDL_render_gl.lo $(objects)/SDL_shaders_gl.lo $(objects)/SDL_render_gles.lo $(objects)/SDL_render_gles2.lo $(objects)/SDL_shaders_gles2.lo $(objects)/SDL_render_psp.lo $(objects)/SDL_blendfillrect.lo $(objects)/SDL_blendline.lo $(objects)/SDL_blendpoint.lo $(objects)/SDL_drawline.lo $(objects)/SDL_drawpoint.lo $(objects)/SDL_render_sw.lo $(objects)/SDL_rotate.lo $(objects)/SDL_getenv.lo $(objects)/SDL_iconv.lo $(objects)/SDL_malloc.lo $(objects)/SDL_qsort.lo $(objects)/SDL_stdlib.lo $(objects)/SDL_string.lo $(objects)/SDL_thread.lo $(objects)/SDL_timer.lo $(objects)/SDL_RLEaccel.lo $(objects)/SDL_blit.lo $(objects)/SDL_blit_0.lo $(objects)/SDL_blit_1.lo $(objects)/SDL_blit_A.lo $(objects)/SDL_blit_N.lo $(objects)/SDL_blit_auto.lo $(objects)/SDL_blit_copy.lo $(objects)/SDL_blit_slow.lo $(objects)/SDL_bmp.lo $(objects)/SDL_clipboard.lo $(objects)/SDL_egl.lo $(objects)/SDL_fillrect.lo $(objects)/SDL_pixels.lo $(objects)/SDL_rect.lo $(objects)/SDL_shape.lo $(objects)/SDL_stretch.lo $(objects)/SDL_surface.lo $(objects)/SDL_video.lo $(objects)/SDL_nullevents.lo $(objects)/SDL_nullframebuffer.lo $(objects)/SDL_nullvideo.lo $(objects)/SDL_diskaudio.lo $(objects)/SDL_dummyaudio.lo $(objects)/SDL_sysloadso.lo $(objects)/SDL_dspaudio.lo $(objects)/SDL_x11clipboard.lo $(objects)/SDL_x11dyn.lo $(objects)/SDL_x11events.lo $(objects)/SDL_x11framebuffer.lo $(objects)/SDL_x11keyboard.lo $(objects)/SDL_x11messagebox.lo $(objects)/SDL_x11modes.lo $(objects)/SDL_x11mouse.lo $(objects)/SDL_x11opengl.lo $(objects)/SDL_x11opengles.lo $(objects)/SDL_x11shape.lo $(objects)/SDL_x11touch.lo $(objects)/SDL_x11video.lo $(objects)/SDL_x11window.lo $(objects)/SDL_x11xinput2.lo $(objects)/edid-parse.lo $(objects)/imKStoUCS.lo $(objects)/SDL_systhread.lo $(objects)/SDL_syssem.lo $(objects)/SDL_sysmutex.lo $(objects)/SDL_syscond.lo $(objects)/SDL_systls.lo $(objects)/SDL_sysjoystick.lo $(objects)/SDL_syshaptic.lo $(objects)/SDL_syspower.lo $(objects)/SDL_sysfilesystem.lo $(objects)/SDL_systimer.lo $(objects)/SDL_evdev.lo +VERSION_OBJECTS = + +SDLMAIN_TARGET = libSDL2main.a +SDLMAIN_OBJECTS = $(objects)/SDL_dummy_main.o + +SDLTEST_TARGET = libSDL2_test.a +SDLTEST_OBJECTS = $(objects)/SDL_test_assert.o $(objects)/SDL_test_common.o $(objects)/SDL_test_compare.o $(objects)/SDL_test_crc32.o $(objects)/SDL_test_font.o $(objects)/SDL_test_fuzzer.o $(objects)/SDL_test_harness.o $(objects)/SDL_test_imageBlit.o $(objects)/SDL_test_imageBlitBlend.o $(objects)/SDL_test_imageFace.o $(objects)/SDL_test_imagePrimitives.o $(objects)/SDL_test_imagePrimitivesBlend.o $(objects)/SDL_test_log.o $(objects)/SDL_test_md5.o $(objects)/SDL_test_random.o + +SRC_DIST = *.txt acinclude Android.mk autogen.sh android-project build-scripts cmake cmake_uninstall.cmake.in configure configure.in debian docs include Makefile.* sdl2-config.cmake.in sdl2-config.in sdl2.m4 sdl2.pc.in SDL2.spec.in src test VisualC.html VisualC VisualC-WinRT Xcode Xcode-iOS +GEN_DIST = SDL2.spec + +ifneq ($V,1) +RUN_CMD_AR = @echo " AR " $@; +RUN_CMD_CC = @echo " CC " $@; +RUN_CMD_CXX = @echo " CXX " $@; +RUN_CMD_LTLINK = @echo " LTLINK" $@; +RUN_CMD_RANLIB = @echo " RANLIB" $@; +LIBTOOL += --quiet +endif + +HDRS = \ + SDL.h \ + SDL_assert.h \ + SDL_atomic.h \ + SDL_audio.h \ + SDL_bits.h \ + SDL_blendmode.h \ + SDL_clipboard.h \ + SDL_cpuinfo.h \ + SDL_egl.h \ + SDL_endian.h \ + SDL_error.h \ + SDL_events.h \ + SDL_filesystem.h \ + SDL_gamecontroller.h \ + SDL_gesture.h \ + SDL_haptic.h \ + SDL_hints.h \ + SDL_joystick.h \ + SDL_keyboard.h \ + SDL_keycode.h \ + SDL_loadso.h \ + SDL_log.h \ + SDL_main.h \ + SDL_messagebox.h \ + SDL_mouse.h \ + SDL_mutex.h \ + SDL_name.h \ + SDL_opengl.h \ + SDL_opengl_glext.h \ + SDL_opengles.h \ + SDL_opengles2_gl2ext.h \ + SDL_opengles2_gl2.h \ + SDL_opengles2_gl2platform.h \ + SDL_opengles2.h \ + SDL_opengles2_khrplatform.h \ + SDL_pixels.h \ + SDL_platform.h \ + SDL_power.h \ + SDL_quit.h \ + SDL_rect.h \ + SDL_render.h \ + SDL_rwops.h \ + SDL_scancode.h \ + SDL_shape.h \ + SDL_stdinc.h \ + SDL_surface.h \ + SDL_system.h \ + SDL_syswm.h \ + SDL_thread.h \ + SDL_timer.h \ + SDL_touch.h \ + SDL_types.h \ + SDL_version.h \ + SDL_video.h \ + begin_code.h \ + close_code.h + +SDLTEST_HDRS = $(shell ls $(srcdir)/include | fgrep SDL_test) + +LT_AGE = 4 +LT_CURRENT = 4 +LT_RELEASE = 2.0 +LT_REVISION = 0 +LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + +all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET) + +$(srcdir)/configure: $(srcdir)/configure.in + @echo "Warning, configure.in is out of date" + #(cd $(srcdir) && sh autogen.sh && sh configure) + @sleep 3 + +Makefile: $(srcdir)/Makefile.in + $(SHELL) config.status $@ + +Makefile.in:; + +$(objects): + $(SHELL) $(auxdir)/mkinstalldirs $@ + +update-revision: + $(SHELL) $(auxdir)/updaterev.sh + +.PHONY: all update-revision install install-bin install-hdrs install-lib install-data uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data clean distclean dist $(OBJECTS:.lo=.d) + +$(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS) + $(RUN_CMD_LTLINK)$(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) + +$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) + $(RUN_CMD_AR)$(AR) cru $@ $(SDLMAIN_OBJECTS) + $(RUN_CMD_RANLIB)$(RANLIB) $@ + +$(objects)/$(SDLTEST_TARGET): $(SDLTEST_OBJECTS) + $(RUN_CMD_AR)$(AR) cru $@ $(SDLTEST_OBJECTS) + $(RUN_CMD_RANLIB)$(RANLIB) $@ + +install: all install-bin install-hdrs install-lib install-data +install-bin: + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir) + $(INSTALL) -m 755 sdl2-config $(DESTDIR)$(bindir)/sdl2-config +install-hdrs: update-revision + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL2 + for file in $(HDRS) $(SDLTEST_HDRS); do \ + $(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL2/$$file; \ + done + $(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL2/SDL_config.h + if test -f include/SDL_revision.h; then \ + $(INSTALL) -m 644 include/SDL_revision.h $(DESTDIR)$(includedir)/SDL2/SDL_revision.h; \ + else \ + $(INSTALL) -m 644 $(srcdir)/include/SDL_revision.h $(DESTDIR)$(includedir)/SDL2/SDL_revision.h; \ + fi + +install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET) + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir) + $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET) + $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) + $(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) + $(INSTALL) -m 644 $(objects)/$(SDLTEST_TARGET) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) + $(RANLIB) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) +install-data: + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal + $(INSTALL) -m 644 $(srcdir)/sdl2.m4 $(DESTDIR)$(datadir)/aclocal/sdl2.m4 + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig + $(INSTALL) -m 644 sdl2.pc $(DESTDIR)$(libdir)/pkgconfig + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/cmake/SDL2 + $(INSTALL) -m 644 sdl2-config.cmake $(DESTDIR)$(libdir)/cmake/SDL2 + +uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data +uninstall-bin: + rm -f $(DESTDIR)$(bindir)/sdl2-config +uninstall-hdrs: + for file in $(HDRS) $(SDLTEST_HDRS); do \ + rm -f $(DESTDIR)$(includedir)/SDL2/$$file; \ + done + rm -f $(DESTDIR)$(includedir)/SDL2/SDL_config.h + rm -f $(DESTDIR)$(includedir)/SDL2/SDL_revision.h + -rmdir $(DESTDIR)$(includedir)/SDL2 +uninstall-lib: + $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET) + rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) + rm -f $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) +uninstall-data: + rm -f $(DESTDIR)$(datadir)/aclocal/sdl2.m4 + rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl2.pc + rm -f $(DESTDIR)$(libdir)/cmake/SDL2/sdl2-config.cmake + +clean: + rm -rf $(objects) + if test -f test/Makefile; then (cd test; $(MAKE) $@); fi + +distclean: clean + rm -f Makefile Makefile.rules sdl2-config + rm -f config.status config.cache config.log libtool + rm -rf $(srcdir)/autom4te* + find $(srcdir) \( \ + -name '*~' -o \ + -name '*.bak' -o \ + -name '*.old' -o \ + -name '*.rej' -o \ + -name '*.orig' -o \ + -name '.#*' \) \ + -exec rm -f {} \; + if test -f test/Makefile; then (cd test; $(MAKE) $@); fi + +dist $(distfile): + $(SHELL) $(auxdir)/mkinstalldirs $(distdir) + (cd $(srcdir); tar cf - $(SRC_DIST)) | (cd $(distdir); tar xf -) + tar cf - $(GEN_DIST) | (cd $(distdir); tar xf -) + find $(distdir) \( \ + -name '*~' -o \ + -name '*.bak' -o \ + -name '*.old' -o \ + -name '*.rej' -o \ + -name '*.orig' -o \ + -name '.#*' \) \ + -exec rm -f {} \; + if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi + (cd $(distdir); build-scripts/updaterev.sh) + tar cvf - $(distdir) | gzip --best >$(distfile) + rm -rf $(distdir) + +rpm: $(distfile) + rpmbuild -ta $? + +# Build rules for objects +-include $(OBJECTS:.lo=.d) + +# Special dependency for SDL.c, since it depends on SDL_revision.h +/home/sean/Documents/Code/SDL/src/SDL.c: update-revision + +$(objects)/SDL.lo: /home/sean/Documents/Code/SDL/src/SDL.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_assert.lo: /home/sean/Documents/Code/SDL/src/SDL_assert.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_error.lo: /home/sean/Documents/Code/SDL/src/SDL_error.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_hints.lo: /home/sean/Documents/Code/SDL/src/SDL_hints.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_log.lo: /home/sean/Documents/Code/SDL/src/SDL_log.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_atomic.lo: /home/sean/Documents/Code/SDL/src/atomic/SDL_atomic.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_spinlock.lo: /home/sean/Documents/Code/SDL/src/atomic/SDL_spinlock.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audio.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audiocvt.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audiocvt.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audiodev.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audiodev.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audiotypecvt.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audiotypecvt.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_mixer.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_mixer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_wave.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_wave.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_cpuinfo.lo: /home/sean/Documents/Code/SDL/src/cpuinfo/SDL_cpuinfo.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dynapi.lo: /home/sean/Documents/Code/SDL/src/dynapi/SDL_dynapi.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_clipboardevents.lo: /home/sean/Documents/Code/SDL/src/events/SDL_clipboardevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dropevents.lo: /home/sean/Documents/Code/SDL/src/events/SDL_dropevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_events.lo: /home/sean/Documents/Code/SDL/src/events/SDL_events.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_gesture.lo: /home/sean/Documents/Code/SDL/src/events/SDL_gesture.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_keyboard.lo: /home/sean/Documents/Code/SDL/src/events/SDL_keyboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_mouse.lo: /home/sean/Documents/Code/SDL/src/events/SDL_mouse.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_quit.lo: /home/sean/Documents/Code/SDL/src/events/SDL_quit.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_touch.lo: /home/sean/Documents/Code/SDL/src/events/SDL_touch.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_windowevents.lo: /home/sean/Documents/Code/SDL/src/events/SDL_windowevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_rwops.lo: /home/sean/Documents/Code/SDL/src/file/SDL_rwops.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_haptic.lo: /home/sean/Documents/Code/SDL/src/haptic/SDL_haptic.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_gamecontroller.lo: /home/sean/Documents/Code/SDL/src/joystick/SDL_gamecontroller.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_joystick.lo: /home/sean/Documents/Code/SDL/src/joystick/SDL_joystick.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_atan2.lo: /home/sean/Documents/Code/SDL/src/libm/e_atan2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_log.lo: /home/sean/Documents/Code/SDL/src/libm/e_log.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_pow.lo: /home/sean/Documents/Code/SDL/src/libm/e_pow.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_rem_pio2.lo: /home/sean/Documents/Code/SDL/src/libm/e_rem_pio2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_sqrt.lo: /home/sean/Documents/Code/SDL/src/libm/e_sqrt.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_cos.lo: /home/sean/Documents/Code/SDL/src/libm/k_cos.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_rem_pio2.lo: /home/sean/Documents/Code/SDL/src/libm/k_rem_pio2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_sin.lo: /home/sean/Documents/Code/SDL/src/libm/k_sin.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_tan.lo: /home/sean/Documents/Code/SDL/src/libm/k_tan.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_atan.lo: /home/sean/Documents/Code/SDL/src/libm/s_atan.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_copysign.lo: /home/sean/Documents/Code/SDL/src/libm/s_copysign.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_cos.lo: /home/sean/Documents/Code/SDL/src/libm/s_cos.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_fabs.lo: /home/sean/Documents/Code/SDL/src/libm/s_fabs.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_floor.lo: /home/sean/Documents/Code/SDL/src/libm/s_floor.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_scalbn.lo: /home/sean/Documents/Code/SDL/src/libm/s_scalbn.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_sin.lo: /home/sean/Documents/Code/SDL/src/libm/s_sin.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_tan.lo: /home/sean/Documents/Code/SDL/src/libm/s_tan.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_power.lo: /home/sean/Documents/Code/SDL/src/power/SDL_power.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_d3dmath.lo: /home/sean/Documents/Code/SDL/src/render/SDL_d3dmath.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render.lo: /home/sean/Documents/Code/SDL/src/render/SDL_render.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_yuv_mmx.lo: /home/sean/Documents/Code/SDL/src/render/SDL_yuv_mmx.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_yuv_sw.lo: /home/sean/Documents/Code/SDL/src/render/SDL_yuv_sw.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_d3d.lo: /home/sean/Documents/Code/SDL/src/render/direct3d/SDL_render_d3d.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_d3d11.lo: /home/sean/Documents/Code/SDL/src/render/direct3d11/SDL_render_d3d11.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_gl.lo: /home/sean/Documents/Code/SDL/src/render/opengl/SDL_render_gl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_shaders_gl.lo: /home/sean/Documents/Code/SDL/src/render/opengl/SDL_shaders_gl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_gles.lo: /home/sean/Documents/Code/SDL/src/render/opengles/SDL_render_gles.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_gles2.lo: /home/sean/Documents/Code/SDL/src/render/opengles2/SDL_render_gles2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_shaders_gles2.lo: /home/sean/Documents/Code/SDL/src/render/opengles2/SDL_shaders_gles2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_psp.lo: /home/sean/Documents/Code/SDL/src/render/psp/SDL_render_psp.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blendfillrect.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_blendfillrect.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blendline.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_blendline.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blendpoint.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_blendpoint.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_drawline.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_drawline.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_drawpoint.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_drawpoint.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_sw.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_render_sw.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_rotate.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_rotate.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_getenv.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_getenv.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_iconv.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_iconv.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_malloc.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_malloc.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_qsort.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_qsort.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_stdlib.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_stdlib.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_string.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_string.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_thread.lo: /home/sean/Documents/Code/SDL/src/thread/SDL_thread.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_timer.lo: /home/sean/Documents/Code/SDL/src/timer/SDL_timer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_RLEaccel.lo: /home/sean/Documents/Code/SDL/src/video/SDL_RLEaccel.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_0.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_0.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_1.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_1.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_A.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_A.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_N.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_N.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_auto.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_auto.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_copy.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_copy.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_slow.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_slow.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_bmp.lo: /home/sean/Documents/Code/SDL/src/video/SDL_bmp.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_clipboard.lo: /home/sean/Documents/Code/SDL/src/video/SDL_clipboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_egl.lo: /home/sean/Documents/Code/SDL/src/video/SDL_egl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_fillrect.lo: /home/sean/Documents/Code/SDL/src/video/SDL_fillrect.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_pixels.lo: /home/sean/Documents/Code/SDL/src/video/SDL_pixels.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_rect.lo: /home/sean/Documents/Code/SDL/src/video/SDL_rect.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_shape.lo: /home/sean/Documents/Code/SDL/src/video/SDL_shape.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_stretch.lo: /home/sean/Documents/Code/SDL/src/video/SDL_stretch.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_surface.lo: /home/sean/Documents/Code/SDL/src/video/SDL_surface.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_video.lo: /home/sean/Documents/Code/SDL/src/video/SDL_video.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_nullevents.lo: /home/sean/Documents/Code/SDL/src/video/dummy/SDL_nullevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_nullframebuffer.lo: /home/sean/Documents/Code/SDL/src/video/dummy/SDL_nullframebuffer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_nullvideo.lo: /home/sean/Documents/Code/SDL/src/video/dummy/SDL_nullvideo.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_diskaudio.lo: /home/sean/Documents/Code/SDL/src/audio/disk/SDL_diskaudio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dummyaudio.lo: /home/sean/Documents/Code/SDL/src/audio/dummy/SDL_dummyaudio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysloadso.lo: /home/sean/Documents/Code/SDL/src/loadso/dlopen/SDL_sysloadso.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dspaudio.lo: /home/sean/Documents/Code/SDL/src/audio/dsp/SDL_dspaudio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11clipboard.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11clipboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11dyn.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11dyn.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11events.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11events.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11framebuffer.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11framebuffer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11keyboard.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11keyboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11messagebox.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11messagebox.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11modes.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11modes.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11mouse.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11mouse.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11opengl.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11opengl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11opengles.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11opengles.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11shape.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11shape.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11touch.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11touch.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11video.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11video.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11window.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11window.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11xinput2.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11xinput2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/edid-parse.lo: /home/sean/Documents/Code/SDL/src/video/x11/edid-parse.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/imKStoUCS.lo: /home/sean/Documents/Code/SDL/src/video/x11/imKStoUCS.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_systhread.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_systhread.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syssem.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_syssem.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysmutex.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_sysmutex.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syscond.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_syscond.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_systls.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_systls.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysjoystick.lo: /home/sean/Documents/Code/SDL/src/joystick/linux/SDL_sysjoystick.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syshaptic.lo: /home/sean/Documents/Code/SDL/src/haptic/linux/SDL_syshaptic.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syspower.lo: /home/sean/Documents/Code/SDL/src/power/linux/SDL_syspower.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysfilesystem.lo: /home/sean/Documents/Code/SDL/src/filesystem/unix/SDL_sysfilesystem.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_systimer.lo: /home/sean/Documents/Code/SDL/src/timer/unix/SDL_systimer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_evdev.lo: /home/sean/Documents/Code/SDL/src/core/linux/SDL_evdev.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + + +$(objects)/SDL_dummy_main.o: /home/sean/Documents/Code/SDL/src/main/dummy/SDL_dummy_main.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_test_assert.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_assert.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_common.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_common.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_compare.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_compare.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_crc32.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_crc32.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_font.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_font.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_fuzzer.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_fuzzer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_harness.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_harness.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imageBlit.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imageBlit.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imageBlitBlend.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imageBlitBlend.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imageFace.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imageFace.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imagePrimitives.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imagePrimitives.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imagePrimitivesBlend.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imagePrimitivesBlend.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_log.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_log.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_md5.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_md5.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_random.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_random.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ diff --git a/SDL/Makefile.in b/SDL/Makefile.in new file mode 100644 index 0000000..b66e0f5 --- /dev/null +++ b/SDL/Makefile.in @@ -0,0 +1,237 @@ +# Makefile to build and install the SDL library + +top_builddir = . +srcdir = @srcdir@ +objects = build +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +libdir = @libdir@ +includedir = @includedir@ +datarootdir = @datarootdir@ +datadir = @datadir@ +auxdir = @ac_aux_dir@ +distpath = $(srcdir)/.. +distdir = SDL2-@SDL_VERSION@ +distfile = $(distdir).tar.gz + +@SET_MAKE@ +SHELL = @SHELL@ +CC = @CC@ +INCLUDE = @INCLUDE@ +CFLAGS = @BUILD_CFLAGS@ +EXTRA_CFLAGS = @EXTRA_CFLAGS@ +LDFLAGS = @BUILD_LDFLAGS@ +EXTRA_LDFLAGS = @EXTRA_LDFLAGS@ +LIBTOOL = @LIBTOOL@ +INSTALL = @INSTALL@ +AR = @AR@ +RANLIB = @RANLIB@ +WINDRES = @WINDRES@ + +TARGET = libSDL2.la +OBJECTS = @OBJECTS@ +VERSION_OBJECTS = @VERSION_OBJECTS@ + +SDLMAIN_TARGET = libSDL2main.a +SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@ + +SDLTEST_TARGET = libSDL2_test.a +SDLTEST_OBJECTS = @SDLTEST_OBJECTS@ + +SRC_DIST = *.txt acinclude Android.mk autogen.sh android-project build-scripts cmake cmake_uninstall.cmake.in configure configure.in debian docs include Makefile.* sdl2-config.cmake.in sdl2-config.in sdl2.m4 sdl2.pc.in SDL2.spec.in src test VisualC.html VisualC VisualC-WinRT Xcode Xcode-iOS +GEN_DIST = SDL2.spec + +ifneq ($V,1) +RUN_CMD_AR = @echo " AR " $@; +RUN_CMD_CC = @echo " CC " $@; +RUN_CMD_CXX = @echo " CXX " $@; +RUN_CMD_LTLINK = @echo " LTLINK" $@; +RUN_CMD_RANLIB = @echo " RANLIB" $@; +LIBTOOL += --quiet +endif + +HDRS = \ + SDL.h \ + SDL_assert.h \ + SDL_atomic.h \ + SDL_audio.h \ + SDL_bits.h \ + SDL_blendmode.h \ + SDL_clipboard.h \ + SDL_cpuinfo.h \ + SDL_egl.h \ + SDL_endian.h \ + SDL_error.h \ + SDL_events.h \ + SDL_filesystem.h \ + SDL_gamecontroller.h \ + SDL_gesture.h \ + SDL_haptic.h \ + SDL_hints.h \ + SDL_joystick.h \ + SDL_keyboard.h \ + SDL_keycode.h \ + SDL_loadso.h \ + SDL_log.h \ + SDL_main.h \ + SDL_messagebox.h \ + SDL_mouse.h \ + SDL_mutex.h \ + SDL_name.h \ + SDL_opengl.h \ + SDL_opengl_glext.h \ + SDL_opengles.h \ + SDL_opengles2_gl2ext.h \ + SDL_opengles2_gl2.h \ + SDL_opengles2_gl2platform.h \ + SDL_opengles2.h \ + SDL_opengles2_khrplatform.h \ + SDL_pixels.h \ + SDL_platform.h \ + SDL_power.h \ + SDL_quit.h \ + SDL_rect.h \ + SDL_render.h \ + SDL_rwops.h \ + SDL_scancode.h \ + SDL_shape.h \ + SDL_stdinc.h \ + SDL_surface.h \ + SDL_system.h \ + SDL_syswm.h \ + SDL_thread.h \ + SDL_timer.h \ + SDL_touch.h \ + SDL_types.h \ + SDL_version.h \ + SDL_video.h \ + begin_code.h \ + close_code.h + +SDLTEST_HDRS = $(shell ls $(srcdir)/include | fgrep SDL_test) + +LT_AGE = @LT_AGE@ +LT_CURRENT = @LT_CURRENT@ +LT_RELEASE = @LT_RELEASE@ +LT_REVISION = @LT_REVISION@ +LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + +all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET) + +$(srcdir)/configure: $(srcdir)/configure.in + @echo "Warning, configure.in is out of date" + #(cd $(srcdir) && sh autogen.sh && sh configure) + @sleep 3 + +Makefile: $(srcdir)/Makefile.in + $(SHELL) config.status $@ + +Makefile.in:; + +$(objects): + $(SHELL) $(auxdir)/mkinstalldirs $@ + +update-revision: + $(SHELL) $(auxdir)/updaterev.sh + +.PHONY: all update-revision install install-bin install-hdrs install-lib install-data uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data clean distclean dist $(OBJECTS:.lo=.d) + +$(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS) + $(RUN_CMD_LTLINK)$(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) + +$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) + $(RUN_CMD_AR)$(AR) cru $@ $(SDLMAIN_OBJECTS) + $(RUN_CMD_RANLIB)$(RANLIB) $@ + +$(objects)/$(SDLTEST_TARGET): $(SDLTEST_OBJECTS) + $(RUN_CMD_AR)$(AR) cru $@ $(SDLTEST_OBJECTS) + $(RUN_CMD_RANLIB)$(RANLIB) $@ + +install: all install-bin install-hdrs install-lib install-data +install-bin: + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir) + $(INSTALL) -m 755 sdl2-config $(DESTDIR)$(bindir)/sdl2-config +install-hdrs: update-revision + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL2 + for file in $(HDRS) $(SDLTEST_HDRS); do \ + $(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL2/$$file; \ + done + $(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL2/SDL_config.h + if test -f include/SDL_revision.h; then \ + $(INSTALL) -m 644 include/SDL_revision.h $(DESTDIR)$(includedir)/SDL2/SDL_revision.h; \ + else \ + $(INSTALL) -m 644 $(srcdir)/include/SDL_revision.h $(DESTDIR)$(includedir)/SDL2/SDL_revision.h; \ + fi + +install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET) + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir) + $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET) + $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) + $(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) + $(INSTALL) -m 644 $(objects)/$(SDLTEST_TARGET) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) + $(RANLIB) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) +install-data: + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal + $(INSTALL) -m 644 $(srcdir)/sdl2.m4 $(DESTDIR)$(datadir)/aclocal/sdl2.m4 + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig + $(INSTALL) -m 644 sdl2.pc $(DESTDIR)$(libdir)/pkgconfig + $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/cmake/SDL2 + $(INSTALL) -m 644 sdl2-config.cmake $(DESTDIR)$(libdir)/cmake/SDL2 + +uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data +uninstall-bin: + rm -f $(DESTDIR)$(bindir)/sdl2-config +uninstall-hdrs: + for file in $(HDRS) $(SDLTEST_HDRS); do \ + rm -f $(DESTDIR)$(includedir)/SDL2/$$file; \ + done + rm -f $(DESTDIR)$(includedir)/SDL2/SDL_config.h + rm -f $(DESTDIR)$(includedir)/SDL2/SDL_revision.h + -rmdir $(DESTDIR)$(includedir)/SDL2 +uninstall-lib: + $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET) + rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) + rm -f $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) +uninstall-data: + rm -f $(DESTDIR)$(datadir)/aclocal/sdl2.m4 + rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl2.pc + rm -f $(DESTDIR)$(libdir)/cmake/SDL2/sdl2-config.cmake + +clean: + rm -rf $(objects) + if test -f test/Makefile; then (cd test; $(MAKE) $@); fi + +distclean: clean + rm -f Makefile Makefile.rules sdl2-config + rm -f config.status config.cache config.log libtool + rm -rf $(srcdir)/autom4te* + find $(srcdir) \( \ + -name '*~' -o \ + -name '*.bak' -o \ + -name '*.old' -o \ + -name '*.rej' -o \ + -name '*.orig' -o \ + -name '.#*' \) \ + -exec rm -f {} \; + if test -f test/Makefile; then (cd test; $(MAKE) $@); fi + +dist $(distfile): + $(SHELL) $(auxdir)/mkinstalldirs $(distdir) + (cd $(srcdir); tar cf - $(SRC_DIST)) | (cd $(distdir); tar xf -) + tar cf - $(GEN_DIST) | (cd $(distdir); tar xf -) + find $(distdir) \( \ + -name '*~' -o \ + -name '*.bak' -o \ + -name '*.old' -o \ + -name '*.rej' -o \ + -name '*.orig' -o \ + -name '.#*' \) \ + -exec rm -f {} \; + if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi + (cd $(distdir); build-scripts/updaterev.sh) + tar cvf - $(distdir) | gzip --best >$(distfile) + rm -rf $(distdir) + +rpm: $(distfile) + rpmbuild -ta $? diff --git a/SDL/Makefile.minimal b/SDL/Makefile.minimal new file mode 100644 index 0000000..6ec1ce8 --- /dev/null +++ b/SDL/Makefile.minimal @@ -0,0 +1,42 @@ +# Makefile to build the SDL library + +INCLUDE = -I./include +CFLAGS = -g -O2 $(INCLUDE) +AR = ar +RANLIB = ranlib + +TARGET = libSDL.a +SOURCES = \ + src/*.c \ + src/audio/*.c \ + src/audio/dummy/*.c \ + src/cpuinfo/*.c \ + src/events/*.c \ + src/file/*.c \ + src/haptic/*.c \ + src/haptic/dummy/*.c \ + src/joystick/*.c \ + src/joystick/dummy/*.c \ + src/loadso/dummy/*.c \ + src/power/*.c \ + src/filesystem/dummy/*.c \ + src/render/*.c \ + src/render/software/*.c \ + src/stdlib/*.c \ + src/thread/*.c \ + src/thread/generic/*.c \ + src/timer/*.c \ + src/timer/dummy/*.c \ + src/video/*.c \ + src/video/dummy/*.c \ + +OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g') + +all: $(TARGET) + +$(TARGET): $(OBJECTS) + $(AR) crv $@ $^ + $(RANLIB) $@ + +clean: + rm -f $(TARGET) $(OBJECTS) diff --git a/SDL/Makefile.pandora b/SDL/Makefile.pandora new file mode 100644 index 0000000..bb89d52 --- /dev/null +++ b/SDL/Makefile.pandora @@ -0,0 +1,37 @@ +# Makefile to build the pandora SDL library + +AR = arm-none-linux-gnueabi-ar +RANLIB = arm-none-linux-gnueabi-ranlib +CC = arm-none-linux-gnueabi-gcc +CXX = arm-none-linux-gnueabi-g++ +STRIP = arm-none-linux-gnueabi-strip + +CFLAGS = -O3 -march=armv7-a -mcpu=cortex-a8 -mtune=cortex-a8 -mfloat-abi=softfp \ + -mfpu=neon -ftree-vectorize -ffast-math -fomit-frame-pointer -fno-strict-aliasing -fsingle-precision-constant \ + -I./include -I$(PNDSDK)/usr/include -DSDL_REVISION=0 + +TARGET = libSDL.a + +SOURCES = ./src/*.c ./src/audio/*.c ./src/cpuinfo/*.c ./src/events/*.c \ + ./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \ + ./src/joystick/*.c ./src/haptic/*.c ./src/power/*.c ./src/video/dummy/*.c ./src/audio/disk/*.c \ + ./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c \ + ./src/thread/pthread/SDL_systhread.c ./src/thread/pthread/SDL_syssem.c \ + ./src/thread/pthread/SDL_sysmutex.c ./src/thread/pthread/SDL_syscond.c \ + ./src/joystick/linux/*.c ./src/haptic/linux/*.c ./src/timer/unix/*.c \ + ./src/atomic/linux/*.c ./src/filesystem/unix/*.c \ + ./src/video/pandora/SDL_pandora.o ./src/video/pandora/SDL_pandora_events.o ./src/video/x11/*.c + + +OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g') + +CONFIG_H = $(shell cp include/SDL_config_pandora.h include/SDL_config.h && touch include/SDL_revision.h) + +all: $(TARGET) + +$(TARGET): $(CONFIG_H) $(OBJECTS) + $(AR) crv $@ $^ + $(RANLIB) $@ + +clean: + rm -f $(TARGET) $(OBJECTS) diff --git a/SDL/Makefile.psp b/SDL/Makefile.psp new file mode 100644 index 0000000..93fb9e4 --- /dev/null +++ b/SDL/Makefile.psp @@ -0,0 +1,93 @@ +TARGET_LIB = libSDL2.a +OBJS= src/SDL.o \ + src/SDL_assert.o \ + src/SDL_error.o \ + src/SDL_hints.o \ + src/SDL_log.o \ + src/atomic/SDL_atomic.o \ + src/atomic/SDL_spinlock.o \ + src/audio/SDL_audio.o \ + src/audio/SDL_audiocvt.o \ + src/audio/SDL_audiodev.o \ + src/audio/SDL_audiotypecvt.o \ + src/audio/SDL_mixer.o \ + src/audio/SDL_wave.o \ + src/audio/psp/SDL_pspaudio.o \ + src/cpuinfo/SDL_cpuinfo.o \ + src/events/SDL_clipboardevents.o \ + src/events/SDL_dropevents.o \ + src/events/SDL_events.o \ + src/events/SDL_gesture.o \ + src/events/SDL_keyboard.o \ + src/events/SDL_mouse.o \ + src/events/SDL_quit.o \ + src/events/SDL_touch.o \ + src/events/SDL_windowevents.o \ + src/file/SDL_rwops.o \ + src/haptic/SDL_haptic.o \ + src/haptic/dummy/SDL_syshaptic.o \ + src/joystick/SDL_joystick.o \ + src/joystick/SDL_gamecontroller.o \ + src/joystick/psp/SDL_sysjoystick.o \ + src/power/SDL_power.o \ + src/power/psp/SDL_syspower.o \ + src/filesystem/dummy/SDL_sysfilesystem.o \ + src/render/SDL_render.o \ + src/render/SDL_yuv_sw.o \ + src/render/psp/SDL_render_psp.o \ + src/render/software/SDL_blendfillrect.o \ + src/render/software/SDL_blendline.o \ + src/render/software/SDL_blendpoint.o \ + src/render/software/SDL_drawline.o \ + src/render/software/SDL_drawpoint.o \ + src/render/software/SDL_render_sw.o \ + src/render/software/SDL_rotate.o \ + src/stdlib/SDL_getenv.o \ + src/stdlib/SDL_iconv.o \ + src/stdlib/SDL_malloc.o \ + src/stdlib/SDL_qsort.o \ + src/stdlib/SDL_stdlib.o \ + src/stdlib/SDL_string.o \ + src/thread/SDL_thread.o \ + src/thread/generic/SDL_systls.o \ + src/thread/psp/SDL_syssem.o \ + src/thread/psp/SDL_systhread.o \ + src/thread/psp/SDL_sysmutex.o \ + src/thread/psp/SDL_syscond.o \ + src/timer/SDL_timer.o \ + src/timer/psp/SDL_systimer.o \ + src/video/SDL_RLEaccel.o \ + src/video/SDL_blit.o \ + src/video/SDL_blit_0.o \ + src/video/SDL_blit_1.o \ + src/video/SDL_blit_A.o \ + src/video/SDL_blit_N.o \ + src/video/SDL_blit_auto.o \ + src/video/SDL_blit_copy.o \ + src/video/SDL_blit_slow.o \ + src/video/SDL_bmp.o \ + src/video/SDL_clipboard.o \ + src/video/SDL_fillrect.o \ + src/video/SDL_pixels.o \ + src/video/SDL_rect.o \ + src/video/SDL_stretch.o \ + src/video/SDL_surface.o \ + src/video/SDL_video.o \ + src/video/psp/SDL_pspevents.o \ + src/video/psp/SDL_pspvideo.o \ + src/video/psp/SDL_pspgl.o \ + src/video/psp/SDL_pspmouse.o \ + +INCDIR = ./include +CFLAGS = -g -O2 -G0 -Wall -D__PSP__ -DHAVE_OPENGL +CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti +ASFLAGS = $(CFLAGS) + +LIBDIR = +LIBS = -lGL -lGLU -lglut -lz \ + -lpspvfpu -lpsphprm -lpspsdk -lpspctrl -lpspumd -lpsprtc -lpsppower -lpspgum -lpspgu -lpspaudiolib -lpspaudio -lpsphttp -lpspssl -lpspwlan \ + -lpspnet_adhocmatching -lpspnet_adhoc -lpspnet_adhocctl -lm -lpspvram + +PSPSDK=$(shell psp-config --pspsdk-path) +include $(PSPSDK)/lib/build.mak + diff --git a/SDL/Makefile.rules b/SDL/Makefile.rules new file mode 100644 index 0000000..7bb0cd2 --- /dev/null +++ b/SDL/Makefile.rules @@ -0,0 +1,422 @@ + +# Build rules for objects +-include $(OBJECTS:.lo=.d) + +# Special dependency for SDL.c, since it depends on SDL_revision.h +/home/sean/Documents/Code/SDL/src/SDL.c: update-revision + +$(objects)/SDL.lo: /home/sean/Documents/Code/SDL/src/SDL.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_assert.lo: /home/sean/Documents/Code/SDL/src/SDL_assert.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_error.lo: /home/sean/Documents/Code/SDL/src/SDL_error.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_hints.lo: /home/sean/Documents/Code/SDL/src/SDL_hints.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_log.lo: /home/sean/Documents/Code/SDL/src/SDL_log.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_atomic.lo: /home/sean/Documents/Code/SDL/src/atomic/SDL_atomic.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_spinlock.lo: /home/sean/Documents/Code/SDL/src/atomic/SDL_spinlock.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audio.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audiocvt.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audiocvt.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audiodev.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audiodev.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_audiotypecvt.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_audiotypecvt.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_mixer.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_mixer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_wave.lo: /home/sean/Documents/Code/SDL/src/audio/SDL_wave.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_cpuinfo.lo: /home/sean/Documents/Code/SDL/src/cpuinfo/SDL_cpuinfo.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dynapi.lo: /home/sean/Documents/Code/SDL/src/dynapi/SDL_dynapi.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_clipboardevents.lo: /home/sean/Documents/Code/SDL/src/events/SDL_clipboardevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dropevents.lo: /home/sean/Documents/Code/SDL/src/events/SDL_dropevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_events.lo: /home/sean/Documents/Code/SDL/src/events/SDL_events.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_gesture.lo: /home/sean/Documents/Code/SDL/src/events/SDL_gesture.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_keyboard.lo: /home/sean/Documents/Code/SDL/src/events/SDL_keyboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_mouse.lo: /home/sean/Documents/Code/SDL/src/events/SDL_mouse.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_quit.lo: /home/sean/Documents/Code/SDL/src/events/SDL_quit.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_touch.lo: /home/sean/Documents/Code/SDL/src/events/SDL_touch.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_windowevents.lo: /home/sean/Documents/Code/SDL/src/events/SDL_windowevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_rwops.lo: /home/sean/Documents/Code/SDL/src/file/SDL_rwops.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_haptic.lo: /home/sean/Documents/Code/SDL/src/haptic/SDL_haptic.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_gamecontroller.lo: /home/sean/Documents/Code/SDL/src/joystick/SDL_gamecontroller.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_joystick.lo: /home/sean/Documents/Code/SDL/src/joystick/SDL_joystick.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_atan2.lo: /home/sean/Documents/Code/SDL/src/libm/e_atan2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_log.lo: /home/sean/Documents/Code/SDL/src/libm/e_log.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_pow.lo: /home/sean/Documents/Code/SDL/src/libm/e_pow.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_rem_pio2.lo: /home/sean/Documents/Code/SDL/src/libm/e_rem_pio2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/e_sqrt.lo: /home/sean/Documents/Code/SDL/src/libm/e_sqrt.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_cos.lo: /home/sean/Documents/Code/SDL/src/libm/k_cos.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_rem_pio2.lo: /home/sean/Documents/Code/SDL/src/libm/k_rem_pio2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_sin.lo: /home/sean/Documents/Code/SDL/src/libm/k_sin.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/k_tan.lo: /home/sean/Documents/Code/SDL/src/libm/k_tan.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_atan.lo: /home/sean/Documents/Code/SDL/src/libm/s_atan.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_copysign.lo: /home/sean/Documents/Code/SDL/src/libm/s_copysign.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_cos.lo: /home/sean/Documents/Code/SDL/src/libm/s_cos.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_fabs.lo: /home/sean/Documents/Code/SDL/src/libm/s_fabs.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_floor.lo: /home/sean/Documents/Code/SDL/src/libm/s_floor.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_scalbn.lo: /home/sean/Documents/Code/SDL/src/libm/s_scalbn.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_sin.lo: /home/sean/Documents/Code/SDL/src/libm/s_sin.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/s_tan.lo: /home/sean/Documents/Code/SDL/src/libm/s_tan.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_power.lo: /home/sean/Documents/Code/SDL/src/power/SDL_power.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_d3dmath.lo: /home/sean/Documents/Code/SDL/src/render/SDL_d3dmath.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render.lo: /home/sean/Documents/Code/SDL/src/render/SDL_render.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_yuv_mmx.lo: /home/sean/Documents/Code/SDL/src/render/SDL_yuv_mmx.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_yuv_sw.lo: /home/sean/Documents/Code/SDL/src/render/SDL_yuv_sw.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_d3d.lo: /home/sean/Documents/Code/SDL/src/render/direct3d/SDL_render_d3d.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_d3d11.lo: /home/sean/Documents/Code/SDL/src/render/direct3d11/SDL_render_d3d11.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_gl.lo: /home/sean/Documents/Code/SDL/src/render/opengl/SDL_render_gl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_shaders_gl.lo: /home/sean/Documents/Code/SDL/src/render/opengl/SDL_shaders_gl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_gles.lo: /home/sean/Documents/Code/SDL/src/render/opengles/SDL_render_gles.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_gles2.lo: /home/sean/Documents/Code/SDL/src/render/opengles2/SDL_render_gles2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_shaders_gles2.lo: /home/sean/Documents/Code/SDL/src/render/opengles2/SDL_shaders_gles2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_psp.lo: /home/sean/Documents/Code/SDL/src/render/psp/SDL_render_psp.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blendfillrect.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_blendfillrect.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blendline.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_blendline.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blendpoint.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_blendpoint.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_drawline.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_drawline.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_drawpoint.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_drawpoint.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_render_sw.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_render_sw.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_rotate.lo: /home/sean/Documents/Code/SDL/src/render/software/SDL_rotate.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_getenv.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_getenv.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_iconv.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_iconv.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_malloc.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_malloc.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_qsort.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_qsort.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_stdlib.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_stdlib.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_string.lo: /home/sean/Documents/Code/SDL/src/stdlib/SDL_string.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_thread.lo: /home/sean/Documents/Code/SDL/src/thread/SDL_thread.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_timer.lo: /home/sean/Documents/Code/SDL/src/timer/SDL_timer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_RLEaccel.lo: /home/sean/Documents/Code/SDL/src/video/SDL_RLEaccel.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_0.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_0.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_1.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_1.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_A.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_A.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_N.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_N.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_auto.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_auto.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_copy.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_copy.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_blit_slow.lo: /home/sean/Documents/Code/SDL/src/video/SDL_blit_slow.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_bmp.lo: /home/sean/Documents/Code/SDL/src/video/SDL_bmp.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_clipboard.lo: /home/sean/Documents/Code/SDL/src/video/SDL_clipboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_egl.lo: /home/sean/Documents/Code/SDL/src/video/SDL_egl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_fillrect.lo: /home/sean/Documents/Code/SDL/src/video/SDL_fillrect.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_pixels.lo: /home/sean/Documents/Code/SDL/src/video/SDL_pixels.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_rect.lo: /home/sean/Documents/Code/SDL/src/video/SDL_rect.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_shape.lo: /home/sean/Documents/Code/SDL/src/video/SDL_shape.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_stretch.lo: /home/sean/Documents/Code/SDL/src/video/SDL_stretch.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_surface.lo: /home/sean/Documents/Code/SDL/src/video/SDL_surface.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_video.lo: /home/sean/Documents/Code/SDL/src/video/SDL_video.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_nullevents.lo: /home/sean/Documents/Code/SDL/src/video/dummy/SDL_nullevents.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_nullframebuffer.lo: /home/sean/Documents/Code/SDL/src/video/dummy/SDL_nullframebuffer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_nullvideo.lo: /home/sean/Documents/Code/SDL/src/video/dummy/SDL_nullvideo.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_diskaudio.lo: /home/sean/Documents/Code/SDL/src/audio/disk/SDL_diskaudio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dummyaudio.lo: /home/sean/Documents/Code/SDL/src/audio/dummy/SDL_dummyaudio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysloadso.lo: /home/sean/Documents/Code/SDL/src/loadso/dlopen/SDL_sysloadso.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_dspaudio.lo: /home/sean/Documents/Code/SDL/src/audio/dsp/SDL_dspaudio.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11clipboard.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11clipboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11dyn.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11dyn.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11events.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11events.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11framebuffer.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11framebuffer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11keyboard.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11keyboard.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11messagebox.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11messagebox.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11modes.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11modes.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11mouse.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11mouse.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11opengl.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11opengl.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11opengles.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11opengles.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11shape.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11shape.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11touch.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11touch.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11video.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11video.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11window.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11window.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_x11xinput2.lo: /home/sean/Documents/Code/SDL/src/video/x11/SDL_x11xinput2.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/edid-parse.lo: /home/sean/Documents/Code/SDL/src/video/x11/edid-parse.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/imKStoUCS.lo: /home/sean/Documents/Code/SDL/src/video/x11/imKStoUCS.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_systhread.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_systhread.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syssem.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_syssem.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysmutex.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_sysmutex.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syscond.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_syscond.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_systls.lo: /home/sean/Documents/Code/SDL/src/thread/pthread/SDL_systls.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysjoystick.lo: /home/sean/Documents/Code/SDL/src/joystick/linux/SDL_sysjoystick.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syshaptic.lo: /home/sean/Documents/Code/SDL/src/haptic/linux/SDL_syshaptic.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_syspower.lo: /home/sean/Documents/Code/SDL/src/power/linux/SDL_syspower.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_sysfilesystem.lo: /home/sean/Documents/Code/SDL/src/filesystem/unix/SDL_sysfilesystem.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_systimer.lo: /home/sean/Documents/Code/SDL/src/timer/unix/SDL_systimer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_evdev.lo: /home/sean/Documents/Code/SDL/src/core/linux/SDL_evdev.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + + +$(objects)/SDL_dummy_main.o: /home/sean/Documents/Code/SDL/src/main/dummy/SDL_dummy_main.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ + +$(objects)/SDL_test_assert.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_assert.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_common.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_common.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_compare.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_compare.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_crc32.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_crc32.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_font.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_font.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_fuzzer.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_fuzzer.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_harness.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_harness.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imageBlit.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imageBlit.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imageBlitBlend.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imageBlitBlend.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imageFace.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imageFace.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imagePrimitives.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imagePrimitives.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_imagePrimitivesBlend.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_imagePrimitivesBlend.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_log.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_log.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_md5.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_md5.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ +$(objects)/SDL_test_random.o: /home/sean/Documents/Code/SDL/src/test/SDL_test_random.c + $(RUN_CMD_CC)$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -MT $@ -c $< -o $@ diff --git a/SDL/Makefile.wiz b/SDL/Makefile.wiz new file mode 100644 index 0000000..bb77057 --- /dev/null +++ b/SDL/Makefile.wiz @@ -0,0 +1,61 @@ +# Makefile to build the pandora SDL library +WIZSDK = /mythtv/media/devel/toolchains/openwiz/arm-openwiz-linux-gnu + +AR = $(WIZSDK)/bin/arm-openwiz-linux-gnu-ar +RANLIB = $(WIZSDK)/bin/arm-openwiz-linux-gnu-ranlib +CC = $(WIZSDK)/bin/arm-openwiz-linux-gnu-gcc +CXX = $(WIZSDK)/bin/arm-openwiz-linux-gnu-g++ +STRIP = $(WIZSDK)/bin/arm-openwiz-linux-gnu-strip + +CFLAGS = -Wall -fPIC -I./include -I$(WIZSDK)/include -DWIZ_GLES_LITE + +TARGET_STATIC = libSDL13.a +TARGET_SHARED = libSDL13.so + +SOURCES = ./src/*.c ./src/audio/*.c ./src/cpuinfo/*.c ./src/events/*.c \ + ./src/file/*.c ./src/stdlib/*.c ./src/thread/*.c ./src/timer/*.c ./src/video/*.c \ + ./src/joystick/*.c ./src/haptic/*.c ./src/video/dummy/*.c ./src/audio/disk/*.c \ + ./src/audio/dummy/*.c ./src/loadso/dlopen/*.c ./src/audio/dsp/*.c \ + ./src/thread/pthread/SDL_systhread.c ./src/thread/pthread/SDL_syssem.c \ + ./src/thread/pthread/SDL_sysmutex.c ./src/thread/pthread/SDL_syscond.c \ + ./src/joystick/linux/*.c ./src/haptic/linux/*.c ./src/timer/unix/*.c \ + ./src/video/pandora/SDL_pandora.o ./src/video/pandora/SDL_pandora_events.o + + +OBJECTS = $(shell echo $(SOURCES) | sed -e 's,\.c,\.o,g') + +all: config_copy $(TARGET_STATIC) $(TARGET_SHARED) + +$(TARGET_STATIC): $(OBJECTS) + $(AR) crv $@ $^ + $(RANLIB) $@ + +$(TARGET_SHARED): + $(CC) -shared -Wl,-soname,$(TARGET_SHARED).0 -o $(TARGET_SHARED).0.0.1 $(OBJECTS) + ln -s $(TARGET_SHARED).0.0.1 $(TARGET_SHARED).0 + ln -s $(TARGET_SHARED).0 $(TARGET_SHARED) + +config_copy: + cp include/SDL_config_wiz.h include/SDL_config.h + +clean: + rm -f $(TARGET_STATIC) $(TARGET_SHARED)* $(OBJECTS) + +install: + mkdir -p $(WIZSDK)/lib + mkdir -p $(WIZSDK)/include/SDL13 + cp -f $(TARGET_STATIC) $(WIZSDK)/lib + cp -f $(TARGET_SHARED).0.0.1 $(WIZSDK)/lib + rm -f $(WIZSDK)/lib/$(TARGET_SHARED).0 $(WIZSDK)/lib/$(TARGET_SHARED) + ln -s $(WIZSDK)/lib/$(TARGET_SHARED).0.0.1 $(WIZSDK)/lib/$(TARGET_SHARED).0 + ln -s $(WIZSDK)/lib/$(TARGET_SHARED).0 $(WIZSDK)/lib/$(TARGET_SHARED) + + cp $(TARGET_STATIC) ../../toolchain/libs + cp $(TARGET_SHARED).0.0.1 ../../toolchain/libs + rm -f ../../toolchain/libs/$(TARGET_SHARED).0 ../../toolchain/libs/$(TARGET_SHARED) + ln -s ../../toolchain/libs/$(TARGET_SHARED).0.0.1 ../../toolchain/libs/$(TARGET_SHARED).0 + ln -s ../../toolchain/libs/$(TARGET_SHARED).0 ../../toolchain/libs/$(TARGET_SHARED) + + cp $(TARGET_SHARED).0.0.1 ../nehe_demos/build/$(TARGET_SHARED).0 + cp -f include/*.h $(WIZSDK)/include/SDL13/ + cp -f include/*.h ../../toolchain/include/SDL13/ diff --git a/SDL/README-SDL.txt b/SDL/README-SDL.txt new file mode 100644 index 0000000..c3d2d37 --- /dev/null +++ b/SDL/README-SDL.txt @@ -0,0 +1,13 @@ + +Please distribute this file with the SDL runtime environment: + +The Simple DirectMedia Layer (SDL for short) is a cross-platform library +designed to make it easy to write multi-media software, such as games +and emulators. + +The Simple DirectMedia Layer library source code is available from: +http://www.libsdl.org/ + +This library is distributed under the terms of the zlib license: +http://www.zlib.net/zlib_license.html + diff --git a/SDL/README.txt b/SDL/README.txt new file mode 100644 index 0000000..84c335c --- /dev/null +++ b/SDL/README.txt @@ -0,0 +1,21 @@ + + Simple DirectMedia Layer + + (SDL) + + Version 2.0 + +--- +http://www.libsdl.org/ + +Simple DirectMedia Layer is a cross-platform development library designed +to provide low level access to audio, keyboard, mouse, joystick, and graphics +hardware via OpenGL and Direct3D. It is used by video playback software, +emulators, and popular games including Valve's award winning catalog +and many Humble Bundle games. + +More extensive documentation is available in the docs directory, starting +with README.md + +Enjoy! + Sam Lantinga (slouken@libsdl.org) diff --git a/SDL/SDL2.spec b/SDL/SDL2.spec new file mode 100644 index 0000000..0fe5754 --- /dev/null +++ b/SDL/SDL2.spec @@ -0,0 +1,118 @@ +Summary: Simple DirectMedia Layer +Name: SDL2 +Version: 2.0.4 +Release: 2 +Source: http://www.libsdl.org/release/%{name}-%{version}.tar.gz +URL: http://www.libsdl.org/ +License: zlib +Group: System Environment/Libraries +BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot +Prefix: %{_prefix} +%ifos linux +Provides: libSDL2-2.0.so.0 +%endif + +%define __defattr %defattr(-,root,root) +%define __soext so + +%description +This is the Simple DirectMedia Layer, a generic API that provides low +level access to audio, keyboard, mouse, and display framebuffer across +multiple platforms. + +%package devel +Summary: Libraries, includes and more to develop SDL applications. +Group: Development/Libraries +Requires: %{name} = %{version} + +%description devel +This is the Simple DirectMedia Layer, a generic API that provides low +level access to audio, keyboard, mouse, and display framebuffer across +multiple platforms. + +This is the libraries, include files and other resources you can use +to develop SDL applications. + + +%prep +%setup -q + +%build +%ifos linux +CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --disable-video-directfb +%else +%configure +%endif +make + +%install +rm -rf $RPM_BUILD_ROOT +%ifos linux +make install prefix=$RPM_BUILD_ROOT%{prefix} \ + bindir=$RPM_BUILD_ROOT%{_bindir} \ + libdir=$RPM_BUILD_ROOT%{_libdir} \ + includedir=$RPM_BUILD_ROOT%{_includedir} \ + datadir=$RPM_BUILD_ROOT%{_datadir} \ + mandir=$RPM_BUILD_ROOT%{_mandir} +%else +%makeinstall +%endif + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%{__defattr} +%doc README*.txt COPYING.txt CREDITS.txt BUGS.txt +%{_libdir}/lib*.%{__soext}.* + +%files devel +%{__defattr} +%doc docs/README*.md +%{_bindir}/*-config +%{_libdir}/lib*.a +%{_libdir}/lib*.la +%{_libdir}/lib*.%{__soext} +%{_includedir}/*/*.h +%{_libdir}/pkgconfig/* +%{_datadir}/aclocal/* + +%changelog +* Thu Jun 04 2015 Ryan C. Gordon +- Fixed README paths. + +* Sun Dec 07 2014 Simone Contini +- Fixed changelog date issue and docs filenames + +* Sun Jan 22 2012 Sam Lantinga +- Updated for SDL 2.0 + +* Tue May 16 2006 Sam Lantinga +- Removed support for Darwin, due to build problems on ps2linux + +* Sat Jan 03 2004 Anders Bjorklund +- Added support for Darwin, updated spec file + +* Wed Jan 19 2000 Sam Lantinga +- Re-integrated spec file into SDL distribution +- 'name' and 'version' come from configure +- Some of the documentation is devel specific +- Removed SMP support from %build - it doesn't work with libtool anyway + +* Tue Jan 18 2000 Hakan Tandogan +- Hacked Mandrake sdl spec to build 1.1 + +* Sun Dec 19 1999 John Buswell +- Build Release + +* Sat Dec 18 1999 John Buswell +- Add symlink for libSDL-1.0.so.0 required by sdlbomber +- Added docs + +* Thu Dec 09 1999 Lenny Cartier +- v 1.0.0 + +* Mon Nov 1 1999 Chmouel Boudjnah +- First spec file for Mandrake distribution. + +# end of file diff --git a/SDL/SDL2.spec.in b/SDL/SDL2.spec.in new file mode 100644 index 0000000..dba2400 --- /dev/null +++ b/SDL/SDL2.spec.in @@ -0,0 +1,118 @@ +Summary: Simple DirectMedia Layer +Name: SDL2 +Version: @SDL_VERSION@ +Release: 2 +Source: http://www.libsdl.org/release/%{name}-%{version}.tar.gz +URL: http://www.libsdl.org/ +License: zlib +Group: System Environment/Libraries +BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot +Prefix: %{_prefix} +%ifos linux +Provides: libSDL2-2.0.so.0 +%endif + +%define __defattr %defattr(-,root,root) +%define __soext so + +%description +This is the Simple DirectMedia Layer, a generic API that provides low +level access to audio, keyboard, mouse, and display framebuffer across +multiple platforms. + +%package devel +Summary: Libraries, includes and more to develop SDL applications. +Group: Development/Libraries +Requires: %{name} = %{version} + +%description devel +This is the Simple DirectMedia Layer, a generic API that provides low +level access to audio, keyboard, mouse, and display framebuffer across +multiple platforms. + +This is the libraries, include files and other resources you can use +to develop SDL applications. + + +%prep +%setup -q + +%build +%ifos linux +CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --disable-video-directfb +%else +%configure +%endif +make + +%install +rm -rf $RPM_BUILD_ROOT +%ifos linux +make install prefix=$RPM_BUILD_ROOT%{prefix} \ + bindir=$RPM_BUILD_ROOT%{_bindir} \ + libdir=$RPM_BUILD_ROOT%{_libdir} \ + includedir=$RPM_BUILD_ROOT%{_includedir} \ + datadir=$RPM_BUILD_ROOT%{_datadir} \ + mandir=$RPM_BUILD_ROOT%{_mandir} +%else +%makeinstall +%endif + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%{__defattr} +%doc README*.txt COPYING.txt CREDITS.txt BUGS.txt +%{_libdir}/lib*.%{__soext}.* + +%files devel +%{__defattr} +%doc docs/README*.md +%{_bindir}/*-config +%{_libdir}/lib*.a +%{_libdir}/lib*.la +%{_libdir}/lib*.%{__soext} +%{_includedir}/*/*.h +%{_libdir}/pkgconfig/* +%{_datadir}/aclocal/* + +%changelog +* Thu Jun 04 2015 Ryan C. Gordon +- Fixed README paths. + +* Sun Dec 07 2014 Simone Contini +- Fixed changelog date issue and docs filenames + +* Sun Jan 22 2012 Sam Lantinga +- Updated for SDL 2.0 + +* Tue May 16 2006 Sam Lantinga +- Removed support for Darwin, due to build problems on ps2linux + +* Sat Jan 03 2004 Anders Bjorklund +- Added support for Darwin, updated spec file + +* Wed Jan 19 2000 Sam Lantinga +- Re-integrated spec file into SDL distribution +- 'name' and 'version' come from configure +- Some of the documentation is devel specific +- Removed SMP support from %build - it doesn't work with libtool anyway + +* Tue Jan 18 2000 Hakan Tandogan +- Hacked Mandrake sdl spec to build 1.1 + +* Sun Dec 19 1999 John Buswell +- Build Release + +* Sat Dec 18 1999 John Buswell +- Add symlink for libSDL-1.0.so.0 required by sdlbomber +- Added docs + +* Thu Dec 09 1999 Lenny Cartier +- v 1.0.0 + +* Mon Nov 1 1999 Chmouel Boudjnah +- First spec file for Mandrake distribution. + +# end of file diff --git a/SDL/TODO.txt b/SDL/TODO.txt new file mode 100644 index 0000000..89637eb --- /dev/null +++ b/SDL/TODO.txt @@ -0,0 +1,10 @@ +Future work roadmap: + * http://wiki.libsdl.org/moin.cgi/Roadmap + + * Check 1.2 revisions: + 3554 - Need to resolve semantics for locking keys on different platforms + 4874 - Do we want screen rotation? At what level? + 4974 - Windows file code needs to convert UTF-8 to Unicode, but we don't need to tap dance for Windows 95/98 + 4865 - See if this is still needed (mouse coordinate clamping) + 4866 - See if this is still needed (blocking window repositioning) + diff --git a/SDL/VisualC-WinRT/SDL2-WinRT.nuspec b/SDL/VisualC-WinRT/SDL2-WinRT.nuspec new file mode 100644 index 0000000..effc07c --- /dev/null +++ b/SDL/VisualC-WinRT/SDL2-WinRT.nuspec @@ -0,0 +1,23 @@ + + + + SDL2-WinRT + 2.0.4-Unofficial + Sam Lantinga + David Ludwig + http://libsdl.org/license.php + http://libsdl.org + false + Unofficial pre-release of LibSDL2, built for WinRT platforms + Copyright 2015 + SDL2 SDL LibSDL OpenGL C C++ nativepackage + + + + + + + + + + diff --git a/SDL/VisualC-WinRT/SDL2-WinRT.targets b/SDL/VisualC-WinRT/SDL2-WinRT.targets new file mode 100644 index 0000000..f0b9e97 --- /dev/null +++ b/SDL/VisualC-WinRT/SDL2-WinRT.targets @@ -0,0 +1,39 @@ + + + + + WinRT80 + WinRT81 + WinPhone80 + WinPhone81 + UWP + + $(MSBuildThisFileDirectory)..\..\bin\$(LibSDL2-DeviceType)\$(Platform) + + + + + + + + + $(LibSDL2-BinPath);%(AdditionalLibraryDirectories) + SDL2.lib;%(AdditionalDependencies) + + + + + + $(MSBuildThisFileDirectory)..\..\include;%(AdditionalIncludeDirectories) + + + + + + LibSDL2Binaries + $(ProjectName) + %(Filename)%(Extension) + + + + diff --git a/SDL/VisualC-WinRT/SDL2main-WinRT-NonXAML.nuspec b/SDL/VisualC-WinRT/SDL2main-WinRT-NonXAML.nuspec new file mode 100644 index 0000000..4f24fec --- /dev/null +++ b/SDL/VisualC-WinRT/SDL2main-WinRT-NonXAML.nuspec @@ -0,0 +1,22 @@ + + + + SDL2main-WinRT-NonXAML + 2.0.4-Unofficial + Sam Lantinga + David Ludwig + http://libsdl.org/license.php + http://libsdl.org + false + WinMain() function for SDL2 + WinRT + CoreWindow (non-XAML) apps + Copyright 2015 + SDL2 SDL LibSDL OpenGL C C++ nativepackage + + + + + + + + + diff --git a/SDL/VisualC-WinRT/SDL2main-WinRT-NonXAML.targets b/SDL/VisualC-WinRT/SDL2main-WinRT-NonXAML.targets new file mode 100644 index 0000000..53c5e5e --- /dev/null +++ b/SDL/VisualC-WinRT/SDL2main-WinRT-NonXAML.targets @@ -0,0 +1,10 @@ + + + + + + true + + + + diff --git a/SDL/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj b/SDL/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj new file mode 100644 index 0000000..305a3ca --- /dev/null +++ b/SDL/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj @@ -0,0 +1,554 @@ + + + + + Debug + ARM + + + Debug + Win32 + + + Debug + x64 + + + Release + ARM + + + Release + Win32 + + + Release + x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + + {89e9b32e-a86a-47c3-a948-d2b1622925ce} + DynamicLibrary + SDL2-UWP + SDL2 + en-US + 14.0 + true + Windows Store + 8.2 + 10.0.10069.0 + 10.0.10069.0 + 10.0.10240.0 + 10.0.10240.0 + + + + DynamicLibrary + true + v140 + + + DynamicLibrary + true + v140 + + + DynamicLibrary + true + v140 + + + DynamicLibrary + false + true + v140 + + + DynamicLibrary + false + true + v140 + + + DynamicLibrary + false + true + v140 + + + + + + + + + + + + + + + + + + + + + + + + + + + + false + false + SDL2 + + + false + false + SDL2 + + + false + false + SDL2 + + + false + false + SDL2 + + + false + false + SDL2 + + + false + false + SDL2 + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + /nodefaultlib:vccorlibd /nodefaultlib:msvcrtd vccorlibd.lib msvcrtd.lib %(AdditionalOptions) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + /nodefaultlib:vccorlib /nodefaultlib:msvcrt vccorlib.lib msvcrt.lib %(AdditionalOptions) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + /nodefaultlib:vccorlibd /nodefaultlib:msvcrtd vccorlibd.lib msvcrtd.lib %(AdditionalOptions) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + /nodefaultlib:vccorlib /nodefaultlib:msvcrt vccorlib.lib msvcrt.lib %(AdditionalOptions) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + /nodefaultlib:vccorlibd /nodefaultlib:msvcrtd vccorlibd.lib msvcrtd.lib %(AdditionalOptions) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + /nodefaultlib:vccorlib /nodefaultlib:msvcrt vccorlib.lib msvcrt.lib %(AdditionalOptions) + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj.filters b/SDL/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj.filters new file mode 100644 index 0000000..b8c6d71 --- /dev/null +++ b/SDL/VisualC-WinRT/UWP_VS2015/SDL-UWP.vcxproj.filters @@ -0,0 +1,720 @@ + + + + + {fa0ff2df-c3d6-498a-96f1-1f88e7ce0da3} + + + {68e1b30b-19ed-4612-93e4-6260c5a979e5} + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + + Source Files + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + + Source Files + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj b/SDL/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj new file mode 100644 index 0000000..3776d24 --- /dev/null +++ b/SDL/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj @@ -0,0 +1,452 @@ + + + + + Debug + Win32 + + + Debug + ARM + + + Release + Win32 + + + Release + ARM + + + + {33048af1-031a-4ce6-b61e-fad2db832e9e} + SDL + en-US + 11.0 + SDL2-WinPhone80 + + + + DynamicLibrary + true + v110_wp80 + false + + + DynamicLibrary + true + v110_wp80 + false + + + DynamicLibrary + false + true + v110_wp80 + false + + + DynamicLibrary + false + true + v110_wp80 + false + + + + + + + + false + + + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + + _USRDLL;UNICODE;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + NotUsing + pch.h + false + $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) + ..\..\include + false + + + Console + false + false + true + DXGI.lib;d3d11.lib;xaudio2.lib;WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies) + + + + + _USRDLL;UNICODE;SDL_BUILDING_WINRT=1;NDEBUG;%(PreprocessorDefinitions) + NotUsing + pch.h + false + $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) + ..\..\include + + + Console + false + false + true + DXGI.lib;d3d11.lib;xaudio2.lib;WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies) + + + + + _USRDLL;UNICODE;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + NotUsing + pch.h + false + $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) + ..\..\include + false + + + Console + false + false + true + DXGI.lib;d3d11.lib;xaudio2.lib;WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies) + + + + + _USRDLL;UNICODE;SDL_BUILDING_WINRT=1;NDEBUG;%(PreprocessorDefinitions) + NotUsing + pch.h + false + $(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories) + ..\..\include + + + Console + false + false + true + DXGI.lib;d3d11.lib;xaudio2.lib;WindowsPhoneCore.lib;RuntimeObject.lib;PhoneAppModelHost.lib;%(AdditionalDependencies) + + + + + true + + + true + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + + + + + + + + + + + + true + true + true + true + + + + + + + + + + + + + + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj.filters b/SDL/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj.filters new file mode 100644 index 0000000..1f4df44 --- /dev/null +++ b/SDL/VisualC-WinRT/WinPhone80_VS2012/SDL-WinPhone80.vcxproj.filters @@ -0,0 +1,678 @@ + + + + + {02b21b9a-45a7-41ee-a8a6-e45d14aa28da} + + + {abc3a7e6-f955-4cb5-8340-fae0f653e9c1} + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj b/SDL/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj new file mode 100644 index 0000000..573bc42 --- /dev/null +++ b/SDL/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj @@ -0,0 +1,446 @@ + + + + + Debug + ARM + + + Debug + Win32 + + + Release + ARM + + + Release + Win32 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + + + + + + + + + + + + true + true + true + true + + + + + + + + + + + + + + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + true + true + true + true + + + + {48fadc0e-964d-4dab-bced-372e0ad19577} + SDL_WinRT81 + en-US + 12.0 + true + Windows Phone + 8.1 + CodeSharingDll + SDL2-WinPhone81 + + + + DynamicLibrary + true + v120_wp81 + + + DynamicLibrary + true + v120_wp81 + + + DynamicLibrary + false + true + v120_wp81 + + + DynamicLibrary + false + true + v120_wp81 + + + + + + + + + + + + + + + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + DXGI.lib;d3d11.lib;xaudio2.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + DXGI.lib;d3d11.lib;xaudio2.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + DXGI.lib;d3d11.lib;xaudio2.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + DXGI.lib;d3d11.lib;xaudio2.lib;%(AdditionalDependencies) + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj.filters b/SDL/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj.filters new file mode 100644 index 0000000..907e1bf --- /dev/null +++ b/SDL/VisualC-WinRT/WinPhone81_VS2013/SDL-WinPhone81.vcxproj.filters @@ -0,0 +1,690 @@ + + + + + {d54aa32d-ba0b-491f-ac04-c9b87dd4bc69} + + + {6945cfdb-2dd6-4f78-bbcb-f899c2a86e4a} + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.sln b/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.sln new file mode 100644 index 0000000..dc3a6dd --- /dev/null +++ b/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.sln @@ -0,0 +1,32 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL-WinRT", "SDL-WinRT80.vcxproj", "{AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM = Debug|ARM + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|ARM = Release|ARM + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Debug|ARM.ActiveCfg = Debug|ARM + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Debug|ARM.Build.0 = Debug|ARM + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Debug|Win32.ActiveCfg = Debug|Win32 + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Debug|Win32.Build.0 = Debug|Win32 + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Debug|x64.ActiveCfg = Debug|x64 + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Debug|x64.Build.0 = Debug|x64 + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Release|ARM.ActiveCfg = Release|ARM + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Release|ARM.Build.0 = Release|ARM + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Release|Win32.ActiveCfg = Release|Win32 + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Release|Win32.Build.0 = Release|Win32 + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Release|x64.ActiveCfg = Release|x64 + {AEAEA3A2-D4E6-45B1-8EC6-53D84287FC14}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj b/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj new file mode 100644 index 0000000..fbcd94b --- /dev/null +++ b/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj @@ -0,0 +1,548 @@ + + + + + Debug + ARM + + + Debug + Win32 + + + Debug + x64 + + + Release + ARM + + + Release + Win32 + + + Release + x64 + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {aeaea3a2-d4e6-45b1-8ec6-53d84287fc14} + Win32Proj + SDL2-WinRT80 + SDL_VS2012_WinRT + en-US + 11.0 + true + + + + DynamicLibrary + true + v110 + + + DynamicLibrary + true + v110 + + + DynamicLibrary + true + v110 + + + DynamicLibrary + false + true + v110 + + + DynamicLibrary + false + true + v110 + + + DynamicLibrary + false + true + v110 + + + + + + + + + + + + + + + + + + + + + + + + false + false + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + false + false + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + false + false + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + false + false + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + false + false + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + false + false + SDL2 + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj.filters b/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj.filters new file mode 100644 index 0000000..aa539d3 --- /dev/null +++ b/SDL/VisualC-WinRT/WinRT80_VS2012/SDL-WinRT80.vcxproj.filters @@ -0,0 +1,726 @@ + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Header Files + + + Source Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Header Files + + + Source Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + {20773b57-7034-4c24-af5a-334844585f1b} + + + {ddf04d85-6a87-4c5a-bc52-869b38f45a61} + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj b/SDL/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj new file mode 100644 index 0000000..a56516e --- /dev/null +++ b/SDL/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj @@ -0,0 +1,549 @@ + + + + + Debug + ARM + + + Debug + Win32 + + + Debug + x64 + + + Release + ARM + + + Release + Win32 + + + Release + x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + true + true + true + true + true + true + + + + {c8df6173-06a1-4f56-a9bc-2002596b30e9} + SDL_WinRT81 + en-US + 12.0 + true + Windows Store + 8.1 + CodeSharingDll + SDL2-WinRT81 + + + + DynamicLibrary + true + v120 + + + DynamicLibrary + true + v120 + + + DynamicLibrary + true + v120 + + + DynamicLibrary + false + true + v120 + + + DynamicLibrary + false + true + v120 + + + DynamicLibrary + false + true + v120 + + + + + + + + + + + + + + + + + + + + + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + false + false + Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\ + SDL2 + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + NotUsing + false + ..\..\include;%(AdditionalIncludeDirectories) + _WINDLL;_CRT_SECURE_NO_WARNINGS;SDL_BUILDING_WINRT=1;%(PreprocessorDefinitions) + + + Console + false + false + xinput.lib;xaudio2.lib;d2d1.lib;d3d11.lib;dxgi.lib;ole32.lib;windowscodecs.lib;dwrite.lib;kernel32.lib;%(AdditionalDependencies) + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj.filters b/SDL/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj.filters new file mode 100644 index 0000000..a36811d --- /dev/null +++ b/SDL/VisualC-WinRT/WinRT81_VS2013/SDL-WinRT81.vcxproj.filters @@ -0,0 +1,714 @@ + + + + + {7c1f964c-e351-49dd-8651-5d5b6b603856} + + + {450d92fd-978d-4025-87a9-6f688f946427} + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + + Source Files + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/tests/loopwave/Assets/Logo.png b/SDL/VisualC-WinRT/tests/loopwave/Assets/Logo.png new file mode 100644 index 0000000..e26771c Binary files /dev/null and b/SDL/VisualC-WinRT/tests/loopwave/Assets/Logo.png differ diff --git a/SDL/VisualC-WinRT/tests/loopwave/Assets/SmallLogo.png b/SDL/VisualC-WinRT/tests/loopwave/Assets/SmallLogo.png new file mode 100644 index 0000000..1eb0d9d Binary files /dev/null and b/SDL/VisualC-WinRT/tests/loopwave/Assets/SmallLogo.png differ diff --git a/SDL/VisualC-WinRT/tests/loopwave/Assets/SplashScreen.png b/SDL/VisualC-WinRT/tests/loopwave/Assets/SplashScreen.png new file mode 100644 index 0000000..c951e03 Binary files /dev/null and b/SDL/VisualC-WinRT/tests/loopwave/Assets/SplashScreen.png differ diff --git a/SDL/VisualC-WinRT/tests/loopwave/Assets/StoreLogo.png b/SDL/VisualC-WinRT/tests/loopwave/Assets/StoreLogo.png new file mode 100644 index 0000000..dcb6727 Binary files /dev/null and b/SDL/VisualC-WinRT/tests/loopwave/Assets/StoreLogo.png differ diff --git a/SDL/VisualC-WinRT/tests/loopwave/Package.appxmanifest b/SDL/VisualC-WinRT/tests/loopwave/Package.appxmanifest new file mode 100644 index 0000000..3b62bf1 --- /dev/null +++ b/SDL/VisualC-WinRT/tests/loopwave/Package.appxmanifest @@ -0,0 +1,42 @@ + + + + + + + loopwave_VS2012_WinRT + David + Assets\StoreLogo.png + + + + 6.2.1 + 6.2.1 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/tests/loopwave/loopwave_VS2012.vcxproj b/SDL/VisualC-WinRT/tests/loopwave/loopwave_VS2012.vcxproj new file mode 100644 index 0000000..44c3281 --- /dev/null +++ b/SDL/VisualC-WinRT/tests/loopwave/loopwave_VS2012.vcxproj @@ -0,0 +1,170 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + Debug + ARM + + + Release + ARM + + + + {03fcc293-9406-49c2-acf6-6e7d460c3239} + loopwave_VS2012 + en-US + 11.0 + true + loopwave + + + + Application + true + v110 + + + Application + true + v110 + + + Application + true + v110 + + + Application + false + true + v110 + + + Application + false + true + v110 + + + Application + false + true + v110 + + + + + + + + + + + + + + + + + + + + + + + + + loopwave_VS2012_TemporaryKey.pfx + + + + d2d1.lib; d3d11.lib; dxgi.lib; ole32.lib; windowscodecs.lib; dwrite.lib; %(AdditionalDependencies) + + + pch.h + $(IntDir)pch.pch + $(ProjectDir);$(IntermediateOutputPath);$(ProjectDir)..\..\..\include;%(AdditionalIncludeDirectories) + 4453 + + + + + NDEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + NotUsing + NotUsing + NotUsing + false + false + false + + + + + _DEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + NotUsing + NotUsing + NotUsing + false + false + false + + + + + + + + + + + Designer + + + + + + true + true + true + true + true + true + + + false + false + false + false + false + false + + + + + + + + {aeaea3a2-d4e6-45b1-8ec6-53d84287fc14} + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/tests/loopwave/loopwave_VS2012_TemporaryKey.pfx b/SDL/VisualC-WinRT/tests/loopwave/loopwave_VS2012_TemporaryKey.pfx new file mode 100644 index 0000000..3c07b77 Binary files /dev/null and b/SDL/VisualC-WinRT/tests/loopwave/loopwave_VS2012_TemporaryKey.pfx differ diff --git a/SDL/VisualC-WinRT/tests/testthread/Assets/Logo.png b/SDL/VisualC-WinRT/tests/testthread/Assets/Logo.png new file mode 100644 index 0000000..e26771c Binary files /dev/null and b/SDL/VisualC-WinRT/tests/testthread/Assets/Logo.png differ diff --git a/SDL/VisualC-WinRT/tests/testthread/Assets/SmallLogo.png b/SDL/VisualC-WinRT/tests/testthread/Assets/SmallLogo.png new file mode 100644 index 0000000..1eb0d9d Binary files /dev/null and b/SDL/VisualC-WinRT/tests/testthread/Assets/SmallLogo.png differ diff --git a/SDL/VisualC-WinRT/tests/testthread/Assets/SplashScreen.png b/SDL/VisualC-WinRT/tests/testthread/Assets/SplashScreen.png new file mode 100644 index 0000000..c951e03 Binary files /dev/null and b/SDL/VisualC-WinRT/tests/testthread/Assets/SplashScreen.png differ diff --git a/SDL/VisualC-WinRT/tests/testthread/Assets/StoreLogo.png b/SDL/VisualC-WinRT/tests/testthread/Assets/StoreLogo.png new file mode 100644 index 0000000..dcb6727 Binary files /dev/null and b/SDL/VisualC-WinRT/tests/testthread/Assets/StoreLogo.png differ diff --git a/SDL/VisualC-WinRT/tests/testthread/Package.appxmanifest b/SDL/VisualC-WinRT/tests/testthread/Package.appxmanifest new file mode 100644 index 0000000..f02b3a1 --- /dev/null +++ b/SDL/VisualC-WinRT/tests/testthread/Package.appxmanifest @@ -0,0 +1,42 @@ + + + + + + + testthread_VS2012_WinRT + David + Assets\StoreLogo.png + + + + 6.2.1 + 6.2.1 + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/tests/testthread/testthread_VS2012.vcxproj b/SDL/VisualC-WinRT/tests/testthread/testthread_VS2012.vcxproj new file mode 100644 index 0000000..ba1dbc0 --- /dev/null +++ b/SDL/VisualC-WinRT/tests/testthread/testthread_VS2012.vcxproj @@ -0,0 +1,160 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + Debug + ARM + + + Release + ARM + + + + {a8705bee-d01d-46a4-b2ab-feedfb5fdd11} + testthread_VS2012 + en-US + 11.0 + true + testthread + + + + Application + true + v110 + + + Application + true + v110 + + + Application + true + v110 + + + Application + false + true + v110 + + + Application + false + true + v110 + + + Application + false + true + v110 + + + + + + + + + + + + + + + + + + + + + + + + + testthread_VS2012_TemporaryKey.pfx + + + + d2d1.lib; d3d11.lib; dxgi.lib; ole32.lib; windowscodecs.lib; dwrite.lib; %(AdditionalDependencies) + + + pch.h + $(IntDir)pch.pch + $(ProjectDir);$(IntermediateOutputPath);$(ProjectDir)..\..\..\include;%(AdditionalIncludeDirectories) + 4453 + + + + + NDEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + NotUsing + NotUsing + NotUsing + false + false + false + + + + + _DEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + NotUsing + NotUsing + NotUsing + false + false + false + + + + + + + + + + + Designer + + + + + + true + true + true + true + true + true + + + + + + {aeaea3a2-d4e6-45b1-8ec6-53d84287fc14} + + + + + + \ No newline at end of file diff --git a/SDL/VisualC-WinRT/tests/testthread/testthread_VS2012_TemporaryKey.pfx b/SDL/VisualC-WinRT/tests/testthread/testthread_VS2012_TemporaryKey.pfx new file mode 100644 index 0000000..97fd1e1 Binary files /dev/null and b/SDL/VisualC-WinRT/tests/testthread/testthread_VS2012_TemporaryKey.pfx differ diff --git a/SDL/VisualC.html b/SDL/VisualC.html new file mode 100644 index 0000000..0631832 --- /dev/null +++ b/SDL/VisualC.html @@ -0,0 +1,146 @@ + + + Using SDL with Microsoft Visual C++ + + +

+ Using SDL with Microsoft Visual C++ +

+

+ by Lion Kimbro and additions by + James Turk +

+

+ You can either use the precompiled libraries from the SDL Download web site , or you can build SDL yourself. +

+

+ Building SDL +

+

+ Go into the VisualC directory and double-click on the Visual Studio solution for your version of Visual Studio, e.g. SDL_VS2008.sln This should open up the IDE. +

+

+ There are different solution files for the various + versions of the IDE. Please use the appropriate version + 2008, 2010, 2012 or 2013. +

+

+ Build the .dll and .lib files. +

+

+ This is done by right clicking on each project in turn (Projects are listed in + the Workspace panel in the FileView tab), and selecting "Build". +

+

+ You may get a few warnings, but you should not get any errors. You do have to + have at least the DirectX 9 SDK installed, however. The latest + version of DirectX can be downloaded from Microsoft. +

+

+ Later, we will refer to the following .lib and .dll files that have just been + generated: +

+
    +
  • SDL2.dll
  • +
  • SDL2.lib
  • +
  • SDL2main.lib
  • +
+

+ Search for these using the Windows Find (Windows-F) utility inside the VisualC directory. +

+

+ Creating a Project with SDL +

+

+ Create a project as a Win32 Application. +

+

+ Create a C++ file for your project. +

+

+ Set the C runtime to "Multi-threaded DLL" in the menu: Project|Settings|C/C++ + tab|Code Generation|Runtime Library . +

+

+ Add the SDL include directory to your list of includes in the + menu: Project|Settings|C/C++ tab|Preprocessor|Additional include directories + . +
+ VC7 Specific: Instead of doing this I find it easier to + add the include and library directories to the list that VC7 keeps. Do this by + selecting Tools|Options|Projects|VC++ Directories and under the "Show + Directories For:" dropbox select "Include Files", and click the "New Directory + Icon" and add the [SDLROOT]\include directory (e.g. If you installed to + c:\SDL\ add c:\SDL\include). Proceed to change the + dropbox selection to "Library Files" and add [SDLROOT]\lib. +

+

+ The "include directory" I am referring to is the include folder + within the main SDL directory (the one that this HTML file located within). +

+

+ Now we're going to use the files that we had created earlier in the Build SDL + step. +

+

+ Copy the following files into your Project directory: +

+
    +
  • SDL2.dll
  • +
+

+ Add the following files to your project (It is not necessary to copy them to + your project directory): +

+
    +
  • SDL2.lib
  • +
  • SDL2main.lib
  • +
+

+ (To add them to your project, right click on your project, and select "Add + files to project") +

+

Instead of adding the files to your project it is more + desirable to add them to the linker options: Project|Properties|Linker|Command + Line and type the names of the libraries to link with in the "Additional + Options:" box.  Note: This must be done for each build + configuration (e.g. Release,Debug).

+

+ SDL 101, First Day of Class +

+

+ Now create the basic body of your project. The body of your program should take + the following form: +


+#include "SDL.h"
+
+int main( int argc, char* argv[] )
+{
+  // Body of the program goes here.
+  return 0;
+}
+			
+

+

+ That's it! +

+

+ I hope that this document has helped you get through the most difficult part of + using the SDL: installing it. Suggestions for improvements to this document + should be sent to the writers of this document. +

+

+ Thanks to Paulus Esterhazy (pesterhazy@gmx.net), for the work on VC++ port. +

+

+ This document was originally called "VisualC.txt", and was written by + Sam Lantinga. +

+

+ Later, it was converted to HTML and expanded into the document that you see + today by Lion Kimbro. +

+

Minor Fixes and Visual C++ 7 Information (In Green) was added by James Turk +

+ + diff --git a/SDL/VisualC/SDL.sln b/SDL/VisualC/SDL.sln new file mode 100644 index 0000000..5fc8345 --- /dev/null +++ b/SDL/VisualC/SDL.sln @@ -0,0 +1,269 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{D69D5741-611F-4E14-8541-1FEE94F50B5A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2", "SDL\SDL.vcxproj", "{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2main", "SDLmain\SDLmain.vcxproj", "{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "checkkeys", "tests\checkkeys\checkkeys.vcxproj", "{26828762-C95D-4637-9CB1-7F0979523813}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "loopwave", "tests\loopwave\loopwave.vcxproj", "{AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testatomic", "tests\testatomic\testatomic.vcxproj", "{66B32F7E-5716-48D0-B5B9-D832FD052DD5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testautomation", "tests\testautomation\testautomation.vcxproj", "{9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testdraw2", "tests\testdraw2\testdraw2.vcxproj", "{8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testfile", "tests\testfile\testfile.vcxproj", "{CAE4F1D0-314F-4B10-805B-0EFD670133A0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgesture", "tests\testgesture\testgesture.vcxproj", "{79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgl2", "tests\testgl2\testgl2.vcxproj", "{8B5CFB38-CCBA-40A8-AD7A-89C57B070884}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testjoystick", "tests\testjoystick\testjoystick.vcxproj", "{55812185-D13C-4022-9C81-32E0F4A08304}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testoverlay2", "tests\testoverlay2\testoverlay2.vcxproj", "{B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testplatform", "tests\testplatform\testplatform.vcxproj", "{26932B24-EFC6-4E3A-B277-ED653DA37968}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testpower", "tests\testpower\testpower.vcxproj", "{C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testrendertarget", "tests\testrendertarget\testrendertarget.vcxproj", "{2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testrumble", "tests\testrumble\testrumble.vcxproj", "{BFF40245-E9A6-4297-A425-A554E5D767E8}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testscale", "tests\testscale\testscale.vcxproj", "{5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testshape", "tests\testshape\testshape.vcxproj", "{31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testsprite2", "tests\testsprite2\testsprite2.vcxproj", "{40FB7794-D3C3-4CFE-BCF4-A80C96635682}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2test", "SDLtest\SDLtest.vcxproj", "{DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgamecontroller", "tests\testgamecontroller\testgamecontroller.vcxproj", "{55812185-D13C-4022-9C81-32E0F4A08305}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgles2", "tests\testgles2\testgles2.vcxproj", "{E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "controllermap", "tests\controllermap\controllermap.vcxproj", "{55812185-D13C-4022-9C81-32E0F4A08306}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.ActiveCfg = Debug|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.Build.0 = Debug|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.ActiveCfg = Debug|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.Build.0 = Debug|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.ActiveCfg = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.Build.0 = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.ActiveCfg = Release|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.Build.0 = Release|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.ActiveCfg = Debug|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.Build.0 = Debug|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.ActiveCfg = Debug|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.Build.0 = Debug|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.ActiveCfg = Release|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.Build.0 = Release|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.ActiveCfg = Release|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.Build.0 = Release|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.ActiveCfg = Debug|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.Build.0 = Debug|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|x64.ActiveCfg = Debug|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|x64.Build.0 = Debug|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.ActiveCfg = Release|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.Build.0 = Release|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|x64.ActiveCfg = Release|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|x64.Build.0 = Release|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.ActiveCfg = Debug|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.Build.0 = Debug|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|x64.ActiveCfg = Debug|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|x64.Build.0 = Debug|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.ActiveCfg = Release|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.Build.0 = Release|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|x64.ActiveCfg = Release|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|x64.Build.0 = Release|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|Win32.ActiveCfg = Debug|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|Win32.Build.0 = Debug|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|x64.ActiveCfg = Debug|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|x64.Build.0 = Debug|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|Win32.ActiveCfg = Release|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|Win32.Build.0 = Release|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|x64.ActiveCfg = Release|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|x64.Build.0 = Release|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|Win32.ActiveCfg = Debug|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|Win32.Build.0 = Debug|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|x64.ActiveCfg = Debug|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|x64.Build.0 = Debug|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|Win32.ActiveCfg = Release|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|Win32.Build.0 = Release|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|x64.ActiveCfg = Release|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|x64.Build.0 = Release|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.Build.0 = Debug|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|x64.ActiveCfg = Debug|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|x64.Build.0 = Debug|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.ActiveCfg = Release|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.Build.0 = Release|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|x64.ActiveCfg = Release|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|x64.Build.0 = Release|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.ActiveCfg = Debug|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.Build.0 = Debug|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|x64.ActiveCfg = Debug|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|x64.Build.0 = Debug|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.ActiveCfg = Release|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.Build.0 = Release|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|x64.ActiveCfg = Release|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|x64.Build.0 = Release|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|Win32.ActiveCfg = Debug|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|Win32.Build.0 = Debug|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|x64.ActiveCfg = Debug|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|x64.Build.0 = Debug|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|Win32.ActiveCfg = Release|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|Win32.Build.0 = Release|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|x64.ActiveCfg = Release|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|x64.Build.0 = Release|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.ActiveCfg = Debug|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.Build.0 = Debug|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|x64.ActiveCfg = Debug|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|x64.Build.0 = Debug|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.ActiveCfg = Release|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.Build.0 = Release|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|x64.ActiveCfg = Release|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|x64.Build.0 = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.ActiveCfg = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.Build.0 = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|x64.ActiveCfg = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|x64.Build.0 = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.ActiveCfg = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.Build.0 = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|x64.ActiveCfg = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|x64.Build.0 = Release|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.ActiveCfg = Debug|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.Build.0 = Debug|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|x64.ActiveCfg = Debug|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|x64.Build.0 = Debug|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.ActiveCfg = Release|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.Build.0 = Release|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|x64.ActiveCfg = Release|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|x64.Build.0 = Release|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.ActiveCfg = Debug|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.Build.0 = Debug|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|x64.ActiveCfg = Debug|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|x64.Build.0 = Debug|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.ActiveCfg = Release|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.Build.0 = Release|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|x64.ActiveCfg = Release|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|x64.Build.0 = Release|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.ActiveCfg = Debug|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.Build.0 = Debug|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|x64.ActiveCfg = Debug|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|x64.Build.0 = Debug|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.ActiveCfg = Release|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.Build.0 = Release|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|x64.ActiveCfg = Release|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|x64.Build.0 = Release|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|Win32.ActiveCfg = Debug|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|Win32.Build.0 = Debug|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|x64.ActiveCfg = Debug|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|x64.Build.0 = Debug|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|Win32.ActiveCfg = Release|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|Win32.Build.0 = Release|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|x64.ActiveCfg = Release|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|x64.Build.0 = Release|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|Win32.ActiveCfg = Debug|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|Win32.Build.0 = Debug|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|x64.ActiveCfg = Debug|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|x64.Build.0 = Debug|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|Win32.ActiveCfg = Release|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|Win32.Build.0 = Release|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|x64.ActiveCfg = Release|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|x64.Build.0 = Release|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|Win32.ActiveCfg = Debug|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|Win32.Build.0 = Debug|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|x64.ActiveCfg = Debug|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|x64.Build.0 = Debug|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|Win32.ActiveCfg = Release|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|Win32.Build.0 = Release|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|x64.ActiveCfg = Release|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|x64.Build.0 = Release|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|Win32.ActiveCfg = Debug|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|Win32.Build.0 = Debug|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|x64.ActiveCfg = Debug|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|x64.Build.0 = Debug|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|Win32.ActiveCfg = Release|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|Win32.Build.0 = Release|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|x64.ActiveCfg = Release|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|x64.Build.0 = Release|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.ActiveCfg = Debug|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.Build.0 = Debug|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|x64.ActiveCfg = Debug|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|x64.Build.0 = Debug|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.ActiveCfg = Release|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.Build.0 = Release|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|x64.ActiveCfg = Release|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|x64.Build.0 = Release|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|Win32.ActiveCfg = Debug|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|Win32.Build.0 = Debug|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|x64.ActiveCfg = Debug|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|x64.Build.0 = Debug|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|Win32.ActiveCfg = Release|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|Win32.Build.0 = Release|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|x64.ActiveCfg = Release|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|x64.Build.0 = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|Win32.ActiveCfg = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|Win32.Build.0 = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|x64.ActiveCfg = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|x64.Build.0 = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|Win32.ActiveCfg = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|Win32.Build.0 = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|x64.ActiveCfg = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|x64.Build.0 = Release|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|Win32.Build.0 = Debug|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|x64.ActiveCfg = Debug|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|x64.Build.0 = Debug|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|Win32.ActiveCfg = Release|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|Win32.Build.0 = Release|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|x64.ActiveCfg = Release|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|x64.Build.0 = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|Win32.ActiveCfg = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|Win32.Build.0 = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|x64.ActiveCfg = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|x64.Build.0 = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|Win32.ActiveCfg = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|Win32.Build.0 = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|x64.ActiveCfg = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {26828762-C95D-4637-9CB1-7F0979523813} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {66B32F7E-5716-48D0-B5B9-D832FD052DD5} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {CAE4F1D0-314F-4B10-805B-0EFD670133A0} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {55812185-D13C-4022-9C81-32E0F4A08304} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {26932B24-EFC6-4E3A-B277-ED653DA37968} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {BFF40245-E9A6-4297-A425-A554E5D767E8} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {40FB7794-D3C3-4CFE-BCF4-A80C96635682} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {55812185-D13C-4022-9C81-32E0F4A08305} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {55812185-D13C-4022-9C81-32E0F4A08306} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + EndGlobalSection +EndGlobal diff --git a/SDL/VisualC/SDL/SDL.vcxproj b/SDL/VisualC/SDL/SDL.vcxproj new file mode 100644 index 0000000..595e2d4 --- /dev/null +++ b/SDL/VisualC/SDL/SDL.vcxproj @@ -0,0 +1,511 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + SDL2 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68} + SDL + + + + DynamicLibrary + + + DynamicLibrary + + + DynamicLibrary + + + DynamicLibrary + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/SDL.tlb + + + Disabled + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + _DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + OnlyExplicitInline + + + _DEBUG;%(PreprocessorDefinitions) + + + winmm.lib;imm32.lib;version.lib;%(AdditionalDependencies) + true + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/SDL.tlb + + + Disabled + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + _DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + OnlyExplicitInline + + + _DEBUG;%(PreprocessorDefinitions) + + + winmm.lib;imm32.lib;version.lib;%(AdditionalDependencies) + true + true + Windows + + + + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/SDL.tlb + + + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + ProgramDatabase + true + OnlyExplicitInline + + + NDEBUG;%(PreprocessorDefinitions) + + + winmm.lib;imm32.lib;version.lib;%(AdditionalDependencies) + true + true + Windows + true + true + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/SDL.tlb + + + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + ProgramDatabase + true + OnlyExplicitInline + + + NDEBUG;%(PreprocessorDefinitions) + + + winmm.lib;imm32.lib;version.lib;%(AdditionalDependencies) + true + true + Windows + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/SDL/SDL.vcxproj.filters b/SDL/VisualC/SDL/SDL.vcxproj.filters new file mode 100644 index 0000000..a2ba2cb --- /dev/null +++ b/SDL/VisualC/SDL/SDL.vcxproj.filters @@ -0,0 +1,444 @@ + + + + + {395b3af0-33d0-411b-b153-de1676bf1ef8} + + + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + API Headers + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/SDL/SDL_VS2008.vcproj b/SDL/VisualC/SDL/SDL_VS2008.vcproj new file mode 100644 index 0000000..3d3d399 --- /dev/null +++ b/SDL/VisualC/SDL/SDL_VS2008.vcproj @@ -0,0 +1,1509 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/SDL_VS2008.sln b/SDL/VisualC/SDL_VS2008.sln new file mode 100644 index 0000000..5398bfb --- /dev/null +++ b/SDL/VisualC/SDL_VS2008.sln @@ -0,0 +1,269 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2", "SDL\SDL_VS2008.vcproj", "{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2main", "SDLmain\SDLmain_VS2008.vcproj", "{DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "checkkeys", "tests\checkkeys\checkkeys_VS2008.vcproj", "{26828762-C95D-4637-9CB1-7F0979523813}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "loopwave", "tests\loopwave\loopwave_VS2008.vcproj", "{AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testatomic", "tests\testatomic\testatomic_VS2008.vcproj", "{66B32F7E-5716-48D0-B5B9-D832FD052DD5}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testautomation", "tests\testautomation\testautomation_VS2008.vcproj", "{9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testdraw2", "tests\testdraw2\testdraw2_VS2008.vcproj", "{8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testfile", "tests\testfile\testfile_VS2008.vcproj", "{CAE4F1D0-314F-4B10-805B-0EFD670133A0}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgesture", "tests\testgesture\testgesture_VS2008.vcproj", "{79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgl2", "tests\testgl2\testgl2_VS2008.vcproj", "{8B5CFB38-CCBA-40A8-AD7A-89C57B070884}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testjoystick", "tests\testjoystick\testjoystick_VS2008.vcproj", "{55812185-D13C-4022-9C81-32E0F4A08304}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testoverlay2", "tests\testoverlay2\testoverlay2_VS2008.vcproj", "{B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testplatform", "tests\testplatform\testplatform_VS2008.vcproj", "{26932B24-EFC6-4E3A-B277-ED653DA37968}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testpower", "tests\testpower\testpower_VS2008.vcproj", "{C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testrendertarget", "tests\testrendertarget\testrendertarget_VS2008.vcproj", "{2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testrumble", "tests\testrumble\testrumble_VS2008.vcproj", "{BFF40245-E9A6-4297-A425-A554E5D767E8}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testscale", "tests\testscale\testscale_VS2008.vcproj", "{5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testshape", "tests\testshape\testshape_VS2008.vcproj", "{31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testsprite2", "tests\testsprite2\testsprite2_VS2008.vcproj", "{40FB7794-D3C3-4CFE-BCF4-A80C96635682}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2test", "SDLtest\SDLtest_VS2008.vcproj", "{DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgamecontroller", "tests\testgamecontroller\testgamecontroller_VS2008.vcproj", "{55812185-D13C-4022-9C81-32E0F4A08305}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testgles2", "tests\testgles2\testgles2_VS2008.vcproj", "{E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "controllermap", "tests\controllermap\controllermap_VS2008.vcproj", "{55812185-D13C-4022-9C81-32E0F4A08306}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{D69D5741-611F-4E14-8541-1FEE94F50B5A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.ActiveCfg = Debug|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|Win32.Build.0 = Debug|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.ActiveCfg = Debug|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Debug|x64.Build.0 = Debug|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.ActiveCfg = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|Win32.Build.0 = Release|Win32 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.ActiveCfg = Release|x64 + {81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}.Release|x64.Build.0 = Release|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.ActiveCfg = Debug|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|Win32.Build.0 = Debug|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.ActiveCfg = Debug|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Debug|x64.Build.0 = Debug|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.ActiveCfg = Release|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|Win32.Build.0 = Release|Win32 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.ActiveCfg = Release|x64 + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A}.Release|x64.Build.0 = Release|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.ActiveCfg = Debug|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|Win32.Build.0 = Debug|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|x64.ActiveCfg = Debug|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Debug|x64.Build.0 = Debug|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.ActiveCfg = Release|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|Win32.Build.0 = Release|Win32 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|x64.ActiveCfg = Release|x64 + {26828762-C95D-4637-9CB1-7F0979523813}.Release|x64.Build.0 = Release|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.ActiveCfg = Debug|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|Win32.Build.0 = Debug|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|x64.ActiveCfg = Debug|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Debug|x64.Build.0 = Debug|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.ActiveCfg = Release|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|Win32.Build.0 = Release|Win32 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|x64.ActiveCfg = Release|x64 + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB}.Release|x64.Build.0 = Release|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|Win32.ActiveCfg = Debug|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|Win32.Build.0 = Debug|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|x64.ActiveCfg = Debug|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Debug|x64.Build.0 = Debug|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|Win32.ActiveCfg = Release|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|Win32.Build.0 = Release|Win32 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|x64.ActiveCfg = Release|x64 + {66B32F7E-5716-48D0-B5B9-D832FD052DD5}.Release|x64.Build.0 = Release|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|Win32.ActiveCfg = Debug|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|Win32.Build.0 = Debug|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|x64.ActiveCfg = Debug|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Debug|x64.Build.0 = Debug|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|Win32.ActiveCfg = Release|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|Win32.Build.0 = Release|Win32 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|x64.ActiveCfg = Release|x64 + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA}.Release|x64.Build.0 = Release|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.ActiveCfg = Debug|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|Win32.Build.0 = Debug|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|x64.ActiveCfg = Debug|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Debug|x64.Build.0 = Debug|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.ActiveCfg = Release|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|Win32.Build.0 = Release|Win32 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|x64.ActiveCfg = Release|x64 + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF}.Release|x64.Build.0 = Release|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.ActiveCfg = Debug|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|Win32.Build.0 = Debug|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|x64.ActiveCfg = Debug|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Debug|x64.Build.0 = Debug|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.ActiveCfg = Release|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|Win32.Build.0 = Release|Win32 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|x64.ActiveCfg = Release|x64 + {CAE4F1D0-314F-4B10-805B-0EFD670133A0}.Release|x64.Build.0 = Release|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|Win32.ActiveCfg = Debug|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|Win32.Build.0 = Debug|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|x64.ActiveCfg = Debug|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Debug|x64.Build.0 = Debug|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|Win32.ActiveCfg = Release|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|Win32.Build.0 = Release|Win32 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|x64.ActiveCfg = Release|x64 + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF}.Release|x64.Build.0 = Release|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.ActiveCfg = Debug|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|Win32.Build.0 = Debug|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|x64.ActiveCfg = Debug|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Debug|x64.Build.0 = Debug|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.ActiveCfg = Release|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|Win32.Build.0 = Release|Win32 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|x64.ActiveCfg = Release|x64 + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884}.Release|x64.Build.0 = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.ActiveCfg = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|Win32.Build.0 = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|x64.ActiveCfg = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Debug|x64.Build.0 = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.ActiveCfg = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|Win32.Build.0 = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|x64.ActiveCfg = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08304}.Release|x64.Build.0 = Release|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.ActiveCfg = Debug|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|Win32.Build.0 = Debug|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|x64.ActiveCfg = Debug|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Debug|x64.Build.0 = Debug|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.ActiveCfg = Release|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|Win32.Build.0 = Release|Win32 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|x64.ActiveCfg = Release|x64 + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A}.Release|x64.Build.0 = Release|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.ActiveCfg = Debug|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|Win32.Build.0 = Debug|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|x64.ActiveCfg = Debug|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Debug|x64.Build.0 = Debug|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.ActiveCfg = Release|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|Win32.Build.0 = Release|Win32 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|x64.ActiveCfg = Release|x64 + {26932B24-EFC6-4E3A-B277-ED653DA37968}.Release|x64.Build.0 = Release|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.ActiveCfg = Debug|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|Win32.Build.0 = Debug|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|x64.ActiveCfg = Debug|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Debug|x64.Build.0 = Debug|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.ActiveCfg = Release|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|Win32.Build.0 = Release|Win32 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|x64.ActiveCfg = Release|x64 + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3}.Release|x64.Build.0 = Release|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|Win32.ActiveCfg = Debug|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|Win32.Build.0 = Debug|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|x64.ActiveCfg = Debug|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Debug|x64.Build.0 = Debug|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|Win32.ActiveCfg = Release|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|Win32.Build.0 = Release|Win32 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|x64.ActiveCfg = Release|x64 + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E}.Release|x64.Build.0 = Release|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|Win32.ActiveCfg = Debug|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|Win32.Build.0 = Debug|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|x64.ActiveCfg = Debug|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Debug|x64.Build.0 = Debug|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|Win32.ActiveCfg = Release|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|Win32.Build.0 = Release|Win32 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|x64.ActiveCfg = Release|x64 + {BFF40245-E9A6-4297-A425-A554E5D767E8}.Release|x64.Build.0 = Release|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|Win32.ActiveCfg = Debug|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|Win32.Build.0 = Debug|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|x64.ActiveCfg = Debug|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Debug|x64.Build.0 = Debug|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|Win32.ActiveCfg = Release|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|Win32.Build.0 = Release|Win32 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|x64.ActiveCfg = Release|x64 + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6}.Release|x64.Build.0 = Release|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|Win32.ActiveCfg = Debug|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|Win32.Build.0 = Debug|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|x64.ActiveCfg = Debug|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Debug|x64.Build.0 = Debug|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|Win32.ActiveCfg = Release|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|Win32.Build.0 = Release|Win32 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|x64.ActiveCfg = Release|x64 + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2}.Release|x64.Build.0 = Release|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.ActiveCfg = Debug|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|Win32.Build.0 = Debug|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|x64.ActiveCfg = Debug|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Debug|x64.Build.0 = Debug|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.ActiveCfg = Release|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|Win32.Build.0 = Release|Win32 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|x64.ActiveCfg = Release|x64 + {40FB7794-D3C3-4CFE-BCF4-A80C96635682}.Release|x64.Build.0 = Release|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|Win32.ActiveCfg = Debug|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|Win32.Build.0 = Debug|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|x64.ActiveCfg = Debug|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Debug|x64.Build.0 = Debug|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|Win32.ActiveCfg = Release|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|Win32.Build.0 = Release|Win32 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|x64.ActiveCfg = Release|x64 + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A}.Release|x64.Build.0 = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|Win32.ActiveCfg = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|Win32.Build.0 = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|x64.ActiveCfg = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Debug|x64.Build.0 = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|Win32.ActiveCfg = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|Win32.Build.0 = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|x64.ActiveCfg = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08305}.Release|x64.Build.0 = Release|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|Win32.ActiveCfg = Debug|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|Win32.Build.0 = Debug|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|x64.ActiveCfg = Debug|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Debug|x64.Build.0 = Debug|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|Win32.ActiveCfg = Release|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|Win32.Build.0 = Release|Win32 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|x64.ActiveCfg = Release|x64 + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315}.Release|x64.Build.0 = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|Win32.ActiveCfg = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|Win32.Build.0 = Debug|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|x64.ActiveCfg = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Debug|x64.Build.0 = Debug|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|Win32.ActiveCfg = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|Win32.Build.0 = Release|Win32 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|x64.ActiveCfg = Release|x64 + {55812185-D13C-4022-9C81-32E0F4A08306}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {66B32F7E-5716-48D0-B5B9-D832FD052DD5} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {CAE4F1D0-314F-4B10-805B-0EFD670133A0} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {55812185-D13C-4022-9C81-32E0F4A08304} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {26932B24-EFC6-4E3A-B277-ED653DA37968} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {BFF40245-E9A6-4297-A425-A554E5D767E8} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {40FB7794-D3C3-4CFE-BCF4-A80C96635682} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {55812185-D13C-4022-9C81-32E0F4A08305} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {55812185-D13C-4022-9C81-32E0F4A08306} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + {26828762-C95D-4637-9CB1-7F0979523813} = {D69D5741-611F-4E14-8541-1FEE94F50B5A} + EndGlobalSection +EndGlobal diff --git a/SDL/VisualC/SDLmain/SDLmain.vcxproj b/SDL/VisualC/SDLmain/SDLmain.vcxproj new file mode 100644 index 0000000..239a76e --- /dev/null +++ b/SDL/VisualC/SDLmain/SDLmain.vcxproj @@ -0,0 +1,158 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + SDL2main + {DA956FD3-E142-46F2-9DD5-C78BEBB56B7A} + SDLmain + + + + StaticLibrary + + + StaticLibrary + + + StaticLibrary + + + StaticLibrary + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + + + + + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + X64 + + + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + + + + + Disabled + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + X64 + + + Disabled + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + + + + + diff --git a/SDL/VisualC/SDLmain/SDLmain_VS2008.vcproj b/SDL/VisualC/SDLmain/SDLmain_VS2008.vcproj new file mode 100644 index 0000000..65dd31d --- /dev/null +++ b/SDL/VisualC/SDLmain/SDLmain_VS2008.vcproj @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/SDLtest/SDLtest.vcxproj b/SDL/VisualC/SDLtest/SDLtest.vcxproj new file mode 100644 index 0000000..6190a7d --- /dev/null +++ b/SDL/VisualC/SDLtest/SDLtest.vcxproj @@ -0,0 +1,172 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + SDL2test + {DA956FD3-E143-46F2-9FE5-C77BEBC56B1A} + SDLtest + + + + StaticLibrary + + + StaticLibrary + + + StaticLibrary + + + StaticLibrary + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + + + + + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + X64 + + + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + + + + + Disabled + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + X64 + + + Disabled + $(ProjectDir)/../../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + false + StreamingSIMDExtensions + Level3 + OldStyle + true + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/SDLtest/SDLtest_VS2008.vcproj b/SDL/VisualC/SDLtest/SDLtest_VS2008.vcproj new file mode 100644 index 0000000..8a22d0f --- /dev/null +++ b/SDL/VisualC/SDLtest/SDLtest_VS2008.vcproj @@ -0,0 +1,352 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/clean.sh b/SDL/VisualC/clean.sh new file mode 100755 index 0000000..fd16f9a --- /dev/null +++ b/SDL/VisualC/clean.sh @@ -0,0 +1,4 @@ +#!/bin/sh +find . -type f \( -name '*.user' -o -name '*.sdf' -o -name '*.ncb' -o -name '*.suo' \) -print -delete +find . -type f \( -name '*.bmp' -o -name '*.wav' -o -name '*.dat' \) -print -delete +find . -depth -type d \( -name Win32 -o -name x64 \) -exec rm -rv {} \; diff --git a/SDL/VisualC/tests/checkkeys/checkkeys.vcxproj b/SDL/VisualC/tests/checkkeys/checkkeys.vcxproj new file mode 100644 index 0000000..46e2577 --- /dev/null +++ b/SDL/VisualC/tests/checkkeys/checkkeys.vcxproj @@ -0,0 +1,214 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {26828762-C95D-4637-9CB1-7F0979523813} + checkkeys + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/checkkeys.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/checkkeys.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/checkkeys.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + + + .\Release/checkkeys.pch + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/checkkeys.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + + + .\Release/checkkeys.pch + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + $(SolutionDir)$(Platform)\$(Configuration);%(AdditionalIncludeDirectories) + $(Platform)\$(Configuration)\;%(AdditionalUsingDirectories) + %(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + $(SolutionDir)$(Platform)\$(Configuration);%(AdditionalIncludeDirectories) + $(Platform)\$(Configuration)\;%(AdditionalUsingDirectories) + $(SolutionDir)$(Platform)\$(Configuration);%(AdditionalIncludeDirectories) + $(Platform)\$(Configuration)\;%(AdditionalUsingDirectories) + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/checkkeys/checkkeys_VS2008.vcproj b/SDL/VisualC/tests/checkkeys/checkkeys_VS2008.vcproj new file mode 100644 index 0000000..b02c4cf --- /dev/null +++ b/SDL/VisualC/tests/checkkeys/checkkeys_VS2008.vcproj @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/controllermap/controllermap.vcxproj b/SDL/VisualC/tests/controllermap/controllermap.vcxproj new file mode 100644 index 0000000..fedaf6c --- /dev/null +++ b/SDL/VisualC/tests/controllermap/controllermap.vcxproj @@ -0,0 +1,255 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {55812185-D13C-4022-9C81-32E0F4A08306} + controllermap + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/controllermap.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/controllermap.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/controllermap.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/controllermap.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/controllermap/controllermap_VS2008.vcproj b/SDL/VisualC/tests/controllermap/controllermap_VS2008.vcproj new file mode 100644 index 0000000..1ecce67 --- /dev/null +++ b/SDL/VisualC/tests/controllermap/controllermap_VS2008.vcproj @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/loopwave/loopwave.vcxproj b/SDL/VisualC/tests/loopwave/loopwave.vcxproj new file mode 100644 index 0000000..182a38b --- /dev/null +++ b/SDL/VisualC/tests/loopwave/loopwave.vcxproj @@ -0,0 +1,225 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {AAAD1CB5-7ADA-47AE-85A0-08A6EC48FAFB} + loopwave + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/loopwave.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + + + .\Release/loopwave.pch + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/loopwave.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + + + .\Release/loopwave.pch + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/loopwave.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/loopwave.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/loopwave/loopwave_VS2008.vcproj b/SDL/VisualC/tests/loopwave/loopwave_VS2008.vcproj new file mode 100644 index 0000000..1cbf89a --- /dev/null +++ b/SDL/VisualC/tests/loopwave/loopwave_VS2008.vcproj @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testatomic/testatomic.vcxproj b/SDL/VisualC/tests/testatomic/testatomic.vcxproj new file mode 100644 index 0000000..f66dee8 --- /dev/null +++ b/SDL/VisualC/tests/testatomic/testatomic.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {66B32F7E-5716-48D0-B5B9-D832FD052DD5} + testatomic + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testatomic.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testatomic.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testatomic.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testatomic.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testatomic/testatomic_VS2008.vcproj b/SDL/VisualC/tests/testatomic/testatomic_VS2008.vcproj new file mode 100644 index 0000000..5f4452b --- /dev/null +++ b/SDL/VisualC/tests/testatomic/testatomic_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testautomation/testautomation.vcxproj b/SDL/VisualC/tests/testautomation/testautomation.vcxproj new file mode 100644 index 0000000..e5ce6a3 --- /dev/null +++ b/SDL/VisualC/tests/testautomation/testautomation.vcxproj @@ -0,0 +1,226 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {9C7E8C03-3130-436D-A97E-E8F8ED1AC4EA} + testautomation + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testautomation.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testautomation.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testautomation.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testautomation.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + false + false + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testautomation/testautomation_VS2008.vcproj b/SDL/VisualC/tests/testautomation/testautomation_VS2008.vcproj new file mode 100755 index 0000000..dc1bec0 --- /dev/null +++ b/SDL/VisualC/tests/testautomation/testautomation_VS2008.vcproj @@ -0,0 +1,431 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testdraw2/testdraw2.vcxproj b/SDL/VisualC/tests/testdraw2/testdraw2.vcxproj new file mode 100644 index 0000000..c6dd911 --- /dev/null +++ b/SDL/VisualC/tests/testdraw2/testdraw2.vcxproj @@ -0,0 +1,205 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {8682FE1E-0CF6-4EDD-9BB5-1733D8C8B4DF} + testdraw2 + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testdraw2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testdraw2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testdraw2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testdraw2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testdraw2/testdraw2_VS2008.vcproj b/SDL/VisualC/tests/testdraw2/testdraw2_VS2008.vcproj new file mode 100644 index 0000000..16612ae --- /dev/null +++ b/SDL/VisualC/tests/testdraw2/testdraw2_VS2008.vcproj @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testfile/testfile.vcxproj b/SDL/VisualC/tests/testfile/testfile.vcxproj new file mode 100644 index 0000000..d4967d7 --- /dev/null +++ b/SDL/VisualC/tests/testfile/testfile.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {CAE4F1D0-314F-4B10-805B-0EFD670133A0} + testfile + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testfile.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testfile.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testfile.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testfile.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testfile/testfile_VS2008.vcproj b/SDL/VisualC/tests/testfile/testfile_VS2008.vcproj new file mode 100644 index 0000000..46f796a --- /dev/null +++ b/SDL/VisualC/tests/testfile/testfile_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testgamecontroller/testgamecontroller.vcxproj b/SDL/VisualC/tests/testgamecontroller/testgamecontroller.vcxproj new file mode 100644 index 0000000..1b91b87 --- /dev/null +++ b/SDL/VisualC/tests/testgamecontroller/testgamecontroller.vcxproj @@ -0,0 +1,255 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {55812185-D13C-4022-9C81-32E0F4A08305} + testgamecontroller + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testgamecontroller.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testgamecontroller.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testgamecontroller.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testgamecontroller.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testgamecontroller/testgamecontroller_VS2008.vcproj b/SDL/VisualC/tests/testgamecontroller/testgamecontroller_VS2008.vcproj new file mode 100644 index 0000000..1b31f57 --- /dev/null +++ b/SDL/VisualC/tests/testgamecontroller/testgamecontroller_VS2008.vcproj @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testgesture/testgesture.vcxproj b/SDL/VisualC/tests/testgesture/testgesture.vcxproj new file mode 100644 index 0000000..30800e0 --- /dev/null +++ b/SDL/VisualC/tests/testgesture/testgesture.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {79CEE57E-1BC3-4FF6-90B3-9E39763CDAFF} + testgesture + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testgesture.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testgesture.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testgesture.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testgesture.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testgesture/testgesture_VS2008.vcproj b/SDL/VisualC/tests/testgesture/testgesture_VS2008.vcproj new file mode 100644 index 0000000..4fff227 --- /dev/null +++ b/SDL/VisualC/tests/testgesture/testgesture_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testgl2/testgl2.vcxproj b/SDL/VisualC/tests/testgl2/testgl2.vcxproj new file mode 100644 index 0000000..3e50496 --- /dev/null +++ b/SDL/VisualC/tests/testgl2/testgl2.vcxproj @@ -0,0 +1,209 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {8B5CFB38-CCBA-40A8-AD7A-89C57B070884} + testgl2 + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testgl2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + _DEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testgl2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + _DEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testgl2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + NDEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testgl2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + NDEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testgl2/testgl2_VS2008.vcproj b/SDL/VisualC/tests/testgl2/testgl2_VS2008.vcproj new file mode 100644 index 0000000..0c42dc7 --- /dev/null +++ b/SDL/VisualC/tests/testgl2/testgl2_VS2008.vcproj @@ -0,0 +1,359 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testgles2/testgles2.vcxproj b/SDL/VisualC/tests/testgles2/testgles2.vcxproj new file mode 100644 index 0000000..186f6af --- /dev/null +++ b/SDL/VisualC/tests/testgles2/testgles2.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {E9558DFE-1961-4DD4-B09B-DD0EEFD5C315} + testgles2 + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testgles2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testgles2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + _DEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testgles2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testgles2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + NDEBUG;WIN32;_WINDOWS;HAVE_OPENGL;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + opengl32.lib;%(AdditionalDependencies) + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testgles2/testgles2_VS2008.vcproj b/SDL/VisualC/tests/testgles2/testgles2_VS2008.vcproj new file mode 100644 index 0000000..b70a137 --- /dev/null +++ b/SDL/VisualC/tests/testgles2/testgles2_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testjoystick/testjoystick.vcxproj b/SDL/VisualC/tests/testjoystick/testjoystick.vcxproj new file mode 100644 index 0000000..b1c909f --- /dev/null +++ b/SDL/VisualC/tests/testjoystick/testjoystick.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {55812185-D13C-4022-9C81-32E0F4A08304} + testjoystick + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testjoystick.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testjoystick.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testjoystick.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testjoystick.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testjoystick/testjoystick_VS2008.vcproj b/SDL/VisualC/tests/testjoystick/testjoystick_VS2008.vcproj new file mode 100644 index 0000000..eb1a19f --- /dev/null +++ b/SDL/VisualC/tests/testjoystick/testjoystick_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testoverlay2/testoverlay2.vcxproj b/SDL/VisualC/tests/testoverlay2/testoverlay2.vcxproj new file mode 100644 index 0000000..b17f64c --- /dev/null +++ b/SDL/VisualC/tests/testoverlay2/testoverlay2.vcxproj @@ -0,0 +1,219 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {B51E0D74-F0A2-45A2-BD2A-8B7D95B8204A} + testoverlay2 + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testoverlay2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testoverlay2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testoverlay2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testoverlay2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj b/SDL/VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj new file mode 100644 index 0000000..578a7c3 --- /dev/null +++ b/SDL/VisualC/tests/testoverlay2/testoverlay2_VS2008.vcproj @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testplatform/testplatform.vcxproj b/SDL/VisualC/tests/testplatform/testplatform.vcxproj new file mode 100644 index 0000000..db3b7e9 --- /dev/null +++ b/SDL/VisualC/tests/testplatform/testplatform.vcxproj @@ -0,0 +1,227 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {26932B24-EFC6-4E3A-B277-ED653DA37968} + testplatform + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testplatform.tlb + + + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + .\Debug/testplatform.pch + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + true + .\Debug/testplatform.bsc + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testplatform.tlb + + + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + .\Debug/testplatform.pch + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + true + .\Debug/testplatform.bsc + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testplatform.tlb + + + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + .\Release/testplatform.pch + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + true + .\Release/testplatform.bsc + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testplatform.tlb + + + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + .\Release/testplatform.pch + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + true + .\Release/testplatform.bsc + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testplatform/testplatform_VS2008.vcproj b/SDL/VisualC/tests/testplatform/testplatform_VS2008.vcproj new file mode 100644 index 0000000..014faee --- /dev/null +++ b/SDL/VisualC/tests/testplatform/testplatform_VS2008.vcproj @@ -0,0 +1,364 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testpower/testpower.vcxproj b/SDL/VisualC/tests/testpower/testpower.vcxproj new file mode 100644 index 0000000..63e0168 --- /dev/null +++ b/SDL/VisualC/tests/testpower/testpower.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {C4E04D18-EF76-4B42-B4C2-16A1BACDC0A3} + testpower + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testpower.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testpower.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testpower.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testpower.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testpower/testpower_VS2008.vcproj b/SDL/VisualC/tests/testpower/testpower_VS2008.vcproj new file mode 100644 index 0000000..e140e6b --- /dev/null +++ b/SDL/VisualC/tests/testpower/testpower_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testrendertarget/testrendertarget.vcxproj b/SDL/VisualC/tests/testrendertarget/testrendertarget.vcxproj new file mode 100644 index 0000000..b186ee9 --- /dev/null +++ b/SDL/VisualC/tests/testrendertarget/testrendertarget.vcxproj @@ -0,0 +1,243 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {2D17C1EB-1157-460E-9A99-A82BFC1F9D1E} + testrendertarget + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testrendertarget.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testrendertarget.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testrendertarget.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testrendertarget.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + false + false + true + + + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testrendertarget/testrendertarget_VS2008.vcproj b/SDL/VisualC/tests/testrendertarget/testrendertarget_VS2008.vcproj new file mode 100644 index 0000000..d13432a --- /dev/null +++ b/SDL/VisualC/tests/testrendertarget/testrendertarget_VS2008.vcproj @@ -0,0 +1,443 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testrumble/testrumble.vcxproj b/SDL/VisualC/tests/testrumble/testrumble.vcxproj new file mode 100644 index 0000000..81e6b9f --- /dev/null +++ b/SDL/VisualC/tests/testrumble/testrumble.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {BFF40245-E9A6-4297-A425-A554E5D767E8} + testrumble + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testrumble.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testrumble.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testrumble.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testrumble.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testrumble/testrumble_VS2008.vcproj b/SDL/VisualC/tests/testrumble/testrumble_VS2008.vcproj new file mode 100644 index 0000000..ea4a858 --- /dev/null +++ b/SDL/VisualC/tests/testrumble/testrumble_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testscale/testscale.vcxproj b/SDL/VisualC/tests/testscale/testscale.vcxproj new file mode 100644 index 0000000..64ce50d --- /dev/null +++ b/SDL/VisualC/tests/testscale/testscale.vcxproj @@ -0,0 +1,243 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {5D0930C0-7C91-4ECE-9014-7B7DDE9502E6} + testscale + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testscale.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testscale.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testscale.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testscale.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + false + false + true + + + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testscale/testscale_VS2008.vcproj b/SDL/VisualC/tests/testscale/testscale_VS2008.vcproj new file mode 100644 index 0000000..5a15fcc --- /dev/null +++ b/SDL/VisualC/tests/testscale/testscale_VS2008.vcproj @@ -0,0 +1,443 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testshape/testshape.vcxproj b/SDL/VisualC/tests/testshape/testshape.vcxproj new file mode 100644 index 0000000..81938c3 --- /dev/null +++ b/SDL/VisualC/tests/testshape/testshape.vcxproj @@ -0,0 +1,199 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {31A3E4E1-AAE9-4EF3-9B23-18D0924BE4D2} + testshape + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testshape.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testshape.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testshape.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testshape.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testshape/testshape_VS2008.vcproj b/SDL/VisualC/tests/testshape/testshape_VS2008.vcproj new file mode 100644 index 0000000..73db789 --- /dev/null +++ b/SDL/VisualC/tests/testshape/testshape_VS2008.vcproj @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/tests/testsprite2/testsprite2.vcxproj b/SDL/VisualC/tests/testsprite2/testsprite2.vcxproj new file mode 100644 index 0000000..7af6e1e --- /dev/null +++ b/SDL/VisualC/tests/testsprite2/testsprite2.vcxproj @@ -0,0 +1,225 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {40FB7794-D3C3-4CFE-BCF4-A80C96635682} + testsprite2 + + + + Application + + + Application + + + Application + + + Application + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(SolutionDir)$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + AllRules.ruleset + + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Release/testsprite2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Release/testsprite2.tlb + + + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + .\Debug/testsprite2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + X64 + .\Debug/testsprite2.tlb + + + Disabled + $(SolutionDir)/../include;%(AdditionalIncludeDirectories) + %(AdditionalUsingDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + OldStyle + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + false + false + true + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + false + false + true + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + false + false + true + + + + + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + Copying %(Filename)%(Extension) + copy %(FullPath) $(ProjectDir)\ + + $(ProjectDir)\%(Filename)%(Extension);%(Outputs) + + + + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/tests/testsprite2/testsprite2_VS2008.vcproj b/SDL/VisualC/tests/testsprite2/testsprite2_VS2008.vcproj new file mode 100644 index 0000000..7236ecc --- /dev/null +++ b/SDL/VisualC/tests/testsprite2/testsprite2_VS2008.vcproj @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/VisualC/visualtest/unittest/testquit/testquit_VS2012.vcxproj b/SDL/VisualC/visualtest/unittest/testquit/testquit_VS2012.vcxproj new file mode 100755 index 0000000..219b864 --- /dev/null +++ b/SDL/VisualC/visualtest/unittest/testquit/testquit_VS2012.vcxproj @@ -0,0 +1,216 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + testquit + testquit + {1D12C737-7C71-45CE-AE2C-AAB47B690BC8} + + + + Application + false + v110 + + + Application + false + MultiByte + v110 + + + Application + false + v110 + + + Application + false + v110 + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + false + false + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + true + true + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + OnlyExplicitInline + ..\..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + Level3 + true + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + + + OnlyExplicitInline + ..\..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + Level3 + true + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + Disabled + ..\..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + + + Level3 + true + EditAndContinue + Default + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + true + Windows + false + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + + + Disabled + ..\..\..\..\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + + + Level3 + true + ProgramDatabase + Default + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + true + Windows + false + + + + + + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + + + + + + \ No newline at end of file diff --git a/SDL/VisualC/visualtest/visualtest_VS2012.vcxproj b/SDL/VisualC/visualtest/visualtest_VS2012.vcxproj new file mode 100755 index 0000000..9244b6a --- /dev/null +++ b/SDL/VisualC/visualtest/visualtest_VS2012.vcxproj @@ -0,0 +1,304 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + visualtest + visualtest + {13DDF23A-4A8F-4AF9-9734-CC09D9157924} + + + + Application + false + v110 + + + Application + false + MultiByte + v110 + + + Application + false + v110 + + + Application + false + v110 + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + false + false + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(SolutionDir)\$(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + $(Platform)\$(Configuration)\ + true + true + + + testharness + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + OnlyExplicitInline + ..\..\include;..\..\visualtest\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + Level3 + true + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + copy "$(SolutionDir)..\test\icon.bmp" "$(ProjectDir)icon.bmp" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testsprite2.exe" "$(ProjectDir)" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testquit.exe" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.actions" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.actions" "$(ProjectDir)" + + + Copy data files + + + + + NDEBUG;%(PreprocessorDefinitions) + true + true + + + OnlyExplicitInline + ..\..\include;..\..\visualtest\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + true + + + Level3 + true + Default + + + NDEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + Windows + + + copy "$(SolutionDir)..\test\icon.bmp" "$(ProjectDir)icon.bmp" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testsprite2.exe" "$(ProjectDir)" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testquit.exe" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.actions" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.actions" "$(ProjectDir)" + + + Copy data files + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + Win32 + + + Disabled + ..\..\include;..\..\visualtest\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + + + Level3 + true + EditAndContinue + Default + false + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + true + Windows + kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;Shlwapi.lib;%(AdditionalDependencies) + false + + + copy "$(SolutionDir)..\test\icon.bmp" "$(ProjectDir)icon.bmp" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testsprite2.exe" "$(ProjectDir)" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testquit.exe" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.actions" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.actions" "$(ProjectDir)" + + + Copy data files + + + + + _DEBUG;%(PreprocessorDefinitions) + true + true + + + Disabled + ..\..\include;..\..\visualtest\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + + + Level3 + true + ProgramDatabase + Default + + + _DEBUG;%(PreprocessorDefinitions) + 0x0409 + + + true + true + Windows + false + + + copy "$(SolutionDir)..\test\icon.bmp" "$(ProjectDir)icon.bmp" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testsprite2.exe" "$(ProjectDir)" +copy "$(SolutionDir)\$(Platform)\$(Configuration)\testquit.exe" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\*.actions" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.config" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.parameters" "$(ProjectDir)" +copy /y "$(SolutionDir)..\visualtest\unittest\*.actions" "$(ProjectDir)" + + + Copy data files + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {da956fd3-e142-46f2-9dd5-c78bebb56b7a} + + + {da956fd3-e143-46f2-9fe5-c77bebc56b1a} + + + {81ce8daf-ebb2-4761-8e45-b71abcca8c68} + + + + + + \ No newline at end of file diff --git a/SDL/WhatsNew.txt b/SDL/WhatsNew.txt new file mode 100644 index 0000000..698ebf7 --- /dev/null +++ b/SDL/WhatsNew.txt @@ -0,0 +1,199 @@ + +This is a list of major changes in SDL's version history. + +--------------------------------------------------------------------------- +2.0.4: +--------------------------------------------------------------------------- + +General: +* Added support for web applications using Emscripten, see docs/README-emscripten.md for more information +* Added support for web applications using Native Client (NaCl), see docs/README-nacl.md for more information +* Added an API to queue audio instead of using the audio callback: + SDL_QueueAudio(), SDL_GetQueuedAudioSize(), SDL_ClearQueuedAudio() +* Added events for audio device hot plug support: + SDL_AUDIODEVICEADDED, SDL_AUDIODEVICEREMOVED +* Added SDL_PointInRect() +* Added SDL_HasAVX2() to detect CPUs with AVX2 support +* Added SDL_SetWindowHitTest() to let apps treat parts of their SDL window like traditional window decorations (drag areas, resize areas) +* Added SDL_GetGrabbedWindow() to get the window that currently has input grab, if any +* Added SDL_RenderIsClipEnabled() to tell whether clipping is currently enabled in a renderer +* Added SDL_CaptureMouse() to capture the mouse to get events while the mouse is not in your window +* Added SDL_WarpMouseGlobal() to warp the mouse cursor in global screen space +* Added SDL_GetGlobalMouseState() to get the current mouse state outside of an SDL window +* Added a direction field to mouse wheel events to tell whether they are flipped (natural) or not +* Added GL_CONTEXT_RELEASE_BEHAVIOR GL attribute (maps to [WGL|GLX]_ARB_context_flush_control extension) +* Added EGL_KHR_create_context support to allow OpenGL ES version selection on some platforms +* Added NV12 and NV21 YUV texture support for OpenGL and OpenGL ES 2.0 renderers +* Added a Vivante video driver that is used on various SoC platforms +* Added an event SDL_RENDER_DEVICE_RESET that is sent from the D3D renderers when the D3D device is lost, and from Android's event loop when the GLES context had to be recreated +* Added a hint SDL_HINT_NO_SIGNAL_HANDLERS to disable SDL's built in signal handling +* Added a hint SDL_HINT_THREAD_STACK_SIZE to set the stack size of SDL's threads +* Added SDL_sqrtf(), SDL_tan(), and SDL_tanf() to the stdlib routines +* Improved support for WAV and BMP files with unusual chunks in them +* Renamed SDL_assert_data to SDL_AssertData and SDL_assert_state to SDL_AssertState +* Added a hint SDL_HINT_WINDOW_FRAME_USABLE_WHILE_CURSOR_HIDDEN to prevent window interaction while cursor is hidden +* Added SDL_GetDisplayDPI() to get the DPI information for a display +* Added SDL_JoystickCurrentPowerLevel() to get the battery level of a joystick +* Added SDL_JoystickFromInstanceID(), as a helper function, to get the SDL_Joystick* that an event is referring to. +* Added SDL_GameControllerFromInstanceID(), as a helper function, to get the SDL_GameController* that an event is referring to. + +Windows: +* Added support for Windows Phone 8.1 and Windows 10/UWP (Universal Windows Platform) +* Timer resolution is now 1 ms by default, adjustable with the SDL_HINT_TIMER_RESOLUTION hint +* SDLmain no longer depends on the C runtime, so you can use the same .lib in both Debug and Release builds +* Added SDL_SetWindowsMessageHook() to set a function to be called for every windows message before TranslateMessage() +* Added a hint SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP to control whether SDL_PumpEvents() processes the Windows message loop +* You can distinguish between real mouse and touch events by looking for SDL_TOUCH_MOUSEID in the mouse event "which" field +* SDL_SysWMinfo now contains the window HDC +* Added support for Unicode command line options +* Prevent beeping when Alt-key combos are pressed +* SDL_SetTextInputRect() re-positions the OS-rendered IME +* Added a hint SDL_HINT_WINDOWS_NO_CLOSE_ON_ALT_F4 to prevent generating SDL_WINDOWEVENT_CLOSE events when Alt-F4 is pressed +* Added a hint SDL_HINT_XINPUT_USE_OLD_JOYSTICK_MAPPING to use the old axis and button mapping for XInput devices (deprecated) + +Mac OS X: +* Implemented drag-and-drop support +* Improved joystick hot-plug detection +* The SDL_WINDOWEVENT_EXPOSED window event is triggered in the appropriate situations +* Fixed relative mouse mode when the application loses/regains focus +* Fixed bugs related to transitioning to and from Spaces-aware fullscreen-desktop mode +* Fixed the refresh rate of display modes +* SDL_SysWMInfo is now ARC-compatible +* Added a hint SDL_HINT_MAC_BACKGROUND_APP to prevent forcing the application to become a foreground process + +Linux: +* Enabled building with Mir and Wayland support by default. +* Added IBus IME support +* Added a hint SDL_HINT_IME_INTERNAL_EDITING to control whether IBus should handle text editing internally instead of sending SDL_TEXTEDITING events +* Added a hint SDL_HINT_VIDEO_X11_NET_WM_PING to allow disabling _NET_WM_PING protocol handling in SDL_CreateWindow() +* Added support for multiple audio devices when using Pulseaudio +* Fixed duplicate mouse events when using relative mouse motion + +iOS: +* Added support for iOS 8 +* The SDL_WINDOW_ALLOW_HIGHDPI window flag now enables high-dpi support, and SDL_GL_GetDrawableSize() or SDL_GetRendererOutputSize() gets the window resolution in pixels +* SDL_GetWindowSize() and display mode sizes are in the "DPI-independent points" / "screen coordinates" coordinate space rather than pixels (matches OS X behavior) +* Added native resolution support for the iPhone 6 Plus +* Added support for MFi game controllers +* Added support for the hint SDL_HINT_ACCELEROMETER_AS_JOYSTICK +* Added sRGB OpenGL ES context support on iOS 7+ +* Added support for SDL_DisableScreenSaver(), SDL_EnableScreenSaver() and the hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER +* SDL_SysWMinfo now contains the OpenGL ES framebuffer and color renderbuffer objects used by the window's active GLES view +* Fixed various rotation and orientation issues +* Fixed memory leaks + +Android: +* Added a hint SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH to prevent mouse events from being registered as touch events +* Added hints SDL_HINT_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION and SDL_HINT_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION +* Added support for SDL_DisableScreenSaver(), SDL_EnableScreenSaver() and the hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER +* Added support for SDL_ShowMessageBox() and SDL_ShowSimpleMessageBox() + +Raspberry Pi: +* Added support for the Raspberry Pi 2 + + +--------------------------------------------------------------------------- +2.0.3: +--------------------------------------------------------------------------- + +Mac OS X: +* Fixed creating an OpenGL context by default on Mac OS X 10.6 + + +--------------------------------------------------------------------------- +2.0.2: +--------------------------------------------------------------------------- +General: +* Added SDL_GL_ResetAttributes() to reset OpenGL attributes to default values +* Added an API to load a database of game controller mappings from a file: + SDL_GameControllerAddMappingsFromFile(), SDL_GameControllerAddMappingsFromRW() +* Added game controller mappings for the PS4 and OUYA controllers +* Added SDL_GetDefaultAssertionHandler() and SDL_GetAssertionHandler() +* Added SDL_DetachThread() +* Added SDL_HasAVX() to determine if the CPU has AVX features +* Added SDL_vsscanf(), SDL_acos(), and SDL_asin() to the stdlib routines +* EGL can now create/manage OpenGL and OpenGL ES 1.x/2.x contexts, and share + them using SDL_GL_SHARE_WITH_CURRENT_CONTEXT +* Added a field "clicks" to the mouse button event which records whether the event is a single click, double click, etc. +* The screensaver is now disabled by default, and there is a hint SDL_HINT_VIDEO_ALLOW_SCREENSAVER that can change that behavior. +* Added a hint SDL_HINT_MOUSE_RELATIVE_MODE_WARP to specify whether mouse relative mode should be emulated using mouse warping. +* testgl2 does not need to link with libGL anymore +* Added testgles2 test program to demonstrate working with OpenGL ES 2.0 +* Added controllermap test program to visually map a game controller + +Windows: +* Support for OpenGL ES 2.x contexts using either WGL or EGL (natively via + the driver or emulated through ANGLE) +* Added a hint SDL_HINT_VIDEO_WIN_D3DCOMPILER to specify which D3D shader compiler to use for OpenGL ES 2 support through ANGLE +* Added a hint SDL_HINT_VIDEO_WINDOW_SHARE_PIXEL_FORMAT that is useful when creating multiple windows that should share the same OpenGL context. +* Added an event SDL_RENDER_TARGETS_RESET that is sent when D3D9 render targets are reset after the device has been restored. + +Mac OS X: +* Added a hint SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK to control whether Ctrl+click should be treated as a right click on Mac OS X. This is off by default. + +Linux: +* Fixed fullscreen and focused behavior when receiving NotifyGrab events +* Added experimental Wayland and Mir support, disabled by default + +Android: +* Joystick support (minimum SDK version required to build SDL is now 12, + the required runtime version remains at 10, but on such devices joystick + support won't be available). +* Hotplugging support for joysticks +* Added a hint SDL_HINT_ACCELEROMETER_AS_JOYSTICK to control whether the accelerometer should be listed as a 3 axis joystick, which it will by default. + + +--------------------------------------------------------------------------- +2.0.1: +--------------------------------------------------------------------------- + +General: +* Added an API to get common filesystem paths in SDL_filesystem.h: + SDL_GetBasePath(), SDL_GetPrefPath() +* Added an API to do optimized YV12 and IYUV texture updates: + SDL_UpdateYUVTexture() +* Added an API to get the amount of RAM on the system: + SDL_GetSystemRAM() +* Added a macro to perform timestamp comparisons with SDL_GetTicks(): + SDL_TICKS_PASSED() +* Dramatically improved OpenGL ES 2.0 rendering performance +* Added OpenGL attribute SDL_GL_FRAMEBUFFER_SRGB_CAPABLE + +Windows: +* Created a static library configuration for the Visual Studio 2010 project +* Added a hint to create the Direct3D device with support for multi-threading: + SDL_HINT_RENDER_DIRECT3D_THREADSAFE +* Added a function to get the D3D9 adapter index for a display: + SDL_Direct3D9GetAdapterIndex() +* Added a function to get the D3D9 device for a D3D9 renderer: + SDL_RenderGetD3D9Device() +* Fixed building SDL with the mingw32 toolchain (mingw-w64 is preferred) +* Fixed crash when using two XInput controllers at the same time +* Fixed detecting a mixture of XInput and DirectInput controllers +* Fixed clearing a D3D render target larger than the window +* Improved support for format specifiers in SDL_snprintf() + +Mac OS X: +* Added support for retina displays: + Create your window with the SDL_WINDOW_ALLOW_HIGHDPI flag, and then use SDL_GL_GetDrawableSize() to find the actual drawable size. You are responsible for scaling mouse and drawing coordinates appropriately. +* Fixed mouse warping in fullscreen mode +* Right mouse click is emulated by holding the Ctrl key while left clicking + +Linux: +* Fixed float audio support with the PulseAudio driver +* Fixed missing line endpoints in the OpenGL renderer on some drivers +* X11 symbols are no longer defined to avoid collisions when linking statically + +iOS: +* Fixed status bar visibility on iOS 7 +* Flipped the accelerometer Y axis to match expected values + +Android: +IMPORTANT: You MUST get the updated SDLActivity.java to match C code +* Moved EGL initialization to native code +* Fixed the accelerometer axis rotation relative to the device rotation +* Fixed race conditions when handling the EGL context on pause/resume +* Touch devices are available for enumeration immediately after init + +Raspberry Pi: +* Added support for the Raspberry Pi, see README-raspberrypi.txt for details diff --git a/SDL/Xcode-iOS/Demos/Default.png b/SDL/Xcode-iOS/Demos/Default.png new file mode 100644 index 0000000..f912828 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/Default.png differ diff --git a/SDL/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj b/SDL/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj new file mode 100755 index 0000000..569d2d1 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/Demos.xcodeproj/project.pbxproj @@ -0,0 +1,1042 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 1D3623EC0D0F72F000981E51 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; }; + 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + FA8B4BA31967070A00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */; }; + FA8B4BA41967071300F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */; }; + FA8B4BA51967071A00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */; }; + FA8B4BA61967072100F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */; }; + FA8B4BA71967072800F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */; }; + FA8B4BA81967073400F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */; }; + FA8B4BA91967073D00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */; }; + FAE0E96A1BAF96A00098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9691BAF96A00098DFA4 /* GameController.framework */; }; + FAE0E96C1BAF96A90098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9691BAF96A00098DFA4 /* GameController.framework */; }; + FAE0E96D1BAF96AF0098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9691BAF96A00098DFA4 /* GameController.framework */; }; + FAE0E96E1BAF96B10098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9691BAF96A00098DFA4 /* GameController.framework */; }; + FAE0E96F1BAF96B50098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9691BAF96A00098DFA4 /* GameController.framework */; }; + FAE0E9701BAF96B80098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9691BAF96A00098DFA4 /* GameController.framework */; }; + FAE0E9711BAF96BB0098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9691BAF96A00098DFA4 /* GameController.framework */; }; + FD15FD690E086911003BDF25 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + FD15FD6A0E086911003BDF25 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + FD15FD6B0E086911003BDF25 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; }; + FD15FD6C0E086911003BDF25 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; }; + FD15FD6D0E086911003BDF25 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; }; + FD1B48DD0E313255007AB34E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL2.a */; }; + FD1B49980E313261007AB34E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL2.a */; }; + FD1B499C0E313269007AB34E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL2.a */; }; + FD1B499E0E31326C007AB34E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL2.a */; }; + FD1B49A00E313270007AB34E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL2.a */; }; + FD1B49A20E313273007AB34E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL2.a */; }; + FD5F9CE80E0E0741008E885B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + FD5F9CE90E0E0741008E885B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + FD5F9CEA0E0E0741008E885B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; }; + FD5F9CEB0E0E0741008E885B /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; }; + FD5F9CEC0E0E0741008E885B /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; }; + FD77A00E0E26BC0500F39101 /* happy.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0080E26BC0500F39101 /* happy.c */; }; + FD77A0130E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; }; + FD77A0160E26BC0500F39101 /* rectangles.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A00A0E26BC0500F39101 /* rectangles.c */; }; + FD77A0190E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; }; + FD77A01F0E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; }; + FD77A0230E26BC0500F39101 /* touch.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A00B0E26BC0500F39101 /* touch.c */; }; + FD77A0250E26BC0500F39101 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; }; + FD77A0270E26BC0500F39101 /* mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0090E26BC0500F39101 /* mixer.c */; }; + FD77A02A0E26BC2700F39101 /* accelerometer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0050E26BC0500F39101 /* accelerometer.c */; }; + FD787AA10E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; }; + FD787AA20E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; }; + FD787AA30E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; }; + FD787AA40E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; }; + FD787AA50E22A5CC003E8E36 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; }; + FD925B190E0F276600E92347 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; }; + FD925B1A0E0F276600E92347 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; }; + FD925B1B0E0F276600E92347 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; }; + FDB651D00E43D1AD00F688B5 /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CC0E43D19800F688B5 /* icon.bmp */; }; + FDB651D10E43D1B300F688B5 /* ship.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CD0E43D19800F688B5 /* ship.bmp */; }; + FDB651D20E43D1B500F688B5 /* space.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CE0E43D19800F688B5 /* space.bmp */; }; + FDB651D30E43D1BA00F688B5 /* stroke.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CF0E43D19800F688B5 /* stroke.bmp */; }; + FDB651D40E43D1C500F688B5 /* ds_brush_snare.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651C80E43D19800F688B5 /* ds_brush_snare.wav */; }; + FDB651D50E43D1C500F688B5 /* ds_china.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651C90E43D19800F688B5 /* ds_china.wav */; }; + FDB651D60E43D1C500F688B5 /* ds_kick_big_amb.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CA0E43D19800F688B5 /* ds_kick_big_amb.wav */; }; + FDB651D70E43D1C500F688B5 /* ds_loose_skin_mute.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CB0E43D19800F688B5 /* ds_loose_skin_mute.wav */; }; + FDB651D80E43D1D800F688B5 /* stroke.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CF0E43D19800F688B5 /* stroke.bmp */; }; + FDB651F90E43D1F300F688B5 /* stroke.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB651CF0E43D19800F688B5 /* stroke.bmp */; }; + FDB651FA0E43D1F300F688B5 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; }; + FDB651FB0E43D1F300F688B5 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; }; + FDB651FD0E43D1F300F688B5 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; }; + FDB652000E43D1F300F688B5 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B489E0E313154007AB34E /* libSDL2.a */; }; + FDB652020E43D1F300F688B5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + FDB652030E43D1F300F688B5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + FDB652040E43D1F300F688B5 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; }; + FDB652050E43D1F300F688B5 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; }; + FDB652060E43D1F300F688B5 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; }; + FDB652070E43D1F300F688B5 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; }; + FDB652080E43D1F300F688B5 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; }; + FDB652120E43D21A00F688B5 /* keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = FDB652110E43D21A00F688B5 /* keyboard.c */; }; + FDB652C70E43E25900F688B5 /* kromasky_16x16.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDB652C60E43E25900F688B5 /* kromasky_16x16.bmp */; }; + FDB96ED40DEFC9C700FAF19F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; }; + FDB96EE00DEFC9DC00FAF19F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; }; + FDC202E10E107B1200ABAC90 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; }; + FDC202E60E107B1200ABAC90 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + FDC202E70E107B1200ABAC90 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + FDC202E80E107B1200ABAC90 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; }; + FDC202E90E107B1200ABAC90 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; }; + FDC202EA0E107B1200ABAC90 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; }; + FDC214870E26D78A00DDED23 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; }; + FDC52EC80E2843D6008D768C /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; }; + FDC52EC90E2843D6008D768C /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD787AA00E22A5CC003E8E36 /* Default.png */; }; + FDC52ECF0E2843D6008D768C /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A0060E26BC0500F39101 /* common.c */; }; + FDC52ED40E2843D6008D768C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + FDC52ED50E2843D6008D768C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + FDC52ED60E2843D6008D768C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; }; + FDC52ED70E2843D6008D768C /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; }; + FDC52ED80E2843D6008D768C /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; }; + FDC52ED90E2843D6008D768C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; }; + FDC52EDA0E2843D6008D768C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; }; + FDC52EE50E284410008D768C /* fireworks.c in Sources */ = {isa = PBXBuildFile; fileRef = FDC52EE40E284410008D768C /* fireworks.c */; }; + FDF0D6960E12D05400247964 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD925B180E0F276600E92347 /* Icon.png */; }; + FDF0D69C0E12D05400247964 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + FDF0D69D0E12D05400247964 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + FDF0D69E0E12D05400247964 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */; }; + FDF0D69F0E12D05400247964 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */; }; + FDF0D6A00E12D05400247964 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */; }; + FDF0D71E0E12D2AB00247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; }; + FDF0D7230E12D31800247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; }; + FDF0D7950E12D52900247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; }; + FDF0D7960E12D52900247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; }; + FDF0D7A70E12D53200247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; }; + FDF0D7A80E12D53200247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; }; + FDF0D7A90E12D53500247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; }; + FDF0D7AA0E12D53500247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; }; + FDF0D7AB0E12D53800247964 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */; }; + FDF0D7AC0E12D53800247964 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDF0D7220E12D31800247964 /* AudioToolbox.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 049F3694130CD86800FF080F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = FD6526620DE8FCCB002AD96B; + remoteInfo = libSDL; + }; + 049F3696130CD87600FF080F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = FD6526620DE8FCCB002AD96B; + remoteInfo = libSDL; + }; + 049F3698130CD87F00FF080F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = FD6526620DE8FCCB002AD96B; + remoteInfo = libSDL; + }; + 049F369A130CD88800FF080F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = FD6526620DE8FCCB002AD96B; + remoteInfo = libSDL; + }; + 049F369C130CD89000FF080F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = FD6526620DE8FCCB002AD96B; + remoteInfo = libSDL; + }; + 049F369E130CD89800FF080F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = FD6526620DE8FCCB002AD96B; + remoteInfo = libSDL; + }; + 049F36A0130CD8A000FF080F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = FD6526620DE8FCCB002AD96B; + remoteInfo = libSDL; + }; + FD1B489D0E313154007AB34E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = FD6526630DE8FCCB002AD96B; + remoteInfo = StaticLib; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + 1D6058910D05DD3D006BFB54 /* Rectangles.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Rectangles.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; }; + FAE0E9691BAF96A00098DFA4 /* GameController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameController.framework; path = System/Library/Frameworks/GameController.framework; sourceTree = SDKROOT; }; + FD15FCB20E086866003BDF25 /* Happy.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Happy.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FD1B48920E313154007AB34E /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = ../SDL/SDL.xcodeproj; sourceTree = SOURCE_ROOT; }; + FD5F9BE40E0DEBEA008E885B /* Accel.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Accel.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FD77A0050E26BC0500F39101 /* accelerometer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = accelerometer.c; sourceTree = ""; }; + FD77A0060E26BC0500F39101 /* common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = common.c; sourceTree = ""; }; + FD77A0070E26BC0500F39101 /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = ""; }; + FD77A0080E26BC0500F39101 /* happy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = happy.c; sourceTree = ""; }; + FD77A0090E26BC0500F39101 /* mixer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mixer.c; sourceTree = ""; }; + FD77A00A0E26BC0500F39101 /* rectangles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = rectangles.c; sourceTree = ""; }; + FD77A00B0E26BC0500F39101 /* touch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = touch.c; sourceTree = ""; }; + FD787AA00E22A5CC003E8E36 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = ""; }; + FD925B180E0F276600E92347 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + FDB651C60E43D19800F688B5 /* license.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = license.txt; sourceTree = ""; }; + FDB651C80E43D19800F688B5 /* ds_brush_snare.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_brush_snare.wav; sourceTree = ""; }; + FDB651C90E43D19800F688B5 /* ds_china.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_china.wav; sourceTree = ""; }; + FDB651CA0E43D19800F688B5 /* ds_kick_big_amb.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_kick_big_amb.wav; sourceTree = ""; }; + FDB651CB0E43D19800F688B5 /* ds_loose_skin_mute.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; path = ds_loose_skin_mute.wav; sourceTree = ""; }; + FDB651CC0E43D19800F688B5 /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = icon.bmp; sourceTree = ""; }; + FDB651CD0E43D19800F688B5 /* ship.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = ship.bmp; sourceTree = ""; }; + FDB651CE0E43D19800F688B5 /* space.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = space.bmp; sourceTree = ""; }; + FDB651CF0E43D19800F688B5 /* stroke.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = stroke.bmp; sourceTree = ""; }; + FDB6520C0E43D1F300F688B5 /* Keyboard.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Keyboard.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDB652110E43D21A00F688B5 /* keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = keyboard.c; sourceTree = ""; }; + FDB652C60E43E25900F688B5 /* kromasky_16x16.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; path = kromasky_16x16.bmp; sourceTree = ""; }; + FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; + FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + FDC202EE0E107B1200ABAC90 /* Touch.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Touch.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDC52EDE0E2843D6008D768C /* Fireworks.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Fireworks.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDC52EE40E284410008D768C /* fireworks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fireworks.c; sourceTree = ""; }; + FDF0D6A40E12D05400247964 /* Mixer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Mixer.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; + FDF0D7220E12D31800247964 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 1D60588F0D05DD3D006BFB54 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FD1B48DD0E313255007AB34E /* libSDL2.a in Frameworks */, + FAE0E96A1BAF96A00098DFA4 /* GameController.framework in Frameworks */, + FA8B4BA31967070A00F8EB7C /* CoreMotion.framework in Frameworks */, + FDF0D7AB0E12D53800247964 /* CoreAudio.framework in Frameworks */, + FDF0D7AC0E12D53800247964 /* AudioToolbox.framework in Frameworks */, + 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */, + 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */, + 1D3623EC0D0F72F000981E51 /* CoreGraphics.framework in Frameworks */, + FDB96ED40DEFC9C700FAF19F /* OpenGLES.framework in Frameworks */, + FDB96EE00DEFC9DC00FAF19F /* QuartzCore.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FD15FCB00E086866003BDF25 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FD1B49980E313261007AB34E /* libSDL2.a in Frameworks */, + FAE0E96C1BAF96A90098DFA4 /* GameController.framework in Frameworks */, + FA8B4BA41967071300F8EB7C /* CoreMotion.framework in Frameworks */, + FDF0D7A90E12D53500247964 /* CoreAudio.framework in Frameworks */, + FDF0D7AA0E12D53500247964 /* AudioToolbox.framework in Frameworks */, + FD15FD690E086911003BDF25 /* Foundation.framework in Frameworks */, + FD15FD6A0E086911003BDF25 /* UIKit.framework in Frameworks */, + FD15FD6B0E086911003BDF25 /* CoreGraphics.framework in Frameworks */, + FD15FD6C0E086911003BDF25 /* OpenGLES.framework in Frameworks */, + FD15FD6D0E086911003BDF25 /* QuartzCore.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FD5F9BE20E0DEBEA008E885B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FD1B499C0E313269007AB34E /* libSDL2.a in Frameworks */, + FAE0E96D1BAF96AF0098DFA4 /* GameController.framework in Frameworks */, + FA8B4BA51967071A00F8EB7C /* CoreMotion.framework in Frameworks */, + FDF0D7A70E12D53200247964 /* CoreAudio.framework in Frameworks */, + FDF0D7A80E12D53200247964 /* AudioToolbox.framework in Frameworks */, + FD5F9CEB0E0E0741008E885B /* OpenGLES.framework in Frameworks */, + FD5F9CEC0E0E0741008E885B /* QuartzCore.framework in Frameworks */, + FD5F9CE80E0E0741008E885B /* Foundation.framework in Frameworks */, + FD5F9CE90E0E0741008E885B /* UIKit.framework in Frameworks */, + FD5F9CEA0E0E0741008E885B /* CoreGraphics.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDB651FF0E43D1F300F688B5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB652000E43D1F300F688B5 /* libSDL2.a in Frameworks */, + FAE0E9711BAF96BB0098DFA4 /* GameController.framework in Frameworks */, + FA8B4BA91967073D00F8EB7C /* CoreMotion.framework in Frameworks */, + FDB652020E43D1F300F688B5 /* Foundation.framework in Frameworks */, + FDB652030E43D1F300F688B5 /* UIKit.framework in Frameworks */, + FDB652040E43D1F300F688B5 /* CoreGraphics.framework in Frameworks */, + FDB652050E43D1F300F688B5 /* OpenGLES.framework in Frameworks */, + FDB652060E43D1F300F688B5 /* QuartzCore.framework in Frameworks */, + FDB652070E43D1F300F688B5 /* CoreAudio.framework in Frameworks */, + FDB652080E43D1F300F688B5 /* AudioToolbox.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC202E40E107B1200ABAC90 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FD1B499E0E31326C007AB34E /* libSDL2.a in Frameworks */, + FAE0E96E1BAF96B10098DFA4 /* GameController.framework in Frameworks */, + FA8B4BA61967072100F8EB7C /* CoreMotion.framework in Frameworks */, + FDF0D7950E12D52900247964 /* CoreAudio.framework in Frameworks */, + FDF0D7960E12D52900247964 /* AudioToolbox.framework in Frameworks */, + FDC202E60E107B1200ABAC90 /* Foundation.framework in Frameworks */, + FDC202E70E107B1200ABAC90 /* UIKit.framework in Frameworks */, + FDC202E80E107B1200ABAC90 /* CoreGraphics.framework in Frameworks */, + FDC202E90E107B1200ABAC90 /* OpenGLES.framework in Frameworks */, + FDC202EA0E107B1200ABAC90 /* QuartzCore.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC52ED10E2843D6008D768C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FD1B49A20E313273007AB34E /* libSDL2.a in Frameworks */, + FAE0E9701BAF96B80098DFA4 /* GameController.framework in Frameworks */, + FA8B4BA81967073400F8EB7C /* CoreMotion.framework in Frameworks */, + FDC52ED40E2843D6008D768C /* Foundation.framework in Frameworks */, + FDC52ED50E2843D6008D768C /* UIKit.framework in Frameworks */, + FDC52ED60E2843D6008D768C /* CoreGraphics.framework in Frameworks */, + FDC52ED70E2843D6008D768C /* OpenGLES.framework in Frameworks */, + FDC52ED80E2843D6008D768C /* QuartzCore.framework in Frameworks */, + FDC52ED90E2843D6008D768C /* CoreAudio.framework in Frameworks */, + FDC52EDA0E2843D6008D768C /* AudioToolbox.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDF0D69A0E12D05400247964 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FD1B49A00E313270007AB34E /* libSDL2.a in Frameworks */, + FAE0E96F1BAF96B50098DFA4 /* GameController.framework in Frameworks */, + FA8B4BA71967072800F8EB7C /* CoreMotion.framework in Frameworks */, + FDF0D69C0E12D05400247964 /* Foundation.framework in Frameworks */, + FDF0D69D0E12D05400247964 /* UIKit.framework in Frameworks */, + FDF0D69E0E12D05400247964 /* CoreGraphics.framework in Frameworks */, + FDF0D69F0E12D05400247964 /* OpenGLES.framework in Frameworks */, + FDF0D6A00E12D05400247964 /* QuartzCore.framework in Frameworks */, + FDF0D71E0E12D2AB00247964 /* CoreAudio.framework in Frameworks */, + FDF0D7230E12D31800247964 /* AudioToolbox.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 1D6058910D05DD3D006BFB54 /* Rectangles.app */, + FD15FCB20E086866003BDF25 /* Happy.app */, + FD5F9BE40E0DEBEA008E885B /* Accel.app */, + FDC202EE0E107B1200ABAC90 /* Touch.app */, + FDF0D6A40E12D05400247964 /* Mixer.app */, + FDC52EDE0E2843D6008D768C /* Fireworks.app */, + FDB6520C0E43D1F300F688B5 /* Keyboard.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { + isa = PBXGroup; + children = ( + FD1B48920E313154007AB34E /* SDL.xcodeproj */, + FD77A0040E26BC0500F39101 /* src */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = CustomTemplate; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + FDB651C30E43D19800F688B5 /* data */, + FD787AA00E22A5CC003E8E36 /* Default.png */, + FD925B180E0F276600E92347 /* Icon.png */, + 8D1107310486CEB800E47090 /* Info.plist */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + FAE0E9691BAF96A00098DFA4 /* GameController.framework */, + FA8B4BA21967070A00F8EB7C /* CoreMotion.framework */, + FDF0D7220E12D31800247964 /* AudioToolbox.framework */, + FDB96EDF0DEFC9DC00FAF19F /* QuartzCore.framework */, + FDB96ED30DEFC9C700FAF19F /* OpenGLES.framework */, + 1D3623EB0D0F72F000981E51 /* CoreGraphics.framework */, + 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */, + 1D30AB110D05D00D00671497 /* Foundation.framework */, + FDF0D71D0E12D2AB00247964 /* CoreAudio.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + FD1B48930E313154007AB34E /* Products */ = { + isa = PBXGroup; + children = ( + FD1B489E0E313154007AB34E /* libSDL2.a */, + ); + name = Products; + sourceTree = ""; + }; + FD77A0040E26BC0500F39101 /* src */ = { + isa = PBXGroup; + children = ( + FD77A0060E26BC0500F39101 /* common.c */, + FD77A0070E26BC0500F39101 /* common.h */, + FD77A00A0E26BC0500F39101 /* rectangles.c */, + FD77A0080E26BC0500F39101 /* happy.c */, + FD77A0050E26BC0500F39101 /* accelerometer.c */, + FD77A00B0E26BC0500F39101 /* touch.c */, + FD77A0090E26BC0500F39101 /* mixer.c */, + FDB652110E43D21A00F688B5 /* keyboard.c */, + FDC52EE40E284410008D768C /* fireworks.c */, + ); + path = src; + sourceTree = ""; + }; + FDB651C30E43D19800F688B5 /* data */ = { + isa = PBXGroup; + children = ( + FDB651C40E43D19800F688B5 /* bitmapfont */, + FDB651C70E43D19800F688B5 /* drums */, + FDB651CC0E43D19800F688B5 /* icon.bmp */, + FDB651CD0E43D19800F688B5 /* ship.bmp */, + FDB651CE0E43D19800F688B5 /* space.bmp */, + FDB651CF0E43D19800F688B5 /* stroke.bmp */, + ); + path = data; + sourceTree = ""; + }; + FDB651C40E43D19800F688B5 /* bitmapfont */ = { + isa = PBXGroup; + children = ( + FDB652C60E43E25900F688B5 /* kromasky_16x16.bmp */, + FDB651C60E43D19800F688B5 /* license.txt */, + ); + path = bitmapfont; + sourceTree = ""; + }; + FDB651C70E43D19800F688B5 /* drums */ = { + isa = PBXGroup; + children = ( + FDB651C80E43D19800F688B5 /* ds_brush_snare.wav */, + FDB651C90E43D19800F688B5 /* ds_china.wav */, + FDB651CA0E43D19800F688B5 /* ds_kick_big_amb.wav */, + FDB651CB0E43D19800F688B5 /* ds_loose_skin_mute.wav */, + ); + path = drums; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 1D6058900D05DD3D006BFB54 /* Rectangles */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Rectangles" */; + buildPhases = ( + 1D60588D0D05DD3D006BFB54 /* Resources */, + 1D60588E0D05DD3D006BFB54 /* Sources */, + 1D60588F0D05DD3D006BFB54 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 049F3695130CD86800FF080F /* PBXTargetDependency */, + ); + name = Rectangles; + productName = SDLiPodTest; + productReference = 1D6058910D05DD3D006BFB54 /* Rectangles.app */; + productType = "com.apple.product-type.application"; + }; + FD15FCB10E086866003BDF25 /* Happy */ = { + isa = PBXNativeTarget; + buildConfigurationList = FD15FCB70E086867003BDF25 /* Build configuration list for PBXNativeTarget "Happy" */; + buildPhases = ( + FD15FCAE0E086866003BDF25 /* Resources */, + FD15FCAF0E086866003BDF25 /* Sources */, + FD15FCB00E086866003BDF25 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 049F3697130CD87600FF080F /* PBXTargetDependency */, + ); + name = Happy; + productName = BMPTest; + productReference = FD15FCB20E086866003BDF25 /* Happy.app */; + productType = "com.apple.product-type.application"; + }; + FD5F9BE30E0DEBEA008E885B /* Accel */ = { + isa = PBXNativeTarget; + buildConfigurationList = FD5F9BE90E0DEBEB008E885B /* Build configuration list for PBXNativeTarget "Accel" */; + buildPhases = ( + FD5F9BE00E0DEBEA008E885B /* Resources */, + FD5F9BE10E0DEBEA008E885B /* Sources */, + FD5F9BE20E0DEBEA008E885B /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 049F3699130CD87F00FF080F /* PBXTargetDependency */, + ); + name = Accel; + productName = Accelerometer; + productReference = FD5F9BE40E0DEBEA008E885B /* Accel.app */; + productType = "com.apple.product-type.application"; + }; + FDB651F70E43D1F300F688B5 /* Keyboard */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDB652090E43D1F300F688B5 /* Build configuration list for PBXNativeTarget "Keyboard" */; + buildPhases = ( + FDB651F80E43D1F300F688B5 /* Resources */, + FDB651FC0E43D1F300F688B5 /* Sources */, + FDB651FF0E43D1F300F688B5 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 049F36A1130CD8A000FF080F /* PBXTargetDependency */, + ); + name = Keyboard; + productName = Accelerometer; + productReference = FDB6520C0E43D1F300F688B5 /* Keyboard.app */; + productType = "com.apple.product-type.application"; + }; + FDC202DD0E107B1200ABAC90 /* Touch */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDC202EB0E107B1200ABAC90 /* Build configuration list for PBXNativeTarget "Touch" */; + buildPhases = ( + FDC202DE0E107B1200ABAC90 /* Resources */, + FDC202E20E107B1200ABAC90 /* Sources */, + FDC202E40E107B1200ABAC90 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 049F369B130CD88800FF080F /* PBXTargetDependency */, + ); + name = Touch; + productName = Accelerometer; + productReference = FDC202EE0E107B1200ABAC90 /* Touch.app */; + productType = "com.apple.product-type.application"; + }; + FDC52EC60E2843D6008D768C /* Fireworks */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDC52EDB0E2843D6008D768C /* Build configuration list for PBXNativeTarget "Fireworks" */; + buildPhases = ( + FDC52EC70E2843D6008D768C /* Resources */, + FDC52ECE0E2843D6008D768C /* Sources */, + FDC52ED10E2843D6008D768C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 049F369F130CD89800FF080F /* PBXTargetDependency */, + ); + name = Fireworks; + productName = Accelerometer; + productReference = FDC52EDE0E2843D6008D768C /* Fireworks.app */; + productType = "com.apple.product-type.application"; + }; + FDF0D6920E12D05400247964 /* Mixer */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDF0D6A10E12D05400247964 /* Build configuration list for PBXNativeTarget "Mixer" */; + buildPhases = ( + FDF0D6930E12D05400247964 /* Resources */, + FDF0D6980E12D05400247964 /* Sources */, + FDF0D69A0E12D05400247964 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 049F369D130CD89000FF080F /* PBXTargetDependency */, + ); + name = Mixer; + productName = Accelerometer; + productReference = FDF0D6A40E12D05400247964 /* Mixer.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0630; + }; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Demos" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = FD1B48930E313154007AB34E /* Products */; + ProjectRef = FD1B48920E313154007AB34E /* SDL.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 1D6058900D05DD3D006BFB54 /* Rectangles */, + FD15FCB10E086866003BDF25 /* Happy */, + FD5F9BE30E0DEBEA008E885B /* Accel */, + FDC202DD0E107B1200ABAC90 /* Touch */, + FDF0D6920E12D05400247964 /* Mixer */, + FDC52EC60E2843D6008D768C /* Fireworks */, + FDB651F70E43D1F300F688B5 /* Keyboard */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + FD1B489E0E313154007AB34E /* libSDL2.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libSDL2.a; + remoteRef = FD1B489D0E313154007AB34E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 1D60588D0D05DD3D006BFB54 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD925B1B0E0F276600E92347 /* Icon.png in Resources */, + FD787AA20E22A5CC003E8E36 /* Default.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FD15FCAE0E086866003BDF25 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB651D00E43D1AD00F688B5 /* icon.bmp in Resources */, + FD925B1A0E0F276600E92347 /* Icon.png in Resources */, + FD787AA10E22A5CC003E8E36 /* Default.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FD5F9BE00E0DEBEA008E885B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB651D20E43D1B500F688B5 /* space.bmp in Resources */, + FDB651D10E43D1B300F688B5 /* ship.bmp in Resources */, + FD925B190E0F276600E92347 /* Icon.png in Resources */, + FD787AA30E22A5CC003E8E36 /* Default.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDB651F80E43D1F300F688B5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB651F90E43D1F300F688B5 /* stroke.bmp in Resources */, + FDB651FA0E43D1F300F688B5 /* Icon.png in Resources */, + FDB651FB0E43D1F300F688B5 /* Default.png in Resources */, + FDB652C70E43E25900F688B5 /* kromasky_16x16.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC202DE0E107B1200ABAC90 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB651D30E43D1BA00F688B5 /* stroke.bmp in Resources */, + FDC202E10E107B1200ABAC90 /* Icon.png in Resources */, + FD787AA40E22A5CC003E8E36 /* Default.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC52EC70E2843D6008D768C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB651D80E43D1D800F688B5 /* stroke.bmp in Resources */, + FDC52EC80E2843D6008D768C /* Icon.png in Resources */, + FDC52EC90E2843D6008D768C /* Default.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDF0D6930E12D05400247964 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB651D40E43D1C500F688B5 /* ds_brush_snare.wav in Resources */, + FDB651D50E43D1C500F688B5 /* ds_china.wav in Resources */, + FDB651D60E43D1C500F688B5 /* ds_kick_big_amb.wav in Resources */, + FDB651D70E43D1C500F688B5 /* ds_loose_skin_mute.wav in Resources */, + FDF0D6960E12D05400247964 /* Icon.png in Resources */, + FD787AA50E22A5CC003E8E36 /* Default.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 1D60588E0D05DD3D006BFB54 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD77A0130E26BC0500F39101 /* common.c in Sources */, + FD77A0160E26BC0500F39101 /* rectangles.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FD15FCAF0E086866003BDF25 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDC214870E26D78A00DDED23 /* common.c in Sources */, + FD77A00E0E26BC0500F39101 /* happy.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FD5F9BE10E0DEBEA008E885B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD77A0190E26BC0500F39101 /* common.c in Sources */, + FD77A02A0E26BC2700F39101 /* accelerometer.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDB651FC0E43D1F300F688B5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDB651FD0E43D1F300F688B5 /* common.c in Sources */, + FDB652120E43D21A00F688B5 /* keyboard.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC202E20E107B1200ABAC90 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD77A01F0E26BC0500F39101 /* common.c in Sources */, + FD77A0230E26BC0500F39101 /* touch.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC52ECE0E2843D6008D768C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDC52ECF0E2843D6008D768C /* common.c in Sources */, + FDC52EE50E284410008D768C /* fireworks.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDF0D6980E12D05400247964 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD77A0250E26BC0500F39101 /* common.c in Sources */, + FD77A0270E26BC0500F39101 /* mixer.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 049F3695130CD86800FF080F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libSDL; + targetProxy = 049F3694130CD86800FF080F /* PBXContainerItemProxy */; + }; + 049F3697130CD87600FF080F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libSDL; + targetProxy = 049F3696130CD87600FF080F /* PBXContainerItemProxy */; + }; + 049F3699130CD87F00FF080F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libSDL; + targetProxy = 049F3698130CD87F00FF080F /* PBXContainerItemProxy */; + }; + 049F369B130CD88800FF080F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libSDL; + targetProxy = 049F369A130CD88800FF080F /* PBXContainerItemProxy */; + }; + 049F369D130CD89000FF080F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libSDL; + targetProxy = 049F369C130CD89000FF080F /* PBXContainerItemProxy */; + }; + 049F369F130CD89800FF080F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libSDL; + targetProxy = 049F369E130CD89800FF080F /* PBXContainerItemProxy */; + }; + 049F36A1130CD8A000FF080F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libSDL; + targetProxy = 049F36A0130CD8A000FF080F /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 1D6058940D05DD3E006BFB54 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Rectangles; + }; + name = Debug; + }; + 1D6058950D05DD3E006BFB54 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Rectangles; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = ../../include; + ONLY_ACTIVE_ARCH = YES; + PRELINK_LIBS = ""; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + HEADER_SEARCH_PATHS = ../../include; + PRELINK_LIBS = ""; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + FD15FCB50E086866003BDF25 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_DYNAMIC_NO_PIC = NO; + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Happy; + SDKROOT = iphoneos; + }; + name = Debug; + }; + FD15FCB60E086866003BDF25 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Happy; + SDKROOT = iphoneos; + }; + name = Release; + }; + FD5F9BE70E0DEBEB008E885B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Accel; + SDKROOT = iphoneos; + }; + name = Debug; + }; + FD5F9BE80E0DEBEB008E885B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Accel; + SDKROOT = iphoneos; + }; + name = Release; + }; + FDB6520A0E43D1F300F688B5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Keyboard; + SDKROOT = iphoneos; + }; + name = Debug; + }; + FDB6520B0E43D1F300F688B5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Keyboard; + SDKROOT = iphoneos; + }; + name = Release; + }; + FDC202EC0E107B1200ABAC90 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Touch; + SDKROOT = iphoneos; + }; + name = Debug; + }; + FDC202ED0E107B1200ABAC90 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Touch; + SDKROOT = iphoneos; + }; + name = Release; + }; + FDC52EDC0E2843D6008D768C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Fireworks; + SDKROOT = iphoneos; + }; + name = Debug; + }; + FDC52EDD0E2843D6008D768C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Fireworks; + SDKROOT = iphoneos; + }; + name = Release; + }; + FDF0D6A20E12D05400247964 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Mixer; + SDKROOT = iphoneos; + }; + name = Debug; + }; + FDF0D6A30E12D05400247964 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = Mixer; + SDKROOT = iphoneos; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Rectangles" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1D6058940D05DD3E006BFB54 /* Debug */, + 1D6058950D05DD3E006BFB54 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Demos" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FD15FCB70E086867003BDF25 /* Build configuration list for PBXNativeTarget "Happy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FD15FCB50E086866003BDF25 /* Debug */, + FD15FCB60E086866003BDF25 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FD5F9BE90E0DEBEB008E885B /* Build configuration list for PBXNativeTarget "Accel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FD5F9BE70E0DEBEB008E885B /* Debug */, + FD5F9BE80E0DEBEB008E885B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDB652090E43D1F300F688B5 /* Build configuration list for PBXNativeTarget "Keyboard" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDB6520A0E43D1F300F688B5 /* Debug */, + FDB6520B0E43D1F300F688B5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDC202EB0E107B1200ABAC90 /* Build configuration list for PBXNativeTarget "Touch" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDC202EC0E107B1200ABAC90 /* Debug */, + FDC202ED0E107B1200ABAC90 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDC52EDB0E2843D6008D768C /* Build configuration list for PBXNativeTarget "Fireworks" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDC52EDC0E2843D6008D768C /* Debug */, + FDC52EDD0E2843D6008D768C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDF0D6A10E12D05400247964 /* Build configuration list for PBXNativeTarget "Mixer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDF0D6A20E12D05400247964 /* Debug */, + FDF0D6A30E12D05400247964 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/SDL/Xcode-iOS/Demos/Icon.png b/SDL/Xcode-iOS/Demos/Icon.png new file mode 100644 index 0000000..83f4d10 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/Icon.png differ diff --git a/SDL/Xcode-iOS/Demos/Info.plist b/SDL/Xcode-iOS/Demos/Info.plist new file mode 100644 index 0000000..0398f00 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/Info.plist @@ -0,0 +1,30 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.${PRODUCT_NAME:identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + + UISupportedInterfaceOrientations + + + diff --git a/SDL/Xcode-iOS/Demos/README b/SDL/Xcode-iOS/Demos/README new file mode 100644 index 0000000..7f68b42 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/README @@ -0,0 +1,43 @@ +============================================================================== +About the iPhone OS Demo Applications +============================================================================== + +Demos.xcodeproj contains several targets for iPhone oriented SDL demos. These demos are written strictly using SDL 2.0 calls. All the demos except for Fireworks (which requires OpenGL ES) should work on platforms other than iPhone OS, though you'll need to write your own compile script. To run them on your favorite platform, you may wish to set the macros SCREEN_WIDTH and SCREEN_HEIGHT, located in common.h. + +Common files: + + common.c and common.h contain code common to all demo applications. This includes macros about the screen dimensions (in pixels), simple error handling, and functions for generating random numbers. + +Rectangles (rectangles.c): + + Draws randomly sized and colored rectangles all over the screen by using SDL_RenderFill. This is the simplest of all the demos. + +Happy (happy.c): + + Loads the classic happy-face bitmap and draws a large number of happy faces bouncing around the screen. Shows how you can load a bitmap into an SDL_Texture. + +Accelerometer (accelerometer.c): + + Uses the iPhone's accelerometer as a joystick device to move a spaceship around the screen. Note the use of the macro SDL_IPHONE_MAX_GFORCE (normally defined in SDL_config_iphoneos.h) which converts between the Sint16 number returned by SDL_JoystickGetAxis, and the floating point units of g-force reported natively by the iPhone. + +Touch (touch.c): + + Acts as a finger-paint type program. Demonstrates how you can use SDL mouse input to accept touch input from the iPhone. If SDL for iPhone is compiled with multitouch as multiple mouse emulation (SDL_IPHONE_MULTIPLE_MICE in SDL_config_iphoneos.h) then the program will accept multiple finger inputs simultaneously. + +Mixer (mixer.c): + + Displays several rectangular buttons which can be used as a virtual drumkit. Demonstrates how you can play .wav sounds in SDL and how you can use SDL_MixAudioFormat to build a software mixer that can play multiple sounds at once. + +Keyboard (keyboard.c): + + Loads a bitmap font and let's the user type words, numbers, and symbols using the iPhone's virtual keyboard. The iPhone's onscreen keyboard visibility is toggled when the user taps the screen. If the user types ':)' a happy face is displayed. Demonstrates how to use functions added to the iPhone implementation of SDL to toggle keyboard onscreen visibility. + +Fireworks (fireworks.c): + + Displays a fireworks show. When you tap the iPhone's screen, fireworks fly from the bottom of the screen and explode at the point that you tapped. Demonstrates how you can use SDL on iPhone to build an OpenGL ES based application. Shows you how you can use SDL_LoadBMP to load a bmp image and convert it to an OpenGL ES texture. Of lesser importance, shows how you can use OpenGL ES point sprites to build an efficient particle system. + +============================================================================== +Building and Running the demos +============================================================================== + +Before building the demos you must first build SDL as a static library for BOTH the iPhone Simulator and the iPhone itself. See the iPhone SDL main README file for directions on how to do this. Once this is done, simply launch XCode, select the target you'd like to build, select the active SDK (simulator or device), and then build and go. diff --git a/SDL/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp b/SDL/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp new file mode 100644 index 0000000..c0b6fb9 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/bitmapfont/kromasky_16x16.bmp differ diff --git a/SDL/Xcode-iOS/Demos/data/bitmapfont/license.txt b/SDL/Xcode-iOS/Demos/data/bitmapfont/license.txt new file mode 100755 index 0000000..6949ec4 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/data/bitmapfont/license.txt @@ -0,0 +1,258 @@ + __ _ _ + / _| | | | | +| |_ ___ _ __ | |_ _ __ __ _ ___| | __ +| _/ _ \| '_ \| __| '_ \ / _` |/ __| |/ / +| || (_) | | | | |_| |_) | (_| | (__| < +|_| \___/|_| |_|\__| .__/ \__,_|\___|_|\_\ + | | + |_| +---------------------------------------------------------------------- +Product : font-pack.zip +Website : http://www.spicypixel.net +Author : Marc Russell +Released: 16th January 2008 +---------------------------------------------------------------------- + +What is this? +------------- +font-pack is a package of free art assets to be used under the terms of this document. It is available to game developers and hobbyists alike. + +Contents +-------- +The contents of the font-pack ZIP file include 20 bitmap fonts + +Usage License & Restrictions +---------------------------- +font-pack is distributed under the "Common Public License Version 1.0." +The terms of which are given below. If you do not understand the terms of the license please refer to a solicitor. It should however, be relatively clear how this package can be used. + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON +PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF +THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial code and + documentation distributed under this Agreement, and + + b) in the case of each subsequent Contributor: + + i) changes to the Program, and + + ii) additions to the Program; + + where such changes and/or additions to the Program originate from + and are distributed by that particular Contributor. A Contribution + 'originates' from a Contributor if it was added to the Program by + such Contributor itself or anyone acting on such Contributor's + behalf. Contributions do not include additions to the Program which: + (i) are separate modules of software distributed in conjunction with + the Program under their own license agreement, and (ii) are not + derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents " mean patent claims licensable by a Contributor which +are necessarily infringed by the use or sale of its Contribution alone +or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free copyright + license to reproduce, prepare derivative works of, publicly display, + publicly perform, distribute and sublicense the Contribution of such + Contributor, if any, and such derivative works, in source code and + object code form. + + b) Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free patent + license under Licensed Patents to make, use, sell, offer to sell, + import and otherwise transfer the Contribution of such Contributor, + if any, in source code and object code form. This patent license + shall apply to the combination of the Contribution and the Program + if, at the time the Contribution is added by the Contributor, such + addition of the Contribution causes such combination to be covered + by the Licensed Patents. The patent license shall not apply to any + other combinations which include the Contribution. No hardware per + se is licensed hereunder. + + c) Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Program does not infringe the + patent or other intellectual property rights of any other entity. + Each Contributor disclaims any liability to Recipient for claims + brought by any other entity based on infringement of intellectual + property rights or otherwise. As a condition to exercising the + rights and licenses granted hereunder, each Recipient hereby assumes + sole responsibility to secure any other intellectual property rights + needed, if any. For example, if a third party patent license is + required to allow Recipient to distribute the Program, it is + Recipient's responsibility to acquire that license before + distributing the Program. + + d) Each Contributor represents that to its knowledge it has + sufficient copyright rights in its Contribution, if any, to grant + the copyright license set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form +under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + + b) its license agreement: + + i) effectively disclaims on behalf of all Contributors all + warranties and conditions, express and implied, including warranties + or conditions of title and non-infringement, and implied warranties + or conditions of merchantability and fitness for a particular + purpose; + + ii) effectively excludes on behalf of all Contributors all liability + for damages, including direct, indirect, special, incidental and + consequential damages, such as lost profits; + + iii) states that any provisions which differ from this Agreement are + offered by that Contributor alone and not by any other party; and + + iv) states that source code for the Program is available from such + Contributor, and informs licensees how to obtain it in a reasonable + manner on or through a medium customarily used for software + exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + + b) a copy of this Agreement must be included with each copy of the + Program. + +Contributors may not remove or alter any copyright notices contained +within the Program. + +Each Contributor must identify itself as the originator of its +Contribution, if any, in a manner that reasonably allows subsequent +Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities +with respect to end users, business partners and the like. While this +license is intended to facilitate the commercial use of the Program, the +Contributor who includes the Program in a commercial product offering +should do so in a manner which does not create potential liability for +other Contributors. Therefore, if a Contributor includes the Program in +a commercial product offering, such Contributor ("Commercial +Contributor") hereby agrees to defend and indemnify every other +Contributor ("Indemnified Contributor") against any losses, damages and +costs (collectively "Losses") arising from claims, lawsuits and other +legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such +Commercial Contributor in connection with its distribution of the +Program in a commercial product offering. The obligations in this +section do not apply to any claims or Losses relating to any actual or +alleged intellectual property infringement. In order to qualify, an +Indemnified Contributor must: a) promptly notify the Commercial +Contributor in writing of such claim, and b) allow the Commercial +Contributor to control, and cooperate with the Commercial Contributor +in, the defense and any related settlement negotiations. The Indemnified +Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial +product offering, Product X. That Contributor is then a Commercial +Contributor. If that Commercial Contributor then makes performance +claims, or offers warranties related to Product X, those performance +claims and warranties are such Commercial Contributor's responsibility +alone. Under this section, the Commercial Contributor would have to +defend claims against the other Contributors related to those +performance claims and warranties, and if a court requires any other +Contributor to pay any damages as a result, the Commercial Contributor +must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED +ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES +OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR +A PARTICULAR PURPOSE. Each Recipient is solely responsible for +determining the appropriateness of using and distributing the Program +and assumes all risks associated with its exercise of rights under this +Agreement, including but not limited to the risks and costs of program +errors, compliance with applicable laws, damage to or loss of data, +programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR +ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING +WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR +DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED +HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of +the remainder of the terms of this Agreement, and without further action +by the parties hereto, such provision shall be reformed to the minimum +extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against a Contributor with +respect to a patent applicable to software (including a cross-claim or +counterclaim in a lawsuit), then any patent licenses granted by that +Contributor to such Recipient under this Agreement shall terminate as of +the date such litigation is filed. In addition, if Recipient institutes +patent litigation against any entity (including a cross-claim or +counterclaim in a lawsuit) alleging that the Program itself (excluding +combinations of the Program with other software or hardware) infringes +such Recipient's patent(s), then such Recipient's rights granted under +Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails +to comply with any of the material terms or conditions of this Agreement +and does not cure such failure in a reasonable period of time after +becoming aware of such noncompliance. If all Recipient's rights under +this Agreement terminate, Recipient agrees to cease use and distribution +of the Program as soon as reasonably practicable. However, Recipient's +obligations under this Agreement and any licenses granted by Recipient +relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, +but in order to avoid inconsistency the Agreement is copyrighted and may +only be modified in the following manner. The Agreement Steward reserves +the right to publish new versions (including revisions) of this +Agreement from time to time. No one other than the Agreement Steward has +the right to modify this Agreement. IBM is the initial Agreement +Steward. IBM may assign the responsibility to serve as the Agreement +Steward to a suitable separate entity. Each new version of the Agreement +will be given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version of the +Agreement under which it was received. In addition, after a new version +of the Agreement is published, Contributor may elect to distribute the +Program (including its Contributions) under the new version. Except as +expressly stated in Sections 2(a) and 2(b) above, Recipient receives no +rights or licenses to the intellectual property of any Contributor under +this Agreement, whether expressly, by implication, estoppel or +otherwise. All rights in the Program not expressly granted under this +Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to +this Agreement will bring a legal action under this Agreement more than +one year after the cause of action arose. Each party waives its rights +to a jury trial in any resulting litigation. + diff --git a/SDL/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav b/SDL/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav new file mode 100644 index 0000000..fa75263 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/drums/ds_brush_snare.wav differ diff --git a/SDL/Xcode-iOS/Demos/data/drums/ds_china.wav b/SDL/Xcode-iOS/Demos/data/drums/ds_china.wav new file mode 100644 index 0000000..21a71a1 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/drums/ds_china.wav differ diff --git a/SDL/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav b/SDL/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav new file mode 100644 index 0000000..404115a Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/drums/ds_kick_big_amb.wav differ diff --git a/SDL/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav b/SDL/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav new file mode 100644 index 0000000..3db0522 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/drums/ds_loose_skin_mute.wav differ diff --git a/SDL/Xcode-iOS/Demos/data/icon.bmp b/SDL/Xcode-iOS/Demos/data/icon.bmp new file mode 100644 index 0000000..cc96356 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/icon.bmp differ diff --git a/SDL/Xcode-iOS/Demos/data/ship.bmp b/SDL/Xcode-iOS/Demos/data/ship.bmp new file mode 100644 index 0000000..b682dc4 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/ship.bmp differ diff --git a/SDL/Xcode-iOS/Demos/data/space.bmp b/SDL/Xcode-iOS/Demos/data/space.bmp new file mode 100644 index 0000000..5bcf273 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/space.bmp differ diff --git a/SDL/Xcode-iOS/Demos/data/stroke.bmp b/SDL/Xcode-iOS/Demos/data/stroke.bmp new file mode 100644 index 0000000..d59fed4 Binary files /dev/null and b/SDL/Xcode-iOS/Demos/data/stroke.bmp differ diff --git a/SDL/Xcode-iOS/Demos/src/accelerometer.c b/SDL/Xcode-iOS/Demos/src/accelerometer.c new file mode 100644 index 0000000..9ff61ae --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/accelerometer.c @@ -0,0 +1,240 @@ +/* + * accelerometer.c + * written by Holmes Futrell + * use however you want + */ + +#include "SDL.h" +#include "math.h" +#include "common.h" + +#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */ +#define DAMPING 0.5f; /* after bouncing off a wall, damping coefficient determines final speed */ +#define FRICTION 0.0008f /* coefficient of acceleration that opposes direction of motion */ +#define GRAVITY_CONSTANT 0.004f /* how sensitive the ship is to the accelerometer */ + +/* If we aren't on an iPhone, then this definition ought to yield reasonable behavior */ +#ifndef SDL_IPHONE_MAX_GFORCE +#define SDL_IPHONE_MAX_GFORCE 5.0f +#endif + +static SDL_Joystick *accelerometer; /* used for controlling the ship */ + +static struct +{ + float x, y; /* position of ship */ + float vx, vy; /* velocity of ship (in pixels per millesecond) */ + SDL_Rect rect; /* (drawn) position and size of ship */ +} shipData; + +static SDL_Texture *ship = 0; /* texture for spaceship */ +static SDL_Texture *space = 0; /* texture for space (background */ + +void +render(SDL_Renderer *renderer, int w, int h) +{ + + float speed; + + /* get joystick (accelerometer) axis values and normalize them */ + float ax = SDL_JoystickGetAxis(accelerometer, 0); + float ay = SDL_JoystickGetAxis(accelerometer, 1); + + /* ship screen constraints */ + Uint32 minx = 0.0f; + Uint32 maxx = w - shipData.rect.w; + Uint32 miny = 0.0f; + Uint32 maxy = h - shipData.rect.h; + +#define SINT16_MAX ((float)(0x7FFF)) + + /* update velocity from accelerometer + the factor SDL_IPHONE_MAX_G_FORCE / SINT16_MAX converts between + SDL's units reported from the joytick, and units of g-force, as reported by the accelerometer + */ + shipData.vx += + ax * SDL_IPHONE_MAX_GFORCE / SINT16_MAX * GRAVITY_CONSTANT * + MILLESECONDS_PER_FRAME; + shipData.vy += + ay * SDL_IPHONE_MAX_GFORCE / SINT16_MAX * GRAVITY_CONSTANT * + MILLESECONDS_PER_FRAME; + + speed = sqrt(shipData.vx * shipData.vx + shipData.vy * shipData.vy); + + if (speed > 0) { + /* compensate for friction */ + float dirx = shipData.vx / speed; /* normalized x velocity */ + float diry = shipData.vy / speed; /* normalized y velocity */ + + /* update velocity due to friction */ + if (speed - FRICTION * MILLESECONDS_PER_FRAME > 0) { + /* apply friction */ + shipData.vx -= dirx * FRICTION * MILLESECONDS_PER_FRAME; + shipData.vy -= diry * FRICTION * MILLESECONDS_PER_FRAME; + } else { + /* applying friction would MORE than stop the ship, so just stop the ship */ + shipData.vx = 0.0f; + shipData.vy = 0.0f; + } + } + + /* update ship location */ + shipData.x += shipData.vx * MILLESECONDS_PER_FRAME; + shipData.y += shipData.vy * MILLESECONDS_PER_FRAME; + + if (shipData.x > maxx) { + shipData.x = maxx; + shipData.vx = -shipData.vx * DAMPING; + } else if (shipData.x < minx) { + shipData.x = minx; + shipData.vx = -shipData.vx * DAMPING; + } + if (shipData.y > maxy) { + shipData.y = maxy; + shipData.vy = -shipData.vy * DAMPING; + } else if (shipData.y < miny) { + shipData.y = miny; + shipData.vy = -shipData.vy * DAMPING; + } + + /* draw the background */ + SDL_RenderCopy(renderer, space, NULL, NULL); + + /* draw the ship */ + shipData.rect.x = shipData.x; + shipData.rect.y = shipData.y; + + SDL_RenderCopy(renderer, ship, NULL, &shipData.rect); + + /* update screen */ + SDL_RenderPresent(renderer); + +} + +void +initializeTextures(SDL_Renderer *renderer) +{ + + SDL_Surface *bmp_surface; + + /* load the ship */ + bmp_surface = SDL_LoadBMP("ship.bmp"); + if (bmp_surface == NULL) { + fatalError("could not ship.bmp"); + } + /* set blue to transparent on the ship */ + SDL_SetColorKey(bmp_surface, 1, + SDL_MapRGB(bmp_surface->format, 0, 0, 255)); + + /* create ship texture from surface */ + ship = SDL_CreateTextureFromSurface(renderer, bmp_surface); + if (ship == 0) { + fatalError("could not create ship texture"); + } + SDL_SetTextureBlendMode(ship, SDL_BLENDMODE_BLEND); + + /* set the width and height of the ship from the surface dimensions */ + shipData.rect.w = bmp_surface->w; + shipData.rect.h = bmp_surface->h; + + SDL_FreeSurface(bmp_surface); + + /* load the space background */ + bmp_surface = SDL_LoadBMP("space.bmp"); + if (bmp_surface == NULL) { + fatalError("could not load space.bmp"); + } + /* create space texture from surface */ + space = SDL_CreateTextureFromSurface(renderer, bmp_surface); + if (space == 0) { + fatalError("could not create space texture"); + } + SDL_FreeSurface(bmp_surface); + +} + + + +int +main(int argc, char *argv[]) +{ + + SDL_Window *window; /* main window */ + SDL_Renderer *renderer; + Uint32 startFrame; /* time frame began to process */ + Uint32 endFrame; /* time frame ended processing */ + Sint32 delay; /* time to pause waiting to draw next frame */ + int done; /* should we clean up and exit? */ + int w, h; + + /* initialize SDL */ + if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) { + fatalError("Could not initialize SDL"); + } + + /* create main window and renderer */ + window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, + SDL_WINDOW_OPENGL | + SDL_WINDOW_FULLSCREEN); + renderer = SDL_CreateRenderer(window, 0, 0); + + SDL_GetWindowSize(window, &w, &h); + + /* print out some info about joysticks and try to open accelerometer for use */ + printf("There are %d joysticks available\n", SDL_NumJoysticks()); + printf("Default joystick (index 0) is %s\n", SDL_JoystickName(0)); + accelerometer = SDL_JoystickOpen(0); + if (accelerometer == NULL) { + fatalError("Could not open joystick (accelerometer)"); + } + printf("joystick number of axis = %d\n", + SDL_JoystickNumAxes(accelerometer)); + printf("joystick number of hats = %d\n", + SDL_JoystickNumHats(accelerometer)); + printf("joystick number of balls = %d\n", + SDL_JoystickNumBalls(accelerometer)); + printf("joystick number of buttons = %d\n", + SDL_JoystickNumButtons(accelerometer)); + + /* load graphics */ + initializeTextures(renderer); + + /* setup ship */ + shipData.x = (w - shipData.rect.w) / 2; + shipData.y = (h - shipData.rect.h) / 2; + shipData.vx = 0.0f; + shipData.vy = 0.0f; + + done = 0; + /* enter main loop */ + while (!done) { + SDL_Event event; + startFrame = SDL_GetTicks(); + while (SDL_PollEvent(&event)) { + if (event.type == SDL_QUIT) { + done = 1; + } + } + render(renderer, w, h); + endFrame = SDL_GetTicks(); + + /* figure out how much time we have left, and then sleep */ + delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame); + if (delay < 0) { + delay = 0; + } else if (delay > MILLESECONDS_PER_FRAME) { + delay = MILLESECONDS_PER_FRAME; + } + SDL_Delay(delay); + } + + /* delete textures */ + SDL_DestroyTexture(ship); + SDL_DestroyTexture(space); + + /* shutdown SDL */ + SDL_Quit(); + + return 0; + +} diff --git a/SDL/Xcode-iOS/Demos/src/common.c b/SDL/Xcode-iOS/Demos/src/common.c new file mode 100644 index 0000000..b2d9634 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/common.c @@ -0,0 +1,36 @@ +/* + * common.c + * written by Holmes Futrell + * use however you want + */ + +#include "common.h" +#include "SDL.h" +#include + +/* + Produces a random int x, min <= x <= max + following a uniform distribution +*/ +int +randomInt(int min, int max) +{ + return min + rand() % (max - min + 1); +} + +/* + Produces a random float x, min <= x <= max + following a uniform distribution + */ +float +randomFloat(float min, float max) +{ + return rand() / (float) RAND_MAX *(max - min) + min; +} + +void +fatalError(const char *string) +{ + printf("%s: %s\n", string, SDL_GetError()); + exit(1); +} diff --git a/SDL/Xcode-iOS/Demos/src/common.h b/SDL/Xcode-iOS/Demos/src/common.h new file mode 100644 index 0000000..3e0d94e --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/common.h @@ -0,0 +1,12 @@ +/* + * common.h + * written by Holmes Futrell + * use however you want + */ + +#define SCREEN_WIDTH 320 +#define SCREEN_HEIGHT 480 + +extern int randomInt(int min, int max); +extern float randomFloat(float min, float max); +extern void fatalError(const char *string); diff --git a/SDL/Xcode-iOS/Demos/src/fireworks.c b/SDL/Xcode-iOS/Demos/src/fireworks.c new file mode 100644 index 0000000..a5beada --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/fireworks.c @@ -0,0 +1,478 @@ +/* + * fireworks.c + * written by Holmes Futrell + * use however you want + */ + +#include "SDL.h" +#include "SDL_opengles.h" +#include "common.h" +#include +#include + +#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */ +#define ACCEL 0.0001f /* acceleration due to gravity, units in pixels per millesecond squared */ +#define WIND_RESISTANCE 0.00005f /* acceleration per unit velocity due to wind resistance */ +#define MAX_PARTICLES 2000 /* maximum number of particles displayed at once */ + +static GLuint particleTextureID; /* OpenGL particle texture id */ +static SDL_bool pointSizeExtensionSupported; /* is GL_OES_point_size_array supported ? */ +/* + used to describe what type of particle a given struct particle is. + emitter - this particle flies up, shooting off trail particles, then finally explodes into dust particles. + trail - shoots off, following emitter particle + dust - radiates outwards from emitter explosion +*/ +enum particleType +{ + emitter = 0, + trail, + dust +}; +/* + struct particle is used to describe each particle displayed on screen +*/ +struct particle +{ + GLfloat x; /* x position of particle */ + GLfloat y; /* y position of particle */ + GLubyte color[4]; /* rgba color of particle */ + GLfloat size; /* size of particle in pixels */ + GLfloat xvel; /* x velocity of particle in pixels per milesecond */ + GLfloat yvel; /* y velocity of particle in pixels per millescond */ + int isActive; /* if not active, then particle is overwritten */ + enum particleType type; /* see enum particleType */ +} particles[MAX_PARTICLES]; /* this array holds all our particles */ + +static int num_active_particles; /* how many members of the particle array are actually being drawn / animated? */ +static int screen_w, screen_h; + +/* function declarations */ +void spawnTrailFromEmitter(struct particle *emitter); +void spawnEmitterParticle(GLfloat x, GLfloat y); +void explodeEmitter(struct particle *emitter); +void initializeParticles(void); +void initializeTexture(); +int nextPowerOfTwo(int x); +void drawParticles(); +void stepParticles(void); + +/* helper function (used in texture loading) + returns next power of two greater than or equal to x +*/ +int +nextPowerOfTwo(int x) +{ + int val = 1; + while (val < x) { + val *= 2; + } + return val; +} + +/* + steps each active particle by timestep MILLESECONDS_PER_FRAME +*/ +void +stepParticles(void) +{ + int i; + struct particle *slot = particles; + struct particle *curr = particles; + for (i = 0; i < num_active_particles; i++) { + /* is the particle actually active, or is it marked for deletion? */ + if (curr->isActive) { + /* is the particle off the screen? */ + if (curr->y > screen_h) + curr->isActive = 0; + else if (curr->y < 0) + curr->isActive = 0; + if (curr->x > screen_w) + curr->isActive = 0; + else if (curr->x < 0) + curr->isActive = 0; + + /* step velocity, then step position */ + curr->yvel += ACCEL * MILLESECONDS_PER_FRAME; + curr->xvel += 0.0f; + curr->y += curr->yvel * MILLESECONDS_PER_FRAME; + curr->x += curr->xvel * MILLESECONDS_PER_FRAME; + + /* particle behavior */ + if (curr->type == emitter) { + /* if we're an emitter, spawn a trail */ + spawnTrailFromEmitter(curr); + /* if we've reached our peak, explode */ + if (curr->yvel > 0.0) { + explodeEmitter(curr); + } + } else { + float speed = + sqrt(curr->xvel * curr->xvel + curr->yvel * curr->yvel); + /* if wind resistance is not powerful enough to stop us completely, + then apply winde resistance, otherwise just stop us completely */ + if (WIND_RESISTANCE * MILLESECONDS_PER_FRAME < speed) { + float normx = curr->xvel / speed; + float normy = curr->yvel / speed; + curr->xvel -= + normx * WIND_RESISTANCE * MILLESECONDS_PER_FRAME; + curr->yvel -= + normy * WIND_RESISTANCE * MILLESECONDS_PER_FRAME; + } else { + curr->xvel = curr->yvel = 0; /* stop particle */ + } + + if (curr->color[3] <= MILLESECONDS_PER_FRAME * 0.1275f) { + /* if this next step will cause us to fade out completely + then just mark for deletion */ + curr->isActive = 0; + } else { + /* otherwise, let's fade a bit more */ + curr->color[3] -= MILLESECONDS_PER_FRAME * 0.1275f; + } + + /* if we're a dust particle, shrink our size */ + if (curr->type == dust) + curr->size -= MILLESECONDS_PER_FRAME * 0.010f; + + } + + /* if we're still active, pack ourselves in the array next + to the last active guy (pack the array tightly) */ + if (curr->isActive) + *(slot++) = *curr; + } /* endif (curr->isActive) */ + curr++; + } + /* the number of active particles is computed as the difference between + old number of active particles, where slot points, and the + new size of the array, where particles points */ + num_active_particles = slot - particles; +} + +/* + This draws all the particles shown on screen +*/ +void +drawParticles() +{ + + /* draw the background */ + glClear(GL_COLOR_BUFFER_BIT); + + /* set up the position and color pointers */ + glVertexPointer(2, GL_FLOAT, sizeof(struct particle), particles); + glColorPointer(4, GL_UNSIGNED_BYTE, sizeof(struct particle), + particles[0].color); + + if (pointSizeExtensionSupported) { + /* pass in our array of point sizes */ + glPointSizePointerOES(GL_FLOAT, sizeof(struct particle), + &(particles[0].size)); + } + + /* draw our particles! */ + glDrawArrays(GL_POINTS, 0, num_active_particles); + +} + +/* + This causes an emitter to explode in a circular bloom of dust particles +*/ +void +explodeEmitter(struct particle *emitter) +{ + /* first off, we're done with this particle, so turn active off */ + emitter->isActive = 0; + int i; + for (i = 0; i < 200; i++) { + + if (num_active_particles >= MAX_PARTICLES) + return; + + /* come up with a random angle and speed for new particle */ + float theta = randomFloat(0, 2.0f * 3.141592); + float exponent = 3.0f; + float speed = randomFloat(0.00, powf(0.17, exponent)); + speed = powf(speed, 1.0f / exponent); + + /* select the particle at the end of our array */ + struct particle *p = &particles[num_active_particles]; + + /* set the particles properties */ + p->xvel = speed * cos(theta); + p->yvel = speed * sin(theta); + p->x = emitter->x + emitter->xvel; + p->y = emitter->y + emitter->yvel; + p->isActive = 1; + p->type = dust; + p->size = 15; + /* inherit emitter's color */ + p->color[0] = emitter->color[0]; + p->color[1] = emitter->color[1]; + p->color[2] = emitter->color[2]; + p->color[3] = 255; + /* our array has expanded at the end */ + num_active_particles++; + } + +} + +/* + This spawns a trail particle from an emitter +*/ +void +spawnTrailFromEmitter(struct particle *emitter) +{ + + if (num_active_particles >= MAX_PARTICLES) + return; + + /* select the particle at the slot at the end of our array */ + struct particle *p = &particles[num_active_particles]; + + /* set position and velocity to roughly that of the emitter */ + p->x = emitter->x + randomFloat(-3.0, 3.0); + p->y = emitter->y + emitter->size / 2.0f; + p->xvel = emitter->xvel + randomFloat(-0.005, 0.005); + p->yvel = emitter->yvel + 0.1; + + /* set the color to a random-ish orangy type color */ + p->color[0] = (0.8f + randomFloat(-0.1, 0.0)) * 255; + p->color[1] = (0.4f + randomFloat(-0.1, 0.1)) * 255; + p->color[2] = (0.0f + randomFloat(0.0, 0.2)) * 255; + p->color[3] = (0.7f) * 255; + + /* set other attributes */ + p->size = 10; + p->type = trail; + p->isActive = 1; + + /* our array has expanded at the end */ + num_active_particles++; + +} + +/* + spawns a new emitter particle at the bottom of the screen + destined for the point (x,y). +*/ +void +spawnEmitterParticle(GLfloat x, GLfloat y) +{ + + if (num_active_particles >= MAX_PARTICLES) + return; + + /* find particle at endpoint of array */ + struct particle *p = &particles[num_active_particles]; + + /* set the color randomly */ + switch (rand() % 4) { + case 0: + p->color[0] = 255; + p->color[1] = 100; + p->color[2] = 100; + break; + case 1: + p->color[0] = 100; + p->color[1] = 255; + p->color[2] = 100; + break; + case 2: + p->color[0] = 100; + p->color[1] = 100; + p->color[2] = 255; + break; + case 3: + p->color[0] = 255; + p->color[1] = 150; + p->color[2] = 50; + break; + } + p->color[3] = 255; + /* set position to (x, screen_h) */ + p->x = x; + p->y = screen_h; + /* set velocity so that terminal point is (x,y) */ + p->xvel = 0; + p->yvel = -sqrt(2 * ACCEL * (screen_h - y)); + /* set other attributes */ + p->size = 10; + p->type = emitter; + p->isActive = 1; + /* our array has expanded at the end */ + num_active_particles++; +} + +/* just sets the endpoint of the particle array to element zero */ +void +initializeParticles(void) +{ + num_active_particles = 0; +} + +/* + loads the particle texture + */ +void +initializeTexture() +{ + + int bpp; /* texture bits per pixel */ + Uint32 Rmask, Gmask, Bmask, Amask; /* masks for pixel format passed into OpenGL */ + SDL_Surface *bmp_surface; /* the bmp is loaded here */ + SDL_Surface *bmp_surface_rgba8888; /* this serves as a destination to convert the BMP + to format passed into OpenGL */ + + bmp_surface = SDL_LoadBMP("stroke.bmp"); + if (bmp_surface == NULL) { + fatalError("could not load stroke.bmp"); + } + + /* Grab info about format that will be passed into OpenGL */ + SDL_PixelFormatEnumToMasks(SDL_PIXELFORMAT_ABGR8888, &bpp, &Rmask, &Gmask, + &Bmask, &Amask); + /* Create surface that will hold pixels passed into OpenGL */ + bmp_surface_rgba8888 = + SDL_CreateRGBSurface(0, bmp_surface->w, bmp_surface->h, bpp, Rmask, + Gmask, Bmask, Amask); + /* Blit to this surface, effectively converting the format */ + SDL_BlitSurface(bmp_surface, NULL, bmp_surface_rgba8888, NULL); + + glGenTextures(1, &particleTextureID); + glBindTexture(GL_TEXTURE_2D, particleTextureID); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, + nextPowerOfTwo(bmp_surface->w), + nextPowerOfTwo(bmp_surface->h), + 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); + /* this is where we actually pass in the pixel data */ + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bmp_surface->w, bmp_surface->h, 0, + GL_RGBA, GL_UNSIGNED_BYTE, bmp_surface_rgba8888->pixels); + + /* free bmp surface and converted bmp surface */ + SDL_FreeSurface(bmp_surface); + SDL_FreeSurface(bmp_surface_rgba8888); + +} + +int +main(int argc, char *argv[]) +{ + SDL_Window *window; /* main window */ + SDL_GLContext context; + int w, h; + Uint32 startFrame; /* time frame began to process */ + Uint32 endFrame; /* time frame ended processing */ + Uint32 delay; /* time to pause waiting to draw next frame */ + int done; /* should we clean up and exit? */ + + /* initialize SDL */ + if (SDL_Init(SDL_INIT_VIDEO) < 0) { + fatalError("Could not initialize SDL"); + } + /* seed the random number generator */ + srand(time(NULL)); + /* + request some OpenGL parameters + that may speed drawing + */ + SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5); + SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 6); + SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 5); + SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0); + SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0); + SDL_GL_SetAttribute(SDL_GL_RETAINED_BACKING, 0); + SDL_GL_SetAttribute(SDL_GL_ACCELERATED_VISUAL, 1); + + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 1); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1); + + /* create main window and renderer */ + window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, + SDL_WINDOW_OPENGL | + SDL_WINDOW_BORDERLESS); + context = SDL_GL_CreateContext(window); + + /* load the particle texture */ + initializeTexture(); + + /* check if GL_POINT_SIZE_ARRAY_OES is supported + this is used to give each particle its own size + */ + pointSizeExtensionSupported = + SDL_GL_ExtensionSupported("GL_OES_point_size_array"); + + /* set up some OpenGL state */ + glDisable(GL_DEPTH_TEST); + glDisable(GL_CULL_FACE); + + glMatrixMode(GL_MODELVIEW); + glLoadIdentity(); + + SDL_GetWindowSize(window, &screen_w, &screen_h); + glViewport(0, 0, screen_w, screen_h); + + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); + glOrthof((GLfloat) 0, + (GLfloat) screen_w, + (GLfloat) screen_h, + (GLfloat) 0, 0.0, 1.0); + + glEnable(GL_TEXTURE_2D); + glEnable(GL_BLEND); + glBlendFunc(GL_SRC_ALPHA, GL_ONE); + glEnableClientState(GL_VERTEX_ARRAY); + glEnableClientState(GL_COLOR_ARRAY); + + glEnable(GL_POINT_SPRITE_OES); + glTexEnvi(GL_POINT_SPRITE_OES, GL_COORD_REPLACE_OES, 1); + + if (pointSizeExtensionSupported) { + /* we use this to set the sizes of all the particles */ + glEnableClientState(GL_POINT_SIZE_ARRAY_OES); + } else { + /* if extension not available then all particles have size 10 */ + glPointSize(10); + } + + done = 0; + /* enter main loop */ + while (!done) { + startFrame = SDL_GetTicks(); + SDL_Event event; + while (SDL_PollEvent(&event)) { + if (event.type == SDL_QUIT) { + done = 1; + } + if (event.type == SDL_MOUSEBUTTONDOWN) { + int x, y; + SDL_GetMouseState(&x, &y); + spawnEmitterParticle(x, y); + } + } + stepParticles(); + drawParticles(); + SDL_GL_SwapWindow(window); + endFrame = SDL_GetTicks(); + + /* figure out how much time we have left, and then sleep */ + delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame); + if (delay > MILLESECONDS_PER_FRAME) { + delay = MILLESECONDS_PER_FRAME; + } + if (delay > 0) { + SDL_Delay(delay); + } + } + + /* delete textures */ + glDeleteTextures(1, &particleTextureID); + /* shutdown SDL */ + SDL_Quit(); + + return 0; +} diff --git a/SDL/Xcode-iOS/Demos/src/happy.c b/SDL/Xcode-iOS/Demos/src/happy.c new file mode 100644 index 0000000..c8a7ec3 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/happy.c @@ -0,0 +1,177 @@ +/* + * happy.c + * written by Holmes Futrell + * use however you want + */ + +#include "SDL.h" +#include "common.h" + +#define NUM_HAPPY_FACES 100 /* number of faces to draw */ +#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */ +#define HAPPY_FACE_SIZE 32 /* width and height of happyface (pixels) */ + +static SDL_Texture *texture = 0; /* reference to texture holding happyface */ + +static struct +{ + float x, y; /* position of happyface */ + float xvel, yvel; /* velocity of happyface */ +} faces[NUM_HAPPY_FACES]; + +/* + Sets initial positions and velocities of happyfaces + units of velocity are pixels per millesecond +*/ +void +initializeHappyFaces() +{ + int i; + for (i = 0; i < NUM_HAPPY_FACES; i++) { + faces[i].x = randomFloat(0.0f, SCREEN_WIDTH - HAPPY_FACE_SIZE); + faces[i].y = randomFloat(0.0f, SCREEN_HEIGHT - HAPPY_FACE_SIZE); + faces[i].xvel = randomFloat(-0.1f, 0.1f); + faces[i].yvel = randomFloat(-0.1f, 0.1f); + } +} + +void +render(SDL_Renderer *renderer) +{ + + int i; + SDL_Rect srcRect; + SDL_Rect dstRect; + + /* setup boundaries for happyface bouncing */ + Uint16 maxx = SCREEN_WIDTH - HAPPY_FACE_SIZE; + Uint16 maxy = SCREEN_HEIGHT - HAPPY_FACE_SIZE; + Uint16 minx = 0; + Uint16 miny = 0; + + /* setup rects for drawing */ + srcRect.x = 0; + srcRect.y = 0; + srcRect.w = HAPPY_FACE_SIZE; + srcRect.h = HAPPY_FACE_SIZE; + dstRect.w = HAPPY_FACE_SIZE; + dstRect.h = HAPPY_FACE_SIZE; + + /* fill background in with black */ + SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); + SDL_RenderClear(renderer); + + /* + loop through all the happy faces: + - update position + - update velocity (if boundary is hit) + - draw + */ + for (i = 0; i < NUM_HAPPY_FACES; i++) { + faces[i].x += faces[i].xvel * MILLESECONDS_PER_FRAME; + faces[i].y += faces[i].yvel * MILLESECONDS_PER_FRAME; + if (faces[i].x > maxx) { + faces[i].x = maxx; + faces[i].xvel = -faces[i].xvel; + } else if (faces[i].y > maxy) { + faces[i].y = maxy; + faces[i].yvel = -faces[i].yvel; + } + if (faces[i].x < minx) { + faces[i].x = minx; + faces[i].xvel = -faces[i].xvel; + } else if (faces[i].y < miny) { + faces[i].y = miny; + faces[i].yvel = -faces[i].yvel; + } + dstRect.x = faces[i].x; + dstRect.y = faces[i].y; + SDL_RenderCopy(renderer, texture, &srcRect, &dstRect); + } + /* update screen */ + SDL_RenderPresent(renderer); + +} + +/* + loads the happyface graphic into a texture +*/ +void +initializeTexture(SDL_Renderer *renderer) +{ + SDL_Surface *bmp_surface; + /* load the bmp */ + bmp_surface = SDL_LoadBMP("icon.bmp"); + if (bmp_surface == NULL) { + fatalError("could not load bmp"); + } + /* set white to transparent on the happyface */ + SDL_SetColorKey(bmp_surface, 1, + SDL_MapRGB(bmp_surface->format, 255, 255, 255)); + + /* convert RGBA surface to texture */ + texture = SDL_CreateTextureFromSurface(renderer, bmp_surface); + if (texture == 0) { + fatalError("could not create texture"); + } + SDL_SetTextureBlendMode(texture, SDL_BLENDMODE_BLEND); + + /* free up allocated memory */ + SDL_FreeSurface(bmp_surface); +} + +int +main(int argc, char *argv[]) +{ + + SDL_Window *window; + SDL_Renderer *renderer; + Uint32 startFrame; + Uint32 endFrame; + Uint32 delay; + int done; + + /* initialize SDL */ + if (SDL_Init(SDL_INIT_VIDEO) < 0) { + fatalError("Could not initialize SDL"); + } + window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, + SDL_WINDOW_OPENGL | + SDL_WINDOW_BORDERLESS); + + renderer = SDL_CreateRenderer(window, -1, 0); + + initializeTexture(renderer); + initializeHappyFaces(); + + /* main loop */ + done = 0; + while (!done) { + SDL_Event event; + startFrame = SDL_GetTicks(); + while (SDL_PollEvent(&event)) { + if (event.type == SDL_QUIT) { + done = 1; + } + } + render(renderer); + endFrame = SDL_GetTicks(); + + /* figure out how much time we have left, and then sleep */ + delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame); + if (delay < 0) { + delay = 0; + } else if (delay > MILLESECONDS_PER_FRAME) { + delay = MILLESECONDS_PER_FRAME; + } + SDL_Delay(delay); + } + + /* cleanup */ + SDL_DestroyTexture(texture); + /* shutdown SDL */ + SDL_Quit(); + + return 0; + +} diff --git a/SDL/Xcode-iOS/Demos/src/keyboard.c b/SDL/Xcode-iOS/Demos/src/keyboard.c new file mode 100644 index 0000000..ab819f1 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/keyboard.c @@ -0,0 +1,310 @@ +/* + * keyboard.c + * written by Holmes Futrell + * use however you want + */ + +#include "SDL.h" +#include "common.h" + +#define GLYPH_SIZE_IMAGE 16 /* size of glyphs (characters) in the bitmap font file */ +#define GLYPH_SIZE_SCREEN 32 /* size of glyphs (characters) as shown on the screen */ + +static SDL_Texture *texture; /* texture where we'll hold our font */ + +/* function declarations */ +void cleanup(void); +void drawBlank(int x, int y); + +static SDL_Renderer *renderer; +static int numChars = 0; /* number of characters we've typed so far */ +static SDL_bool lastCharWasColon = 0; /* we use this to detect sequences such as :) */ +static SDL_Color bg_color = { 50, 50, 100, 255 }; /* color of background */ + +/* this structure maps a scancode to an index in our bitmap font. + it also contains data about under which modifiers the mapping is valid + (for example, we don't want shift + 1 to produce the character '1', + but rather the character '!') +*/ +typedef struct +{ + SDL_Scancode scancode; /* scancode of the key we want to map */ + int allow_no_mod; /* is the map valid if the key has no modifiers? */ + SDL_Keymod mod; /* what modifiers are allowed for the mapping */ + int index; /* what index in the font does the scancode map to */ +} fontMapping; + +#define TABLE_SIZE 51 /* size of our table which maps keys and modifiers to font indices */ + +/* Below is the table that defines the mapping between scancodes and modifiers to indices in the + bitmap font. As an example, then line '{ SDL_SCANCODE_A, 1, KMOD_SHIFT, 33 }' means, map + the key A (which has scancode SDL_SCANCODE_A) to index 33 in the font (which is a picture of an A), + The '1' means that the mapping is valid even if there are no modifiers, and KMOD_SHIFT means the + mapping is also valid if the user is holding shift. +*/ +fontMapping map[TABLE_SIZE] = { + + {SDL_SCANCODE_A, 1, KMOD_SHIFT, 33}, /* A */ + {SDL_SCANCODE_B, 1, KMOD_SHIFT, 34}, /* B */ + {SDL_SCANCODE_C, 1, KMOD_SHIFT, 35}, /* C */ + {SDL_SCANCODE_D, 1, KMOD_SHIFT, 36}, /* D */ + {SDL_SCANCODE_E, 1, KMOD_SHIFT, 37}, /* E */ + {SDL_SCANCODE_F, 1, KMOD_SHIFT, 38}, /* F */ + {SDL_SCANCODE_G, 1, KMOD_SHIFT, 39}, /* G */ + {SDL_SCANCODE_H, 1, KMOD_SHIFT, 40}, /* H */ + {SDL_SCANCODE_I, 1, KMOD_SHIFT, 41}, /* I */ + {SDL_SCANCODE_J, 1, KMOD_SHIFT, 42}, /* J */ + {SDL_SCANCODE_K, 1, KMOD_SHIFT, 43}, /* K */ + {SDL_SCANCODE_L, 1, KMOD_SHIFT, 44}, /* L */ + {SDL_SCANCODE_M, 1, KMOD_SHIFT, 45}, /* M */ + {SDL_SCANCODE_N, 1, KMOD_SHIFT, 46}, /* N */ + {SDL_SCANCODE_O, 1, KMOD_SHIFT, 47}, /* O */ + {SDL_SCANCODE_P, 1, KMOD_SHIFT, 48}, /* P */ + {SDL_SCANCODE_Q, 1, KMOD_SHIFT, 49}, /* Q */ + {SDL_SCANCODE_R, 1, KMOD_SHIFT, 50}, /* R */ + {SDL_SCANCODE_S, 1, KMOD_SHIFT, 51}, /* S */ + {SDL_SCANCODE_T, 1, KMOD_SHIFT, 52}, /* T */ + {SDL_SCANCODE_U, 1, KMOD_SHIFT, 53}, /* U */ + {SDL_SCANCODE_V, 1, KMOD_SHIFT, 54}, /* V */ + {SDL_SCANCODE_W, 1, KMOD_SHIFT, 55}, /* W */ + {SDL_SCANCODE_X, 1, KMOD_SHIFT, 56}, /* X */ + {SDL_SCANCODE_Y, 1, KMOD_SHIFT, 57}, /* Y */ + {SDL_SCANCODE_Z, 1, KMOD_SHIFT, 58}, /* Z */ + {SDL_SCANCODE_0, 1, 0, 16}, /* 0 */ + {SDL_SCANCODE_1, 1, 0, 17}, /* 1 */ + {SDL_SCANCODE_2, 1, 0, 18}, /* 2 */ + {SDL_SCANCODE_3, 1, 0, 19}, /* 3 */ + {SDL_SCANCODE_4, 1, 0, 20}, /* 4 */ + {SDL_SCANCODE_5, 1, 0, 21}, /* 5 */ + {SDL_SCANCODE_6, 1, 0, 22}, /* 6 */ + {SDL_SCANCODE_7, 1, 0, 23}, /* 7 */ + {SDL_SCANCODE_8, 1, 0, 24}, /* 8 */ + {SDL_SCANCODE_9, 1, 0, 25}, /* 9 */ + {SDL_SCANCODE_SPACE, 1, 0, 0}, /* ' ' */ + {SDL_SCANCODE_1, 0, KMOD_SHIFT, 1}, /* ! */ + {SDL_SCANCODE_SLASH, 0, KMOD_SHIFT, 31}, /* ? */ + {SDL_SCANCODE_SLASH, 1, 0, 15}, /* / */ + {SDL_SCANCODE_COMMA, 1, 0, 12}, /* , */ + {SDL_SCANCODE_SEMICOLON, 1, 0, 27}, /* ; */ + {SDL_SCANCODE_SEMICOLON, 0, KMOD_SHIFT, 26}, /* : */ + {SDL_SCANCODE_PERIOD, 1, 0, 14}, /* . */ + {SDL_SCANCODE_MINUS, 1, 0, 13}, /* - */ + {SDL_SCANCODE_EQUALS, 0, KMOD_SHIFT, 11}, /* = */ + {SDL_SCANCODE_APOSTROPHE, 1, 0, 7}, /* ' */ + {SDL_SCANCODE_APOSTROPHE, 0, KMOD_SHIFT, 2}, /* " */ + {SDL_SCANCODE_5, 0, KMOD_SHIFT, 5}, /* % */ + +}; + +/* + This function maps an SDL_KeySym to an index in the bitmap font. + It does so by scanning through the font mapping table one entry + at a time. + + If a match is found (scancode and allowed modifiers), the proper + index is returned. + + If there is no entry for the key, -1 is returned +*/ +int +keyToIndex(SDL_Keysym key) +{ + int i, index = -1; + for (i = 0; i < TABLE_SIZE; i++) { + fontMapping compare = map[i]; + if (key.scancode == compare.scancode) { + /* if this entry is valid with no key mod and we have no keymod, or if + the key's modifiers are allowed modifiers for that mapping */ + if ((compare.allow_no_mod && key.mod == 0) + || (key.mod & compare.mod)) { + index = compare.index; + break; + } + } + } + return index; +} + +/* + This function returns and x,y position for a given character number. + It is used for positioning each character of text +*/ +void +getPositionForCharNumber(int n, int *x, int *y) +{ + int x_padding = 16; /* padding space on left and right side of screen */ + int y_padding = 32; /* padding space at top of screen */ + /* figure out the number of characters that can fit horizontally across the screen */ + int max_x_chars = (SCREEN_WIDTH - 2 * x_padding) / GLYPH_SIZE_SCREEN; + int line_separation = 5; /* pixels between each line */ + *x = (n % max_x_chars) * GLYPH_SIZE_SCREEN + x_padding; + *y = (n / max_x_chars) * (GLYPH_SIZE_SCREEN + line_separation) + + y_padding; +} + +void +drawIndex(int index) +{ + int x, y; + getPositionForCharNumber(numChars, &x, &y); + SDL_Rect srcRect = + { GLYPH_SIZE_IMAGE * index, 0, GLYPH_SIZE_IMAGE, GLYPH_SIZE_IMAGE }; + SDL_Rect dstRect = { x, y, GLYPH_SIZE_SCREEN, GLYPH_SIZE_SCREEN }; + drawBlank(x, y); + SDL_RenderCopy(renderer, texture, &srcRect, &dstRect); +} + +/* draws the cursor icon at the current end position of the text */ +void +drawCursor(void) +{ + drawIndex(29); /* cursor is at index 29 in the bitmap font */ +} + +/* paints over a glyph sized region with the background color + in effect it erases the area +*/ +void +drawBlank(int x, int y) +{ + SDL_Rect rect = { x, y, GLYPH_SIZE_SCREEN, GLYPH_SIZE_SCREEN }; + SDL_SetRenderDrawColor(renderer, bg_color.r, bg_color.g, bg_color.b, bg_color.a); + SDL_RenderFillRect(renderer, &rect); +} + +/* moves backwards one character, erasing the last one put down */ +void +backspace(void) +{ + int x, y; + if (numChars > 0) { + getPositionForCharNumber(numChars, &x, &y); + drawBlank(x, y); + numChars--; + getPositionForCharNumber(numChars, &x, &y); + drawBlank(x, y); + drawCursor(); + } +} + +/* this function loads our font into an SDL_Texture and returns the SDL_Texture */ +SDL_Texture* +loadFont(void) +{ + + SDL_Surface *surface = SDL_LoadBMP("kromasky_16x16.bmp"); + + if (!surface) { + printf("Error loading bitmap: %s\n", SDL_GetError()); + return 0; + } else { + /* set the transparent color for the bitmap font (hot pink) */ + SDL_SetColorKey(surface, 1, SDL_MapRGB(surface->format, 238, 0, 252)); + /* now we convert the surface to our desired pixel format */ + int format = SDL_PIXELFORMAT_ABGR8888; /* desired texture format */ + Uint32 Rmask, Gmask, Bmask, Amask; /* masks for desired format */ + int bpp; /* bits per pixel for desired format */ + SDL_PixelFormatEnumToMasks(format, &bpp, &Rmask, &Gmask, &Bmask, + &Amask); + SDL_Surface *converted = + SDL_CreateRGBSurface(0, surface->w, surface->h, bpp, Rmask, Gmask, + Bmask, Amask); + SDL_BlitSurface(surface, NULL, converted, NULL); + /* create our texture */ + texture = + SDL_CreateTextureFromSurface(renderer, converted); + if (texture == 0) { + printf("texture creation failed: %s\n", SDL_GetError()); + } else { + /* set blend mode for our texture */ + SDL_SetTextureBlendMode(texture, SDL_BLENDMODE_BLEND); + } + SDL_FreeSurface(surface); + SDL_FreeSurface(converted); + return texture; + } +} + +int +main(int argc, char *argv[]) +{ + + int index; /* index of last key we pushed in the bitmap font */ + SDL_Window *window; + SDL_Event event; /* last event received */ + SDL_Keymod mod; /* key modifiers of last key we pushed */ + SDL_Scancode scancode; /* scancode of last key we pushed */ + + if (SDL_Init(SDL_INIT_VIDEO) < 0) { + printf("Error initializing SDL: %s", SDL_GetError()); + } + /* create window */ + window = SDL_CreateWindow("iPhone keyboard test", 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, 0); + /* create renderer */ + renderer = SDL_CreateRenderer(window, -1, 0); + + /* load up our font */ + loadFont(); + + /* draw the background, we'll just paint over it */ + SDL_SetRenderDrawColor(renderer, bg_color.r, bg_color.g, bg_color.b, bg_color.a); + SDL_RenderFillRect(renderer, NULL); + SDL_RenderPresent(renderer); + + int done = 0; + /* loop till we get SDL_Quit */ + while (!done && SDL_WaitEvent(&event)) { + switch (event.type) { + case SDL_QUIT: + done = 1; + break; + case SDL_KEYDOWN: + index = keyToIndex(event.key.keysym); + scancode = event.key.keysym.scancode; + mod = event.key.keysym.mod; + if (scancode == SDL_SCANCODE_DELETE) { + /* if user hit delete, delete the last character */ + backspace(); + lastCharWasColon = 0; + } else if (lastCharWasColon && scancode == SDL_SCANCODE_0 + && (mod & KMOD_SHIFT)) { + /* if our last key was a colon and this one is a close paren, the make a hoppy face */ + backspace(); + drawIndex(32); /* index for happy face */ + numChars++; + drawCursor(); + lastCharWasColon = 0; + } else if (index != -1) { + /* if we aren't doing a happy face, then just draw the normal character */ + drawIndex(index); + numChars++; + drawCursor(); + lastCharWasColon = + (event.key.keysym.scancode == SDL_SCANCODE_SEMICOLON + && (event.key.keysym.mod & KMOD_SHIFT)); + } + /* check if the key was a colon */ + /* draw our updates to the screen */ + SDL_RenderPresent(renderer); + break; + case SDL_MOUSEBUTTONUP: + /* mouse up toggles onscreen keyboard visibility */ + if (SDL_IsTextInputActive()) { + SDL_StopTextInput(); + } else { + SDL_StartTextInput(); + } + break; + } + } + cleanup(); + return 0; +} + +/* clean up after ourselves like a good kiddy */ +void +cleanup(void) +{ + SDL_DestroyTexture(texture); + SDL_Quit(); +} diff --git a/SDL/Xcode-iOS/Demos/src/mixer.c b/SDL/Xcode-iOS/Demos/src/mixer.c new file mode 100644 index 0000000..8c21ba8 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/mixer.c @@ -0,0 +1,353 @@ +/* + * mixer.c + * written by Holmes Futrell + * use however you want + */ + +#include "SDL.h" +#include "common.h" + +#define NUM_CHANNELS 8 /* max number of sounds we can play at once */ +#define NUM_DRUMS 4 /* number of drums in our set */ +#define MILLESECONDS_PER_FRAME 16 /* about 60 frames per second */ + +static struct +{ + SDL_Rect rect; /* where the button is drawn */ + SDL_Color upColor; /* color when button is not active */ + SDL_Color downColor; /* color when button is active */ + int isPressed; /* is the button being pressed ? */ + int touchIndex; /* what mouse (touch) index pressed the button ? */ +} buttons[NUM_DRUMS]; + +struct sound +{ + Uint8 *buffer; /* audio buffer for sound file */ + Uint32 length; /* length of the buffer (in bytes) */ +}; + +/* this array holds the audio for the drum noises */ +static struct sound drums[NUM_DRUMS]; + +/* function declarations */ +void handleMouseButtonDown(SDL_Event * event); +void handleMouseButtonUp(SDL_Event * event); +int playSound(struct sound *); +void initializeButtons(); +void audioCallback(void *userdata, Uint8 * stream, int len); +void loadSound(const char *file, struct sound *s); + +struct +{ + /* channel array holds information about currently playing sounds */ + struct + { + Uint8 *position; /* what is the current position in the buffer of this sound ? */ + Uint32 remaining; /* how many bytes remaining before we're done playing the sound ? */ + Uint32 timestamp; /* when did this sound start playing ? */ + } channels[NUM_CHANNELS]; + SDL_AudioSpec outputSpec; /* what audio format are we using for output? */ + int numSoundsPlaying; /* how many sounds are currently playing */ +} mixer; + +/* sets up the buttons (color, position, state) */ +void +initializeButtons() +{ + + int i; + int spacing = 10; /* gap between drum buttons */ + SDL_Rect buttonRect; /* keeps track of where to position drum */ + SDL_Color upColor = { 86, 86, 140, 255 }; /* color of drum when not pressed */ + SDL_Color downColor = { 191, 191, 221, 255 }; /* color of drum when pressed */ + + buttonRect.x = spacing; + buttonRect.y = spacing; + buttonRect.w = SCREEN_WIDTH - 2 * spacing; + buttonRect.h = (SCREEN_HEIGHT - (NUM_DRUMS + 1) * spacing) / NUM_DRUMS; + + /* setup each button */ + for (i = 0; i < NUM_DRUMS; i++) { + + buttons[i].rect = buttonRect; + buttons[i].isPressed = 0; + buttons[i].upColor = upColor; + buttons[i].downColor = downColor; + + buttonRect.y += spacing + buttonRect.h; /* setup y coordinate for next drum */ + + } +} + +/* + loads a wav file (stored in 'file'), converts it to the mixer's output format, + and stores the resulting buffer and length in the sound structure + */ +void +loadSound(const char *file, struct sound *s) +{ + SDL_AudioSpec spec; /* the audio format of the .wav file */ + SDL_AudioCVT cvt; /* used to convert .wav to output format when formats differ */ + int result; + if (SDL_LoadWAV(file, &spec, &s->buffer, &s->length) == NULL) { + fatalError("could not load .wav"); + } + /* build the audio converter */ + result = SDL_BuildAudioCVT(&cvt, spec.format, spec.channels, spec.freq, + mixer.outputSpec.format, + mixer.outputSpec.channels, + mixer.outputSpec.freq); + if (result == -1) { + fatalError("could not build audio CVT"); + } else if (result != 0) { + /* + this happens when the .wav format differs from the output format. + we convert the .wav buffer here + */ + cvt.buf = (Uint8 *) SDL_malloc(s->length * cvt.len_mult); /* allocate conversion buffer */ + cvt.len = s->length; /* set conversion buffer length */ + SDL_memcpy(cvt.buf, s->buffer, s->length); /* copy sound to conversion buffer */ + if (SDL_ConvertAudio(&cvt) == -1) { /* convert the sound */ + fatalError("could not convert .wav"); + } + SDL_free(s->buffer); /* free the original (unconverted) buffer */ + s->buffer = cvt.buf; /* point sound buffer to converted buffer */ + s->length = cvt.len_cvt; /* set sound buffer's new length */ + } +} + +/* called from main event loop */ +void +handleMouseButtonDown(SDL_Event * event) +{ + + int x, y, mouseIndex, i, drumIndex; + + mouseIndex = 0; + drumIndex = -1; + + SDL_GetMouseState(&x, &y); + /* check if we hit any of the drum buttons */ + for (i = 0; i < NUM_DRUMS; i++) { + if (x >= buttons[i].rect.x + && x < buttons[i].rect.x + buttons[i].rect.w + && y >= buttons[i].rect.y + && y < buttons[i].rect.y + buttons[i].rect.h) { + drumIndex = i; + break; + } + } + if (drumIndex != -1) { + /* if we hit a button */ + buttons[drumIndex].touchIndex = mouseIndex; + buttons[drumIndex].isPressed = 1; + playSound(&drums[drumIndex]); + } + +} + +/* called from main event loop */ +void +handleMouseButtonUp(SDL_Event * event) +{ + int i; + int mouseIndex = 0; + /* check if this should cause any of the buttons to become unpressed */ + for (i = 0; i < NUM_DRUMS; i++) { + if (buttons[i].touchIndex == mouseIndex) { + buttons[i].isPressed = 0; + } + } +} + +/* draws buttons to screen */ +void +render(SDL_Renderer *renderer) +{ + int i; + SDL_SetRenderDrawColor(renderer, 50, 50, 50, 255); + SDL_RenderClear(renderer); /* draw background (gray) */ + /* draw the drum buttons */ + for (i = 0; i < NUM_DRUMS; i++) { + SDL_Color color = + buttons[i].isPressed ? buttons[i].downColor : buttons[i].upColor; + SDL_SetRenderDrawColor(renderer, color.r, color.g, color.b, color.a); + SDL_RenderFillRect(renderer, &buttons[i].rect); + } + /* update the screen */ + SDL_RenderPresent(renderer); +} + +/* + finds a sound channel in the mixer for a sound + and sets it up to start playing +*/ +int +playSound(struct sound *s) +{ + /* + find an empty channel to play on. + if no channel is available, use oldest channel + */ + int i; + int selected_channel = -1; + int oldest_channel = 0; + + if (mixer.numSoundsPlaying == 0) { + /* we're playing a sound now, so start audio callback back up */ + SDL_PauseAudio(0); + } + + /* find a sound channel to play the sound on */ + for (i = 0; i < NUM_CHANNELS; i++) { + if (mixer.channels[i].position == NULL) { + /* if no sound on this channel, select it */ + selected_channel = i; + break; + } + /* if this channel's sound is older than the oldest so far, set it to oldest */ + if (mixer.channels[i].timestamp < + mixer.channels[oldest_channel].timestamp) + oldest_channel = i; + } + + /* no empty channels, take the oldest one */ + if (selected_channel == -1) + selected_channel = oldest_channel; + else + mixer.numSoundsPlaying++; + + /* point channel data to wav data */ + mixer.channels[selected_channel].position = s->buffer; + mixer.channels[selected_channel].remaining = s->length; + mixer.channels[selected_channel].timestamp = SDL_GetTicks(); + + return selected_channel; +} + +/* + Called from SDL's audio system. Supplies sound input with data by mixing together all + currently playing sound effects. +*/ +void +audioCallback(void *userdata, Uint8 * stream, int len) +{ + int i; + int copy_amt; + SDL_memset(stream, mixer.outputSpec.silence, len); /* initialize buffer to silence */ + /* for each channel, mix in whatever is playing on that channel */ + for (i = 0; i < NUM_CHANNELS; i++) { + if (mixer.channels[i].position == NULL) { + /* if no sound is playing on this channel */ + continue; /* nothing to do for this channel */ + } + + /* copy len bytes to the buffer, unless we have fewer than len bytes remaining */ + copy_amt = + mixer.channels[i].remaining < + len ? mixer.channels[i].remaining : len; + + /* mix this sound effect with the output */ + SDL_MixAudioFormat(stream, mixer.channels[i].position, + mixer.outputSpec.format, copy_amt, 150); + + /* update buffer position in sound effect and the number of bytes left */ + mixer.channels[i].position += copy_amt; + mixer.channels[i].remaining -= copy_amt; + + /* did we finish playing the sound effect ? */ + if (mixer.channels[i].remaining == 0) { + mixer.channels[i].position = NULL; /* indicates no sound playing on channel anymore */ + mixer.numSoundsPlaying--; + if (mixer.numSoundsPlaying == 0) { + /* if no sounds left playing, pause audio callback */ + SDL_PauseAudio(1); + } + } + } +} + +int +main(int argc, char *argv[]) +{ + + int done; /* has user tried to quit ? */ + SDL_Window *window; /* main window */ + SDL_Renderer *renderer; + SDL_Event event; + Uint32 startFrame; /* holds when frame started processing */ + Uint32 endFrame; /* holds when frame ended processing */ + Uint32 delay; /* calculated delay, how long should we wait before next frame? */ + int i; + + if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) { + fatalError("could not initialize SDL"); + } + window = + SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, + SDL_WINDOW_OPENGL | SDL_WINDOW_BORDERLESS); + renderer = SDL_CreateRenderer(window, 0, 0); + + /* initialize the mixer */ + SDL_memset(&mixer, 0, sizeof(mixer)); + /* setup output format */ + mixer.outputSpec.freq = 44100; + mixer.outputSpec.format = AUDIO_S16LSB; + mixer.outputSpec.channels = 2; + mixer.outputSpec.samples = 256; + mixer.outputSpec.callback = audioCallback; + mixer.outputSpec.userdata = NULL; + + /* open audio for output */ + if (SDL_OpenAudio(&mixer.outputSpec, NULL) != 0) { + fatalError("Opening audio failed"); + } + + /* load our drum noises */ + loadSound("ds_kick_big_amb.wav", &drums[3]); + loadSound("ds_brush_snare.wav", &drums[2]); + loadSound("ds_loose_skin_mute.wav", &drums[1]); + loadSound("ds_china.wav", &drums[0]); + + /* setup positions, colors, and state of buttons */ + initializeButtons(); + + /* enter main loop */ + done = 0; + while (!done) { + startFrame = SDL_GetTicks(); + while (SDL_PollEvent(&event)) { + switch (event.type) { + case SDL_MOUSEBUTTONDOWN: + handleMouseButtonDown(&event); + break; + case SDL_MOUSEBUTTONUP: + handleMouseButtonUp(&event); + break; + case SDL_QUIT: + done = 1; + break; + } + } + render(renderer); /* draw buttons */ + endFrame = SDL_GetTicks(); + + /* figure out how much time we have left, and then sleep */ + delay = MILLESECONDS_PER_FRAME - (endFrame - startFrame); + if (delay < 0) { + delay = 0; + } else if (delay > MILLESECONDS_PER_FRAME) { + delay = MILLESECONDS_PER_FRAME; + } + SDL_Delay(delay); + } + + /* cleanup code, let's free up those sound buffers */ + for (i = 0; i < NUM_DRUMS; i++) { + SDL_free(drums[i].buffer); + } + /* let SDL do its exit code */ + SDL_Quit(); + + return 0; +} diff --git a/SDL/Xcode-iOS/Demos/src/rectangles.c b/SDL/Xcode-iOS/Demos/src/rectangles.c new file mode 100644 index 0000000..77e2a56 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/rectangles.c @@ -0,0 +1,84 @@ +/* + * rectangles.c + * written by Holmes Futrell + * use however you want +*/ + +#include "SDL.h" +#include +#include "common.h" + +void +render(SDL_Renderer *renderer) +{ + + Uint8 r, g, b; + /* Come up with a random rectangle */ + SDL_Rect rect; + rect.w = randomInt(64, 128); + rect.h = randomInt(64, 128); + rect.x = randomInt(0, SCREEN_WIDTH); + rect.y = randomInt(0, SCREEN_HEIGHT); + + /* Come up with a random color */ + r = randomInt(50, 255); + g = randomInt(50, 255); + b = randomInt(50, 255); + + /* Fill the rectangle in the color */ + SDL_SetRenderDrawColor(renderer, r, g, b, 255); + SDL_RenderFillRect(renderer, &rect); + + /* update screen */ + SDL_RenderPresent(renderer); + +} + +int +main(int argc, char *argv[]) +{ + + SDL_Window *window; + SDL_Renderer *renderer; + int done; + SDL_Event event; + + /* initialize SDL */ + if (SDL_Init(SDL_INIT_VIDEO) < 0) { + fatalError("Could not initialize SDL"); + } + + /* seed random number generator */ + srand(time(NULL)); + + /* create window and renderer */ + window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, 0); + if (window == 0) { + fatalError("Could not initialize Window"); + } + renderer = SDL_CreateRenderer(window, -1, 0); + if (!renderer) { + fatalError("Could not create renderer"); + } + + /* Fill screen with black */ + SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); + SDL_RenderClear(renderer); + + /* Enter render loop, waiting for user to quit */ + done = 0; + while (!done) { + while (SDL_PollEvent(&event)) { + if (event.type == SDL_QUIT) { + done = 1; + } + } + render(renderer); + SDL_Delay(1); + } + + /* shutdown SDL */ + SDL_Quit(); + + return 0; +} diff --git a/SDL/Xcode-iOS/Demos/src/touch.c b/SDL/Xcode-iOS/Demos/src/touch.c new file mode 100644 index 0000000..fc5fd46 --- /dev/null +++ b/SDL/Xcode-iOS/Demos/src/touch.c @@ -0,0 +1,127 @@ +/* + * touch.c + * written by Holmes Futrell + * use however you want + */ + +#include "SDL.h" +#include "math.h" +#include "common.h" + +#define BRUSH_SIZE 32 /* width and height of the brush */ +#define PIXELS_PER_ITERATION 5 /* number of pixels between brush blots when forming a line */ + +static SDL_Texture *brush = 0; /* texture for the brush */ + +/* + draws a line from (startx, starty) to (startx + dx, starty + dy) + this is accomplished by drawing several blots spaced PIXELS_PER_ITERATION apart +*/ +void +drawLine(SDL_Renderer *renderer, float startx, float starty, float dx, float dy) +{ + + float distance = sqrt(dx * dx + dy * dy); /* length of line segment (pythagoras) */ + int iterations = distance / PIXELS_PER_ITERATION + 1; /* number of brush sprites to draw for the line */ + float dx_prime = dx / iterations; /* x-shift per iteration */ + float dy_prime = dy / iterations; /* y-shift per iteration */ + SDL_Rect dstRect; /* rect to draw brush sprite into */ + float x; + float y; + int i; + + dstRect.w = BRUSH_SIZE; + dstRect.h = BRUSH_SIZE; + + /* setup x and y for the location of the first sprite */ + x = startx - BRUSH_SIZE / 2.0f; + y = starty - BRUSH_SIZE / 2.0f; + + /* draw a series of blots to form the line */ + for (i = 0; i < iterations; i++) { + dstRect.x = x; + dstRect.y = y; + /* shift x and y for next sprite location */ + x += dx_prime; + y += dy_prime; + /* draw brush blot */ + SDL_RenderCopy(renderer, brush, NULL, &dstRect); + } +} + +/* + loads the brush texture +*/ +void +initializeTexture(SDL_Renderer *renderer) +{ + SDL_Surface *bmp_surface; + bmp_surface = SDL_LoadBMP("stroke.bmp"); + if (bmp_surface == NULL) { + fatalError("could not load stroke.bmp"); + } + brush = + SDL_CreateTextureFromSurface(renderer, bmp_surface); + SDL_FreeSurface(bmp_surface); + if (brush == 0) { + fatalError("could not create brush texture"); + } + /* additive blending -- laying strokes on top of eachother makes them brighter */ + SDL_SetTextureBlendMode(brush, SDL_BLENDMODE_ADD); + /* set brush color (red) */ + SDL_SetTextureColorMod(brush, 255, 100, 100); +} + +int +main(int argc, char *argv[]) +{ + + int x, y, dx, dy; /* mouse location */ + Uint8 state; /* mouse (touch) state */ + SDL_Event event; + SDL_Window *window; /* main window */ + SDL_Renderer *renderer; + int done; /* does user want to quit? */ + + /* initialize SDL */ + if (SDL_Init(SDL_INIT_VIDEO) < 0) { + fatalError("Could not initialize SDL"); + } + + /* create main window and renderer */ + window = SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, + SDL_WINDOW_OPENGL | + SDL_WINDOW_BORDERLESS); + renderer = SDL_CreateRenderer(window, 0, 0); + + /* load brush texture */ + initializeTexture(renderer); + + /* fill canvass initially with all black */ + SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); + SDL_RenderClear(renderer); + SDL_RenderPresent(renderer); + + done = 0; + while (!done && SDL_WaitEvent(&event)) { + switch (event.type) { + case SDL_QUIT: + done = 1; + break; + case SDL_MOUSEMOTION: + state = SDL_GetMouseState(&x, &y); /* get its location */ + SDL_GetRelativeMouseState(&dx, &dy); /* find how much the mouse moved */ + if (state & SDL_BUTTON_LMASK) { /* is the mouse (touch) down? */ + drawLine(renderer, x - dx, y - dy, dx, dy); /* draw line segment */ + SDL_RenderPresent(renderer); + } + break; + } + } + + /* cleanup */ + SDL_DestroyTexture(brush); + SDL_Quit(); + + return 0; +} diff --git a/SDL/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj b/SDL/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj new file mode 100755 index 0000000..b0830bf --- /dev/null +++ b/SDL/Xcode-iOS/SDL/SDL.xcodeproj/project.pbxproj @@ -0,0 +1,1350 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXAggregateTarget section */ + 00B4F48B12F6A69C0084EC00 /* PrepareXcodeProjectTemplate */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 00B4F48E12F6A6BA0084EC00 /* Build configuration list for PBXAggregateTarget "PrepareXcodeProjectTemplate" */; + buildPhases = ( + 00B4F48A12F6A69C0084EC00 /* ShellScript */, + ); + dependencies = ( + ); + name = PrepareXcodeProjectTemplate; + productName = PrepareXcodeProjectTemplate; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 006E9888119552DD001DE610 /* SDL_rwopsbundlesupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 006E9886119552DD001DE610 /* SDL_rwopsbundlesupport.h */; }; + 006E9889119552DD001DE610 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 006E9887119552DD001DE610 /* SDL_rwopsbundlesupport.m */; }; + 0402A85812FE70C600CECEE3 /* SDL_render_gles2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0402A85512FE70C600CECEE3 /* SDL_render_gles2.c */; }; + 0402A85912FE70C600CECEE3 /* SDL_shaders_gles2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0402A85612FE70C600CECEE3 /* SDL_shaders_gles2.c */; }; + 0402A85A12FE70C600CECEE3 /* SDL_shaders_gles2.h in Headers */ = {isa = PBXBuildFile; fileRef = 0402A85712FE70C600CECEE3 /* SDL_shaders_gles2.h */; }; + 041B2CF112FA0F680087D585 /* SDL_render.c in Sources */ = {isa = PBXBuildFile; fileRef = 041B2CEA12FA0F680087D585 /* SDL_render.c */; }; + 041B2CF212FA0F680087D585 /* SDL_sysrender.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B2CEB12FA0F680087D585 /* SDL_sysrender.h */; }; + 0420497011E6F03D007E7EC9 /* SDL_clipboardevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0420496E11E6F03D007E7EC9 /* SDL_clipboardevents_c.h */; }; + 0420497111E6F03D007E7EC9 /* SDL_clipboardevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 0420496F11E6F03D007E7EC9 /* SDL_clipboardevents.c */; }; + 04409BA612FA989600FB9AA8 /* mmx.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409BA212FA989600FB9AA8 /* mmx.h */; }; + 04409BA712FA989600FB9AA8 /* SDL_yuv_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409BA312FA989600FB9AA8 /* SDL_yuv_mmx.c */; }; + 04409BA812FA989600FB9AA8 /* SDL_yuv_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409BA412FA989600FB9AA8 /* SDL_yuv_sw_c.h */; }; + 04409BA912FA989600FB9AA8 /* SDL_yuv_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409BA512FA989600FB9AA8 /* SDL_yuv_sw.c */; }; + 0442EC5012FE1C1E004C9285 /* SDL_render_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC4E12FE1C1E004C9285 /* SDL_render_sw_c.h */; }; + 0442EC5112FE1C1E004C9285 /* SDL_render_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC4F12FE1C1E004C9285 /* SDL_render_sw.c */; }; + 0442EC5312FE1C28004C9285 /* SDL_render_gles.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5212FE1C28004C9285 /* SDL_render_gles.c */; }; + 0442EC5512FE1C3F004C9285 /* SDL_hints.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5412FE1C3F004C9285 /* SDL_hints.c */; }; + 044E5FB811E606EB0076F181 /* SDL_clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 044E5FB711E606EB0076F181 /* SDL_clipboard.c */; }; + 046387420F0B5B7D0041FD65 /* SDL_blit_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 0463873A0F0B5B7D0041FD65 /* SDL_blit_slow.h */; }; + 046387460F0B5B7D0041FD65 /* SDL_fillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 0463873E0F0B5B7D0041FD65 /* SDL_fillrect.c */; }; + 047677BB0EA76A31008ABAF1 /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 047677B80EA76A31008ABAF1 /* SDL_syshaptic.c */; }; + 047677BC0EA76A31008ABAF1 /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 047677B90EA76A31008ABAF1 /* SDL_haptic.c */; }; + 047677BD0EA76A31008ABAF1 /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 047677BA0EA76A31008ABAF1 /* SDL_syshaptic.h */; }; + 047AF1B30EA98D6C00811173 /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 047AF1B20EA98D6C00811173 /* SDL_sysloadso.c */; }; + 04BA9D6311EF474A00B60E01 /* SDL_gesture_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BA9D5F11EF474A00B60E01 /* SDL_gesture_c.h */; }; + 04BA9D6411EF474A00B60E01 /* SDL_gesture.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BA9D6011EF474A00B60E01 /* SDL_gesture.c */; }; + 04BA9D6511EF474A00B60E01 /* SDL_touch_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BA9D6111EF474A00B60E01 /* SDL_touch_c.h */; }; + 04BA9D6611EF474A00B60E01 /* SDL_touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BA9D6211EF474A00B60E01 /* SDL_touch.c */; }; + 04BAC09C1300C1290055DE28 /* SDL_assert_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BAC09A1300C1290055DE28 /* SDL_assert_c.h */; }; + 04BAC09D1300C1290055DE28 /* SDL_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BAC09B1300C1290055DE28 /* SDL_log.c */; }; + 04F2AF561104ABD200D6DDF7 /* SDL_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F2AF551104ABD200D6DDF7 /* SDL_assert.c */; }; + 04F7807612FB751400FC43C0 /* SDL_blendfillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7806A12FB751400FC43C0 /* SDL_blendfillrect.c */; }; + 04F7807712FB751400FC43C0 /* SDL_blendfillrect.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7806B12FB751400FC43C0 /* SDL_blendfillrect.h */; }; + 04F7807812FB751400FC43C0 /* SDL_blendline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7806C12FB751400FC43C0 /* SDL_blendline.c */; }; + 04F7807912FB751400FC43C0 /* SDL_blendline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7806D12FB751400FC43C0 /* SDL_blendline.h */; }; + 04F7807A12FB751400FC43C0 /* SDL_blendpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7806E12FB751400FC43C0 /* SDL_blendpoint.c */; }; + 04F7807B12FB751400FC43C0 /* SDL_blendpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7806F12FB751400FC43C0 /* SDL_blendpoint.h */; }; + 04F7807C12FB751400FC43C0 /* SDL_draw.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7807012FB751400FC43C0 /* SDL_draw.h */; }; + 04F7807D12FB751400FC43C0 /* SDL_drawline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7807112FB751400FC43C0 /* SDL_drawline.c */; }; + 04F7807E12FB751400FC43C0 /* SDL_drawline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7807212FB751400FC43C0 /* SDL_drawline.h */; }; + 04F7807F12FB751400FC43C0 /* SDL_drawpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7807312FB751400FC43C0 /* SDL_drawpoint.c */; }; + 04F7808012FB751400FC43C0 /* SDL_drawpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7807412FB751400FC43C0 /* SDL_drawpoint.h */; }; + 04F7808412FB753F00FC43C0 /* SDL_nullframebuffer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7808212FB753F00FC43C0 /* SDL_nullframebuffer_c.h */; }; + 04F7808512FB753F00FC43C0 /* SDL_nullframebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7808312FB753F00FC43C0 /* SDL_nullframebuffer.c */; }; + 04FFAB8B12E23B8D00BA343D /* SDL_atomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04FFAB8912E23B8D00BA343D /* SDL_atomic.c */; }; + 04FFAB8C12E23B8D00BA343D /* SDL_spinlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 04FFAB8A12E23B8D00BA343D /* SDL_spinlock.c */; }; + 56A6702E18565E450007D20F /* SDL_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6702D18565E450007D20F /* SDL_internal.h */; }; + 56A6703518565E760007D20F /* SDL_dynapi_overrides.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6703118565E760007D20F /* SDL_dynapi_overrides.h */; }; + 56A6703618565E760007D20F /* SDL_dynapi_procs.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6703218565E760007D20F /* SDL_dynapi_procs.h */; }; + 56A6703718565E760007D20F /* SDL_dynapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 56A6703318565E760007D20F /* SDL_dynapi.c */; }; + 56A6703818565E760007D20F /* SDL_dynapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6703418565E760007D20F /* SDL_dynapi.h */; }; + 56C181DF17C44D5E00406AE3 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C181DE17C44D5E00406AE3 /* SDL_filesystem.h */; }; + 56C181E217C44D7A00406AE3 /* SDL_sysfilesystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C181E117C44D7A00406AE3 /* SDL_sysfilesystem.m */; }; + 56EA86FB13E9EC2B002E47EB /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 56EA86F913E9EC2B002E47EB /* SDL_coreaudio.c */; }; + 56EA86FC13E9EC2B002E47EB /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */; }; + 56ED04E1118A8EE200A56AA6 /* SDL_power.c in Sources */ = {isa = PBXBuildFile; fileRef = 56ED04E0118A8EE200A56AA6 /* SDL_power.c */; }; + 56ED04E3118A8EFD00A56AA6 /* SDL_syspower.m in Sources */ = {isa = PBXBuildFile; fileRef = 56ED04E2118A8EFD00A56AA6 /* SDL_syspower.m */; }; + 93CB792313FC5E5200BD3E05 /* SDL_uikitviewcontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = 93CB792213FC5E5200BD3E05 /* SDL_uikitviewcontroller.h */; }; + 93CB792613FC5F5300BD3E05 /* SDL_uikitviewcontroller.m in Sources */ = {isa = PBXBuildFile; fileRef = 93CB792513FC5F5300BD3E05 /* SDL_uikitviewcontroller.m */; }; + AA0AD06216647BBB00CE5896 /* SDL_gamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = AA0AD06116647BBB00CE5896 /* SDL_gamecontroller.c */; }; + AA0AD06516647BD400CE5896 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0AD06416647BD400CE5896 /* SDL_gamecontroller.h */; }; + AA0F8495178D5F1A00823F9D /* SDL_systls.c in Sources */ = {isa = PBXBuildFile; fileRef = AA0F8494178D5F1A00823F9D /* SDL_systls.c */; }; + AA126AD41617C5E7005ABC8F /* SDL_uikitmodes.h in Headers */ = {isa = PBXBuildFile; fileRef = AA126AD21617C5E6005ABC8F /* SDL_uikitmodes.h */; }; + AA126AD51617C5E7005ABC8F /* SDL_uikitmodes.m in Sources */ = {isa = PBXBuildFile; fileRef = AA126AD31617C5E6005ABC8F /* SDL_uikitmodes.m */; }; + AA628ADB159369E3005138DD /* SDL_rotate.c in Sources */ = {isa = PBXBuildFile; fileRef = AA628AD9159369E3005138DD /* SDL_rotate.c */; }; + AA628ADC159369E3005138DD /* SDL_rotate.h in Headers */ = {isa = PBXBuildFile; fileRef = AA628ADA159369E3005138DD /* SDL_rotate.h */; }; + AA704DD6162AA90A0076D1C1 /* SDL_dropevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = AA704DD4162AA90A0076D1C1 /* SDL_dropevents_c.h */; }; + AA704DD7162AA90A0076D1C1 /* SDL_dropevents.c in Sources */ = {isa = PBXBuildFile; fileRef = AA704DD5162AA90A0076D1C1 /* SDL_dropevents.c */; }; + AA7558981595D55500BBD41B /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558651595D55500BBD41B /* begin_code.h */; }; + AA7558991595D55500BBD41B /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558661595D55500BBD41B /* close_code.h */; }; + AA75589A1595D55500BBD41B /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558671595D55500BBD41B /* SDL_assert.h */; }; + AA75589B1595D55500BBD41B /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558681595D55500BBD41B /* SDL_atomic.h */; }; + AA75589C1595D55500BBD41B /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558691595D55500BBD41B /* SDL_audio.h */; }; + AA75589D1595D55500BBD41B /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75586A1595D55500BBD41B /* SDL_blendmode.h */; }; + AA75589E1595D55500BBD41B /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75586B1595D55500BBD41B /* SDL_clipboard.h */; }; + AA75589F1595D55500BBD41B /* SDL_config_iphoneos.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75586C1595D55500BBD41B /* SDL_config_iphoneos.h */; }; + AA7558A01595D55500BBD41B /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75586D1595D55500BBD41B /* SDL_config.h */; }; + AA7558A11595D55500BBD41B /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75586E1595D55500BBD41B /* SDL_copying.h */; }; + AA7558A21595D55500BBD41B /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75586F1595D55500BBD41B /* SDL_cpuinfo.h */; }; + AA7558A31595D55500BBD41B /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558701595D55500BBD41B /* SDL_endian.h */; }; + AA7558A41595D55500BBD41B /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558711595D55500BBD41B /* SDL_error.h */; }; + AA7558A51595D55500BBD41B /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558721595D55500BBD41B /* SDL_events.h */; }; + AA7558A61595D55500BBD41B /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558731595D55500BBD41B /* SDL_gesture.h */; }; + AA7558A71595D55500BBD41B /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558741595D55500BBD41B /* SDL_haptic.h */; }; + AA7558A81595D55500BBD41B /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558751595D55500BBD41B /* SDL_hints.h */; }; + AA7558AA1595D55500BBD41B /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558771595D55500BBD41B /* SDL_joystick.h */; }; + AA7558AB1595D55500BBD41B /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558781595D55500BBD41B /* SDL_keyboard.h */; }; + AA7558AC1595D55500BBD41B /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558791595D55500BBD41B /* SDL_keycode.h */; }; + AA7558AD1595D55500BBD41B /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75587A1595D55500BBD41B /* SDL_loadso.h */; }; + AA7558AE1595D55500BBD41B /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75587B1595D55500BBD41B /* SDL_log.h */; }; + AA7558AF1595D55500BBD41B /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75587C1595D55500BBD41B /* SDL_main.h */; }; + AA7558B01595D55500BBD41B /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75587D1595D55500BBD41B /* SDL_mouse.h */; }; + AA7558B11595D55500BBD41B /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75587E1595D55500BBD41B /* SDL_mutex.h */; }; + AA7558B21595D55500BBD41B /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75587F1595D55500BBD41B /* SDL_name.h */; }; + AA7558B31595D55500BBD41B /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558801595D55500BBD41B /* SDL_opengl.h */; }; + AA7558B41595D55500BBD41B /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558811595D55500BBD41B /* SDL_opengles.h */; }; + AA7558B51595D55500BBD41B /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558821595D55500BBD41B /* SDL_opengles2.h */; }; + AA7558B61595D55500BBD41B /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558831595D55500BBD41B /* SDL_pixels.h */; }; + AA7558B71595D55500BBD41B /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558841595D55500BBD41B /* SDL_platform.h */; }; + AA7558B81595D55500BBD41B /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558851595D55500BBD41B /* SDL_power.h */; }; + AA7558B91595D55500BBD41B /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558861595D55500BBD41B /* SDL_quit.h */; }; + AA7558BA1595D55500BBD41B /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558871595D55500BBD41B /* SDL_rect.h */; }; + AA7558BB1595D55500BBD41B /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558881595D55500BBD41B /* SDL_render.h */; }; + AA7558BC1595D55500BBD41B /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558891595D55500BBD41B /* SDL_revision.h */; }; + AA7558BD1595D55500BBD41B /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75588A1595D55500BBD41B /* SDL_rwops.h */; }; + AA7558BE1595D55500BBD41B /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75588B1595D55500BBD41B /* SDL_scancode.h */; }; + AA7558BF1595D55500BBD41B /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75588C1595D55500BBD41B /* SDL_shape.h */; }; + AA7558C01595D55500BBD41B /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75588D1595D55500BBD41B /* SDL_stdinc.h */; }; + AA7558C11595D55500BBD41B /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75588E1595D55500BBD41B /* SDL_surface.h */; }; + AA7558C21595D55500BBD41B /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA75588F1595D55500BBD41B /* SDL_system.h */; }; + AA7558C31595D55500BBD41B /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558901595D55500BBD41B /* SDL_syswm.h */; }; + AA7558C41595D55500BBD41B /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558911595D55500BBD41B /* SDL_thread.h */; }; + AA7558C51595D55500BBD41B /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558921595D55500BBD41B /* SDL_timer.h */; }; + AA7558C61595D55500BBD41B /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558931595D55500BBD41B /* SDL_touch.h */; }; + AA7558C71595D55500BBD41B /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558941595D55500BBD41B /* SDL_types.h */; }; + AA7558C81595D55500BBD41B /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558951595D55500BBD41B /* SDL_version.h */; }; + AA7558C91595D55500BBD41B /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558961595D55500BBD41B /* SDL_video.h */; }; + AA7558CA1595D55500BBD41B /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7558971595D55500BBD41B /* SDL.h */; }; + AA9FF9511637C6E5000DF050 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9501637C6E5000DF050 /* SDL_messagebox.h */; }; + AABCC3941640643D00AB8930 /* SDL_uikitmessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AABCC3921640643D00AB8930 /* SDL_uikitmessagebox.h */; }; + AABCC3951640643D00AB8930 /* SDL_uikitmessagebox.m in Sources */ = {isa = PBXBuildFile; fileRef = AABCC3931640643D00AB8930 /* SDL_uikitmessagebox.m */; }; + AADA5B8F16CCAB7C00107CF7 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8E16CCAB7C00107CF7 /* SDL_bits.h */; }; + FA1DC2721C62BE65008F99A0 /* SDL_uikitclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1DC2701C62BE65008F99A0 /* SDL_uikitclipboard.h */; }; + FA1DC2731C62BE65008F99A0 /* SDL_uikitclipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = FA1DC2711C62BE65008F99A0 /* SDL_uikitclipboard.m */; }; + FAD4F7021BA3C4E8008346CE /* SDL_sysjoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD4F7011BA3C4E8008346CE /* SDL_sysjoystick_c.h */; }; + FD3F4A760DEA620800C5B771 /* SDL_getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A700DEA620800C5B771 /* SDL_getenv.c */; }; + FD3F4A770DEA620800C5B771 /* SDL_iconv.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A710DEA620800C5B771 /* SDL_iconv.c */; }; + FD3F4A780DEA620800C5B771 /* SDL_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A720DEA620800C5B771 /* SDL_malloc.c */; }; + FD3F4A790DEA620800C5B771 /* SDL_qsort.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A730DEA620800C5B771 /* SDL_qsort.c */; }; + FD3F4A7A0DEA620800C5B771 /* SDL_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A740DEA620800C5B771 /* SDL_stdlib.c */; }; + FD3F4A7B0DEA620800C5B771 /* SDL_string.c in Sources */ = {isa = PBXBuildFile; fileRef = FD3F4A750DEA620800C5B771 /* SDL_string.c */; }; + FD5F9D2F0E0E08B3008E885B /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = FD5F9D1E0E0E08B3008E885B /* SDL_joystick.c */; }; + FD5F9D300E0E08B3008E885B /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5F9D1F0E0E08B3008E885B /* SDL_joystick_c.h */; }; + FD5F9D310E0E08B3008E885B /* SDL_sysjoystick.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5F9D200E0E08B3008E885B /* SDL_sysjoystick.h */; }; + FD6526660DE8FCDD002AD96B /* SDL_dummyaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B91D0DD52EDC00FB1D6B /* SDL_dummyaudio.c */; }; + FD6526670DE8FCDD002AD96B /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9440DD52EDC00FB1D6B /* SDL_audio.c */; }; + FD6526680DE8FCDD002AD96B /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9460DD52EDC00FB1D6B /* SDL_audiocvt.c */; }; + FD65266A0DE8FCDD002AD96B /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B94A0DD52EDC00FB1D6B /* SDL_audiotypecvt.c */; }; + FD65266B0DE8FCDD002AD96B /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B94B0DD52EDC00FB1D6B /* SDL_mixer.c */; }; + FD65266F0DE8FCDD002AD96B /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9530DD52EDC00FB1D6B /* SDL_wave.c */; }; + FD6526700DE8FCDD002AD96B /* SDL_cpuinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B98B0DD52EDC00FB1D6B /* SDL_cpuinfo.c */; }; + FD6526710DE8FCDD002AD96B /* SDL_events.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9930DD52EDC00FB1D6B /* SDL_events.c */; }; + FD6526720DE8FCDD002AD96B /* SDL_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9950DD52EDC00FB1D6B /* SDL_keyboard.c */; }; + FD6526730DE8FCDD002AD96B /* SDL_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9970DD52EDC00FB1D6B /* SDL_mouse.c */; }; + FD6526740DE8FCDD002AD96B /* SDL_quit.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9990DD52EDC00FB1D6B /* SDL_quit.c */; }; + FD6526750DE8FCDD002AD96B /* SDL_windowevents.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B99B0DD52EDC00FB1D6B /* SDL_windowevents.c */; }; + FD6526760DE8FCDD002AD96B /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B99E0DD52EDC00FB1D6B /* SDL_rwops.c */; }; + FD6526780DE8FCDD002AD96B /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9D50DD52EDC00FB1D6B /* SDL_error.c */; }; + FD65267A0DE8FCDD002AD96B /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99B9D80DD52EDC00FB1D6B /* SDL.c */; }; + FD65267B0DE8FCDD002AD96B /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA070DD52EDC00FB1D6B /* SDL_syscond.c */; }; + FD65267C0DE8FCDD002AD96B /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA080DD52EDC00FB1D6B /* SDL_sysmutex.c */; }; + FD65267D0DE8FCDD002AD96B /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA0A0DD52EDC00FB1D6B /* SDL_syssem.c */; }; + FD65267E0DE8FCDD002AD96B /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA0B0DD52EDC00FB1D6B /* SDL_systhread.c */; }; + FD65267F0DE8FCDD002AD96B /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA150DD52EDC00FB1D6B /* SDL_thread.c */; }; + FD6526800DE8FCDD002AD96B /* SDL_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA2E0DD52EDC00FB1D6B /* SDL_timer.c */; }; + FD6526810DE8FCDD002AD96B /* SDL_systimer.c in Sources */ = {isa = PBXBuildFile; fileRef = FD99BA310DD52EDC00FB1D6B /* SDL_systimer.c */; }; + FD689F030E26E5B600F90B21 /* SDL_sysjoystick.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F000E26E5B600F90B21 /* SDL_sysjoystick.m */; }; + FD689F1C0E26E5D900F90B21 /* SDL_uikitevents.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F0C0E26E5D900F90B21 /* SDL_uikitevents.h */; }; + FD689F1D0E26E5D900F90B21 /* SDL_uikitevents.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F0D0E26E5D900F90B21 /* SDL_uikitevents.m */; }; + FD689F1E0E26E5D900F90B21 /* SDL_uikitopengles.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F0E0E26E5D900F90B21 /* SDL_uikitopengles.h */; }; + FD689F1F0E26E5D900F90B21 /* SDL_uikitopengles.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F0F0E26E5D900F90B21 /* SDL_uikitopengles.m */; }; + FD689F200E26E5D900F90B21 /* SDL_uikitvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F100E26E5D900F90B21 /* SDL_uikitvideo.h */; }; + FD689F210E26E5D900F90B21 /* SDL_uikitvideo.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F110E26E5D900F90B21 /* SDL_uikitvideo.m */; }; + FD689F230E26E5D900F90B21 /* SDL_uikitview.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F130E26E5D900F90B21 /* SDL_uikitview.m */; }; + FD689F240E26E5D900F90B21 /* SDL_uikitwindow.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F140E26E5D900F90B21 /* SDL_uikitwindow.h */; }; + FD689F250E26E5D900F90B21 /* SDL_uikitwindow.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F150E26E5D900F90B21 /* SDL_uikitwindow.m */; }; + FD689F260E26E5D900F90B21 /* SDL_uikitopenglview.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689F160E26E5D900F90B21 /* SDL_uikitopenglview.h */; }; + FD689F270E26E5D900F90B21 /* SDL_uikitopenglview.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689F170E26E5D900F90B21 /* SDL_uikitopenglview.m */; }; + FD689FCE0E26E9D400F90B21 /* SDL_uikitappdelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FD689FCC0E26E9D400F90B21 /* SDL_uikitappdelegate.m */; }; + FD689FCF0E26E9D400F90B21 /* SDL_uikitappdelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FD689FCD0E26E9D400F90B21 /* SDL_uikitappdelegate.h */; }; + FD8BD8250E27E25900B52CD5 /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = FD8BD8190E27E25900B52CD5 /* SDL_sysloadso.c */; }; + FDA6844D0DF2374E00F98A1A /* SDL_blit.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683000DF2374E00F98A1A /* SDL_blit.c */; }; + FDA6844E0DF2374E00F98A1A /* SDL_blit.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683010DF2374E00F98A1A /* SDL_blit.h */; }; + FDA6844F0DF2374E00F98A1A /* SDL_blit_0.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683020DF2374E00F98A1A /* SDL_blit_0.c */; }; + FDA684500DF2374E00F98A1A /* SDL_blit_1.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683030DF2374E00F98A1A /* SDL_blit_1.c */; }; + FDA684510DF2374E00F98A1A /* SDL_blit_A.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683040DF2374E00F98A1A /* SDL_blit_A.c */; }; + FDA684520DF2374E00F98A1A /* SDL_blit_auto.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683050DF2374E00F98A1A /* SDL_blit_auto.c */; }; + FDA684530DF2374E00F98A1A /* SDL_blit_auto.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683060DF2374E00F98A1A /* SDL_blit_auto.h */; }; + FDA684540DF2374E00F98A1A /* SDL_blit_copy.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683070DF2374E00F98A1A /* SDL_blit_copy.c */; }; + FDA684550DF2374E00F98A1A /* SDL_blit_copy.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683080DF2374E00F98A1A /* SDL_blit_copy.h */; }; + FDA684560DF2374E00F98A1A /* SDL_blit_N.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683090DF2374E00F98A1A /* SDL_blit_N.c */; }; + FDA684570DF2374E00F98A1A /* SDL_blit_slow.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6830A0DF2374E00F98A1A /* SDL_blit_slow.c */; }; + FDA684580DF2374E00F98A1A /* SDL_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6830B0DF2374E00F98A1A /* SDL_bmp.c */; }; + FDA6845C0DF2374E00F98A1A /* SDL_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6830F0DF2374E00F98A1A /* SDL_pixels.c */; }; + FDA6845D0DF2374E00F98A1A /* SDL_pixels_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683100DF2374E00F98A1A /* SDL_pixels_c.h */; }; + FDA6845E0DF2374E00F98A1A /* SDL_rect.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683110DF2374E00F98A1A /* SDL_rect.c */; }; + FDA684620DF2374E00F98A1A /* SDL_RLEaccel.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683150DF2374E00F98A1A /* SDL_RLEaccel.c */; }; + FDA684630DF2374E00F98A1A /* SDL_RLEaccel_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA683160DF2374E00F98A1A /* SDL_RLEaccel_c.h */; }; + FDA684640DF2374E00F98A1A /* SDL_stretch.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683170DF2374E00F98A1A /* SDL_stretch.c */; }; + FDA684660DF2374E00F98A1A /* SDL_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA683190DF2374E00F98A1A /* SDL_surface.c */; }; + FDA684670DF2374E00F98A1A /* SDL_sysvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA6831A0DF2374E00F98A1A /* SDL_sysvideo.h */; }; + FDA684680DF2374E00F98A1A /* SDL_video.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA6831B0DF2374E00F98A1A /* SDL_video.c */; }; + FDA685FB0DF244C800F98A1A /* SDL_nullevents.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA685F50DF244C800F98A1A /* SDL_nullevents.c */; }; + FDA685FC0DF244C800F98A1A /* SDL_nullevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA685F60DF244C800F98A1A /* SDL_nullevents_c.h */; }; + FDA685FF0DF244C800F98A1A /* SDL_nullvideo.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA685F90DF244C800F98A1A /* SDL_nullvideo.c */; }; + FDA686000DF244C800F98A1A /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA685FA0DF244C800F98A1A /* SDL_nullvideo.h */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 006E9886119552DD001DE610 /* SDL_rwopsbundlesupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rwopsbundlesupport.h; sourceTree = ""; }; + 006E9887119552DD001DE610 /* SDL_rwopsbundlesupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_rwopsbundlesupport.m; sourceTree = ""; }; + 0402A85512FE70C600CECEE3 /* SDL_render_gles2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_gles2.c; sourceTree = ""; }; + 0402A85612FE70C600CECEE3 /* SDL_shaders_gles2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_shaders_gles2.c; sourceTree = ""; }; + 0402A85712FE70C600CECEE3 /* SDL_shaders_gles2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_shaders_gles2.h; sourceTree = ""; }; + 041B2CEA12FA0F680087D585 /* SDL_render.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render.c; sourceTree = ""; }; + 041B2CEB12FA0F680087D585 /* SDL_sysrender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysrender.h; sourceTree = ""; }; + 0420496E11E6F03D007E7EC9 /* SDL_clipboardevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_clipboardevents_c.h; sourceTree = ""; }; + 0420496F11E6F03D007E7EC9 /* SDL_clipboardevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_clipboardevents.c; sourceTree = ""; }; + 04409BA212FA989600FB9AA8 /* mmx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmx.h; sourceTree = ""; }; + 04409BA312FA989600FB9AA8 /* SDL_yuv_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_mmx.c; sourceTree = ""; }; + 04409BA412FA989600FB9AA8 /* SDL_yuv_sw_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_yuv_sw_c.h; sourceTree = ""; }; + 04409BA512FA989600FB9AA8 /* SDL_yuv_sw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_sw.c; sourceTree = ""; }; + 0442EC4E12FE1C1E004C9285 /* SDL_render_sw_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_render_sw_c.h; sourceTree = ""; }; + 0442EC4F12FE1C1E004C9285 /* SDL_render_sw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_sw.c; sourceTree = ""; }; + 0442EC5212FE1C28004C9285 /* SDL_render_gles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_gles.c; sourceTree = ""; }; + 0442EC5412FE1C3F004C9285 /* SDL_hints.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_hints.c; path = ../../src/SDL_hints.c; sourceTree = SOURCE_ROOT; }; + 044E5FB711E606EB0076F181 /* SDL_clipboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_clipboard.c; sourceTree = ""; }; + 0463873A0F0B5B7D0041FD65 /* SDL_blit_slow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_slow.h; sourceTree = ""; }; + 0463873E0F0B5B7D0041FD65 /* SDL_fillrect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_fillrect.c; sourceTree = ""; }; + 047677B80EA76A31008ABAF1 /* SDL_syshaptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syshaptic.c; sourceTree = ""; }; + 047677B90EA76A31008ABAF1 /* SDL_haptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_haptic.c; path = ../../src/haptic/SDL_haptic.c; sourceTree = SOURCE_ROOT; }; + 047677BA0EA76A31008ABAF1 /* SDL_syshaptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_syshaptic.h; path = ../../src/haptic/SDL_syshaptic.h; sourceTree = SOURCE_ROOT; }; + 047AF1B20EA98D6C00811173 /* SDL_sysloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysloadso.c; sourceTree = ""; }; + 04BA9D5F11EF474A00B60E01 /* SDL_gesture_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gesture_c.h; sourceTree = ""; }; + 04BA9D6011EF474A00B60E01 /* SDL_gesture.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_gesture.c; sourceTree = ""; }; + 04BA9D6111EF474A00B60E01 /* SDL_touch_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_touch_c.h; sourceTree = ""; }; + 04BA9D6211EF474A00B60E01 /* SDL_touch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_touch.c; sourceTree = ""; }; + 04BAC09A1300C1290055DE28 /* SDL_assert_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_assert_c.h; path = ../../src/SDL_assert_c.h; sourceTree = SOURCE_ROOT; }; + 04BAC09B1300C1290055DE28 /* SDL_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_log.c; path = ../../src/SDL_log.c; sourceTree = SOURCE_ROOT; }; + 04F2AF551104ABD200D6DDF7 /* SDL_assert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_assert.c; path = ../../src/SDL_assert.c; sourceTree = SOURCE_ROOT; }; + 04F7806A12FB751400FC43C0 /* SDL_blendfillrect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendfillrect.c; sourceTree = ""; }; + 04F7806B12FB751400FC43C0 /* SDL_blendfillrect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendfillrect.h; sourceTree = ""; }; + 04F7806C12FB751400FC43C0 /* SDL_blendline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendline.c; sourceTree = ""; }; + 04F7806D12FB751400FC43C0 /* SDL_blendline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendline.h; sourceTree = ""; }; + 04F7806E12FB751400FC43C0 /* SDL_blendpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendpoint.c; sourceTree = ""; }; + 04F7806F12FB751400FC43C0 /* SDL_blendpoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendpoint.h; sourceTree = ""; }; + 04F7807012FB751400FC43C0 /* SDL_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_draw.h; sourceTree = ""; }; + 04F7807112FB751400FC43C0 /* SDL_drawline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_drawline.c; sourceTree = ""; }; + 04F7807212FB751400FC43C0 /* SDL_drawline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_drawline.h; sourceTree = ""; }; + 04F7807312FB751400FC43C0 /* SDL_drawpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_drawpoint.c; sourceTree = ""; }; + 04F7807412FB751400FC43C0 /* SDL_drawpoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_drawpoint.h; sourceTree = ""; }; + 04F7808212FB753F00FC43C0 /* SDL_nullframebuffer_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullframebuffer_c.h; sourceTree = ""; }; + 04F7808312FB753F00FC43C0 /* SDL_nullframebuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullframebuffer.c; sourceTree = ""; }; + 04FFAB8912E23B8D00BA343D /* SDL_atomic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_atomic.c; sourceTree = ""; }; + 04FFAB8A12E23B8D00BA343D /* SDL_spinlock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_spinlock.c; sourceTree = ""; }; + 56A6702D18565E450007D20F /* SDL_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_internal.h; path = ../../src/SDL_internal.h; sourceTree = ""; }; + 56A6703118565E760007D20F /* SDL_dynapi_overrides.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_dynapi_overrides.h; path = ../../src/dynapi/SDL_dynapi_overrides.h; sourceTree = ""; }; + 56A6703218565E760007D20F /* SDL_dynapi_procs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_dynapi_procs.h; path = ../../src/dynapi/SDL_dynapi_procs.h; sourceTree = ""; }; + 56A6703318565E760007D20F /* SDL_dynapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_dynapi.c; path = ../../src/dynapi/SDL_dynapi.c; sourceTree = ""; }; + 56A6703418565E760007D20F /* SDL_dynapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_dynapi.h; path = ../../src/dynapi/SDL_dynapi.h; sourceTree = ""; }; + 56C181DE17C44D5E00406AE3 /* SDL_filesystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_filesystem.h; sourceTree = ""; }; + 56C181E117C44D7A00406AE3 /* SDL_sysfilesystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDL_sysfilesystem.m; path = ../../src/filesystem/cocoa/SDL_sysfilesystem.m; sourceTree = ""; }; + 56EA86F913E9EC2B002E47EB /* SDL_coreaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_coreaudio.c; path = coreaudio/SDL_coreaudio.c; sourceTree = ""; }; + 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_coreaudio.h; path = coreaudio/SDL_coreaudio.h; sourceTree = ""; }; + 56ED04E0118A8EE200A56AA6 /* SDL_power.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_power.c; path = ../../src/power/SDL_power.c; sourceTree = SOURCE_ROOT; }; + 56ED04E2118A8EFD00A56AA6 /* SDL_syspower.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDL_syspower.m; path = ../../src/power/uikit/SDL_syspower.m; sourceTree = SOURCE_ROOT; }; + 93CB792213FC5E5200BD3E05 /* SDL_uikitviewcontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitviewcontroller.h; sourceTree = ""; }; + 93CB792513FC5F5300BD3E05 /* SDL_uikitviewcontroller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitviewcontroller.m; sourceTree = ""; }; + AA0AD06116647BBB00CE5896 /* SDL_gamecontroller.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_gamecontroller.c; sourceTree = ""; }; + AA0AD06416647BD400CE5896 /* SDL_gamecontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gamecontroller.h; sourceTree = ""; }; + AA0F8494178D5F1A00823F9D /* SDL_systls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systls.c; sourceTree = ""; }; + AA126AD21617C5E6005ABC8F /* SDL_uikitmodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitmodes.h; sourceTree = ""; }; + AA126AD31617C5E6005ABC8F /* SDL_uikitmodes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitmodes.m; sourceTree = ""; }; + AA628AD9159369E3005138DD /* SDL_rotate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rotate.c; sourceTree = ""; }; + AA628ADA159369E3005138DD /* SDL_rotate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rotate.h; sourceTree = ""; }; + AA704DD4162AA90A0076D1C1 /* SDL_dropevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_dropevents_c.h; sourceTree = ""; }; + AA704DD5162AA90A0076D1C1 /* SDL_dropevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_dropevents.c; sourceTree = ""; }; + AA7558651595D55500BBD41B /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = begin_code.h; sourceTree = ""; }; + AA7558661595D55500BBD41B /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = close_code.h; sourceTree = ""; }; + AA7558671595D55500BBD41B /* SDL_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_assert.h; sourceTree = ""; }; + AA7558681595D55500BBD41B /* SDL_atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_atomic.h; sourceTree = ""; }; + AA7558691595D55500BBD41B /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audio.h; sourceTree = ""; }; + AA75586A1595D55500BBD41B /* SDL_blendmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendmode.h; sourceTree = ""; }; + AA75586B1595D55500BBD41B /* SDL_clipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_clipboard.h; sourceTree = ""; }; + AA75586C1595D55500BBD41B /* SDL_config_iphoneos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_config_iphoneos.h; sourceTree = ""; }; + AA75586D1595D55500BBD41B /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_config.h; sourceTree = ""; }; + AA75586E1595D55500BBD41B /* SDL_copying.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_copying.h; sourceTree = ""; }; + AA75586F1595D55500BBD41B /* SDL_cpuinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cpuinfo.h; sourceTree = ""; }; + AA7558701595D55500BBD41B /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_endian.h; sourceTree = ""; }; + AA7558711595D55500BBD41B /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_error.h; sourceTree = ""; }; + AA7558721595D55500BBD41B /* SDL_events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_events.h; sourceTree = ""; }; + AA7558731595D55500BBD41B /* SDL_gesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gesture.h; sourceTree = ""; }; + AA7558741595D55500BBD41B /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_haptic.h; sourceTree = ""; }; + AA7558751595D55500BBD41B /* SDL_hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_hints.h; sourceTree = ""; }; + AA7558771595D55500BBD41B /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_joystick.h; sourceTree = ""; }; + AA7558781595D55500BBD41B /* SDL_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keyboard.h; sourceTree = ""; }; + AA7558791595D55500BBD41B /* SDL_keycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keycode.h; sourceTree = ""; }; + AA75587A1595D55500BBD41B /* SDL_loadso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_loadso.h; sourceTree = ""; }; + AA75587B1595D55500BBD41B /* SDL_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_log.h; sourceTree = ""; }; + AA75587C1595D55500BBD41B /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_main.h; sourceTree = ""; }; + AA75587D1595D55500BBD41B /* SDL_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mouse.h; sourceTree = ""; }; + AA75587E1595D55500BBD41B /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mutex.h; sourceTree = ""; }; + AA75587F1595D55500BBD41B /* SDL_name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_name.h; sourceTree = ""; }; + AA7558801595D55500BBD41B /* SDL_opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengl.h; sourceTree = ""; }; + AA7558811595D55500BBD41B /* SDL_opengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles.h; sourceTree = ""; }; + AA7558821595D55500BBD41B /* SDL_opengles2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2.h; sourceTree = ""; }; + AA7558831595D55500BBD41B /* SDL_pixels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_pixels.h; sourceTree = ""; }; + AA7558841595D55500BBD41B /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_platform.h; sourceTree = ""; }; + AA7558851595D55500BBD41B /* SDL_power.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_power.h; sourceTree = ""; }; + AA7558861595D55500BBD41B /* SDL_quit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_quit.h; sourceTree = ""; }; + AA7558871595D55500BBD41B /* SDL_rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rect.h; sourceTree = ""; }; + AA7558881595D55500BBD41B /* SDL_render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_render.h; sourceTree = ""; }; + AA7558891595D55500BBD41B /* SDL_revision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_revision.h; sourceTree = ""; }; + AA75588A1595D55500BBD41B /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rwops.h; sourceTree = ""; }; + AA75588B1595D55500BBD41B /* SDL_scancode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_scancode.h; sourceTree = ""; }; + AA75588C1595D55500BBD41B /* SDL_shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_shape.h; sourceTree = ""; }; + AA75588D1595D55500BBD41B /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_stdinc.h; sourceTree = ""; }; + AA75588E1595D55500BBD41B /* SDL_surface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_surface.h; sourceTree = ""; }; + AA75588F1595D55500BBD41B /* SDL_system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_system.h; sourceTree = ""; }; + AA7558901595D55500BBD41B /* SDL_syswm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_syswm.h; sourceTree = ""; }; + AA7558911595D55500BBD41B /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_thread.h; sourceTree = ""; }; + AA7558921595D55500BBD41B /* SDL_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_timer.h; sourceTree = ""; }; + AA7558931595D55500BBD41B /* SDL_touch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_touch.h; sourceTree = ""; }; + AA7558941595D55500BBD41B /* SDL_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_types.h; sourceTree = ""; }; + AA7558951595D55500BBD41B /* SDL_version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_version.h; sourceTree = ""; }; + AA7558961595D55500BBD41B /* SDL_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_video.h; sourceTree = ""; }; + AA7558971595D55500BBD41B /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL.h; sourceTree = ""; }; + AA9FF9501637C6E5000DF050 /* SDL_messagebox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_messagebox.h; sourceTree = ""; }; + AABCC3921640643D00AB8930 /* SDL_uikitmessagebox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitmessagebox.h; sourceTree = ""; }; + AABCC3931640643D00AB8930 /* SDL_uikitmessagebox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitmessagebox.m; sourceTree = ""; }; + AADA5B8E16CCAB7C00107CF7 /* SDL_bits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_bits.h; sourceTree = ""; }; + FA1DC2701C62BE65008F99A0 /* SDL_uikitclipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitclipboard.h; sourceTree = ""; }; + FA1DC2711C62BE65008F99A0 /* SDL_uikitclipboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitclipboard.m; sourceTree = ""; }; + FAD4F7011BA3C4E8008346CE /* SDL_sysjoystick_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysjoystick_c.h; sourceTree = ""; }; + FD0BBFEF0E3933DD00D833B1 /* SDL_uikitview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitview.h; sourceTree = ""; }; + FD3F4A700DEA620800C5B771 /* SDL_getenv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_getenv.c; sourceTree = ""; }; + FD3F4A710DEA620800C5B771 /* SDL_iconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_iconv.c; sourceTree = ""; }; + FD3F4A720DEA620800C5B771 /* SDL_malloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_malloc.c; sourceTree = ""; }; + FD3F4A730DEA620800C5B771 /* SDL_qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_qsort.c; sourceTree = ""; }; + FD3F4A740DEA620800C5B771 /* SDL_stdlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_stdlib.c; sourceTree = ""; }; + FD3F4A750DEA620800C5B771 /* SDL_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_string.c; sourceTree = ""; }; + FD5F9D1E0E0E08B3008E885B /* SDL_joystick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_joystick.c; sourceTree = ""; }; + FD5F9D1F0E0E08B3008E885B /* SDL_joystick_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_joystick_c.h; sourceTree = ""; }; + FD5F9D200E0E08B3008E885B /* SDL_sysjoystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysjoystick.h; sourceTree = ""; }; + FD6526630DE8FCCB002AD96B /* libSDL2.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL2.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FD689F000E26E5B600F90B21 /* SDL_sysjoystick.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_sysjoystick.m; sourceTree = ""; }; + FD689F0C0E26E5D900F90B21 /* SDL_uikitevents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitevents.h; sourceTree = ""; }; + FD689F0D0E26E5D900F90B21 /* SDL_uikitevents.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitevents.m; sourceTree = ""; }; + FD689F0E0E26E5D900F90B21 /* SDL_uikitopengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitopengles.h; sourceTree = ""; }; + FD689F0F0E26E5D900F90B21 /* SDL_uikitopengles.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitopengles.m; sourceTree = ""; }; + FD689F100E26E5D900F90B21 /* SDL_uikitvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitvideo.h; sourceTree = ""; }; + FD689F110E26E5D900F90B21 /* SDL_uikitvideo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitvideo.m; sourceTree = ""; }; + FD689F130E26E5D900F90B21 /* SDL_uikitview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitview.m; sourceTree = ""; }; + FD689F140E26E5D900F90B21 /* SDL_uikitwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitwindow.h; sourceTree = ""; }; + FD689F150E26E5D900F90B21 /* SDL_uikitwindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitwindow.m; sourceTree = ""; }; + FD689F160E26E5D900F90B21 /* SDL_uikitopenglview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitopenglview.h; sourceTree = ""; }; + FD689F170E26E5D900F90B21 /* SDL_uikitopenglview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitopenglview.m; sourceTree = ""; }; + FD689FCC0E26E9D400F90B21 /* SDL_uikitappdelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_uikitappdelegate.m; sourceTree = ""; }; + FD689FCD0E26E9D400F90B21 /* SDL_uikitappdelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_uikitappdelegate.h; sourceTree = ""; }; + FD8BD8190E27E25900B52CD5 /* SDL_sysloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysloadso.c; sourceTree = ""; }; + FD99B91D0DD52EDC00FB1D6B /* SDL_dummyaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_dummyaudio.c; sourceTree = ""; }; + FD99B91E0DD52EDC00FB1D6B /* SDL_dummyaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_dummyaudio.h; sourceTree = ""; }; + FD99B9440DD52EDC00FB1D6B /* SDL_audio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audio.c; sourceTree = ""; }; + FD99B9450DD52EDC00FB1D6B /* SDL_audio_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audio_c.h; sourceTree = ""; }; + FD99B9460DD52EDC00FB1D6B /* SDL_audiocvt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audiocvt.c; sourceTree = ""; }; + FD99B9490DD52EDC00FB1D6B /* SDL_audiomem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audiomem.h; sourceTree = ""; }; + FD99B94A0DD52EDC00FB1D6B /* SDL_audiotypecvt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audiotypecvt.c; sourceTree = ""; }; + FD99B94B0DD52EDC00FB1D6B /* SDL_mixer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mixer.c; sourceTree = ""; }; + FD99B9520DD52EDC00FB1D6B /* SDL_sysaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysaudio.h; sourceTree = ""; }; + FD99B9530DD52EDC00FB1D6B /* SDL_wave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_wave.c; sourceTree = ""; }; + FD99B9540DD52EDC00FB1D6B /* SDL_wave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_wave.h; sourceTree = ""; }; + FD99B98B0DD52EDC00FB1D6B /* SDL_cpuinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_cpuinfo.c; sourceTree = ""; }; + FD99B98D0DD52EDC00FB1D6B /* blank_cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blank_cursor.h; sourceTree = ""; }; + FD99B98E0DD52EDC00FB1D6B /* default_cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = default_cursor.h; sourceTree = ""; }; + FD99B98F0DD52EDC00FB1D6B /* scancodes_darwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_darwin.h; sourceTree = ""; }; + FD99B9900DD52EDC00FB1D6B /* scancodes_linux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_linux.h; sourceTree = ""; }; + FD99B9920DD52EDC00FB1D6B /* scancodes_xfree86.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_xfree86.h; sourceTree = ""; }; + FD99B9930DD52EDC00FB1D6B /* SDL_events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_events.c; sourceTree = ""; }; + FD99B9940DD52EDC00FB1D6B /* SDL_events_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_events_c.h; sourceTree = ""; }; + FD99B9950DD52EDC00FB1D6B /* SDL_keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_keyboard.c; sourceTree = ""; }; + FD99B9960DD52EDC00FB1D6B /* SDL_keyboard_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keyboard_c.h; sourceTree = ""; }; + FD99B9970DD52EDC00FB1D6B /* SDL_mouse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mouse.c; sourceTree = ""; }; + FD99B9980DD52EDC00FB1D6B /* SDL_mouse_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mouse_c.h; sourceTree = ""; }; + FD99B9990DD52EDC00FB1D6B /* SDL_quit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_quit.c; sourceTree = ""; }; + FD99B99A0DD52EDC00FB1D6B /* SDL_sysevents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysevents.h; sourceTree = ""; }; + FD99B99B0DD52EDC00FB1D6B /* SDL_windowevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_windowevents.c; sourceTree = ""; }; + FD99B99C0DD52EDC00FB1D6B /* SDL_windowevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_windowevents_c.h; sourceTree = ""; }; + FD99B99E0DD52EDC00FB1D6B /* SDL_rwops.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rwops.c; sourceTree = ""; }; + FD99B9D40DD52EDC00FB1D6B /* SDL_error_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_error_c.h; path = ../../src/SDL_error_c.h; sourceTree = ""; }; + FD99B9D50DD52EDC00FB1D6B /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_error.c; path = ../../src/SDL_error.c; sourceTree = ""; }; + FD99B9D80DD52EDC00FB1D6B /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL.c; path = ../../src/SDL.c; sourceTree = ""; }; + FD99BA070DD52EDC00FB1D6B /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syscond.c; sourceTree = ""; }; + FD99BA080DD52EDC00FB1D6B /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysmutex.c; sourceTree = ""; }; + FD99BA090DD52EDC00FB1D6B /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysmutex_c.h; sourceTree = ""; }; + FD99BA0A0DD52EDC00FB1D6B /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syssem.c; sourceTree = ""; }; + FD99BA0B0DD52EDC00FB1D6B /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systhread.c; sourceTree = ""; }; + FD99BA0C0DD52EDC00FB1D6B /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_systhread_c.h; sourceTree = ""; }; + FD99BA140DD52EDC00FB1D6B /* SDL_systhread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_systhread.h; sourceTree = ""; }; + FD99BA150DD52EDC00FB1D6B /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_thread.c; sourceTree = ""; }; + FD99BA160DD52EDC00FB1D6B /* SDL_thread_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_thread_c.h; sourceTree = ""; }; + FD99BA2E0DD52EDC00FB1D6B /* SDL_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_timer.c; sourceTree = ""; }; + FD99BA2F0DD52EDC00FB1D6B /* SDL_timer_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_timer_c.h; sourceTree = ""; }; + FD99BA310DD52EDC00FB1D6B /* SDL_systimer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systimer.c; sourceTree = ""; }; + FDA683000DF2374E00F98A1A /* SDL_blit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit.c; sourceTree = ""; }; + FDA683010DF2374E00F98A1A /* SDL_blit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit.h; sourceTree = ""; }; + FDA683020DF2374E00F98A1A /* SDL_blit_0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_0.c; sourceTree = ""; }; + FDA683030DF2374E00F98A1A /* SDL_blit_1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_1.c; sourceTree = ""; }; + FDA683040DF2374E00F98A1A /* SDL_blit_A.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_A.c; sourceTree = ""; }; + FDA683050DF2374E00F98A1A /* SDL_blit_auto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_auto.c; sourceTree = ""; }; + FDA683060DF2374E00F98A1A /* SDL_blit_auto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_auto.h; sourceTree = ""; }; + FDA683070DF2374E00F98A1A /* SDL_blit_copy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_copy.c; sourceTree = ""; }; + FDA683080DF2374E00F98A1A /* SDL_blit_copy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_copy.h; sourceTree = ""; }; + FDA683090DF2374E00F98A1A /* SDL_blit_N.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_N.c; sourceTree = ""; }; + FDA6830A0DF2374E00F98A1A /* SDL_blit_slow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_slow.c; sourceTree = ""; }; + FDA6830B0DF2374E00F98A1A /* SDL_bmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_bmp.c; sourceTree = ""; }; + FDA6830F0DF2374E00F98A1A /* SDL_pixels.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_pixels.c; sourceTree = ""; }; + FDA683100DF2374E00F98A1A /* SDL_pixels_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_pixels_c.h; sourceTree = ""; }; + FDA683110DF2374E00F98A1A /* SDL_rect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rect.c; sourceTree = ""; }; + FDA683150DF2374E00F98A1A /* SDL_RLEaccel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_RLEaccel.c; sourceTree = ""; }; + FDA683160DF2374E00F98A1A /* SDL_RLEaccel_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_RLEaccel_c.h; sourceTree = ""; }; + FDA683170DF2374E00F98A1A /* SDL_stretch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_stretch.c; sourceTree = ""; }; + FDA683190DF2374E00F98A1A /* SDL_surface.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_surface.c; sourceTree = ""; }; + FDA6831A0DF2374E00F98A1A /* SDL_sysvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysvideo.h; sourceTree = ""; }; + FDA6831B0DF2374E00F98A1A /* SDL_video.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_video.c; sourceTree = ""; }; + FDA685F50DF244C800F98A1A /* SDL_nullevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullevents.c; sourceTree = ""; }; + FDA685F60DF244C800F98A1A /* SDL_nullevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullevents_c.h; sourceTree = ""; }; + FDA685F90DF244C800F98A1A /* SDL_nullvideo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullvideo.c; sourceTree = ""; }; + FDA685FA0DF244C800F98A1A /* SDL_nullvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullvideo.h; sourceTree = ""; }; + FDC261780E3A3FC8001C4554 /* keyinfotable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = keyinfotable.h; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXGroup section */ + 006E9885119552DD001DE610 /* cocoa */ = { + isa = PBXGroup; + children = ( + 006E9886119552DD001DE610 /* SDL_rwopsbundlesupport.h */, + 006E9887119552DD001DE610 /* SDL_rwopsbundlesupport.m */, + ); + path = cocoa; + sourceTree = ""; + }; + 0402A85412FE70C600CECEE3 /* opengles2 */ = { + isa = PBXGroup; + children = ( + 0402A85512FE70C600CECEE3 /* SDL_render_gles2.c */, + 0402A85612FE70C600CECEE3 /* SDL_shaders_gles2.c */, + 0402A85712FE70C600CECEE3 /* SDL_shaders_gles2.h */, + ); + path = opengles2; + sourceTree = ""; + }; + 041B2CE312FA0F680087D585 /* render */ = { + isa = PBXGroup; + children = ( + 041B2CE812FA0F680087D585 /* opengles */, + 0402A85412FE70C600CECEE3 /* opengles2 */, + 041B2CEC12FA0F680087D585 /* software */, + 04409BA212FA989600FB9AA8 /* mmx.h */, + 041B2CEA12FA0F680087D585 /* SDL_render.c */, + 041B2CEB12FA0F680087D585 /* SDL_sysrender.h */, + 04409BA312FA989600FB9AA8 /* SDL_yuv_mmx.c */, + 04409BA412FA989600FB9AA8 /* SDL_yuv_sw_c.h */, + 04409BA512FA989600FB9AA8 /* SDL_yuv_sw.c */, + ); + name = render; + path = ../../src/render; + sourceTree = SOURCE_ROOT; + }; + 041B2CE812FA0F680087D585 /* opengles */ = { + isa = PBXGroup; + children = ( + 0442EC5212FE1C28004C9285 /* SDL_render_gles.c */, + ); + path = opengles; + sourceTree = ""; + }; + 041B2CEC12FA0F680087D585 /* software */ = { + isa = PBXGroup; + children = ( + 04F7806A12FB751400FC43C0 /* SDL_blendfillrect.c */, + 04F7806B12FB751400FC43C0 /* SDL_blendfillrect.h */, + 04F7806C12FB751400FC43C0 /* SDL_blendline.c */, + 04F7806D12FB751400FC43C0 /* SDL_blendline.h */, + 04F7806E12FB751400FC43C0 /* SDL_blendpoint.c */, + 04F7806F12FB751400FC43C0 /* SDL_blendpoint.h */, + 04F7807012FB751400FC43C0 /* SDL_draw.h */, + 04F7807112FB751400FC43C0 /* SDL_drawline.c */, + 04F7807212FB751400FC43C0 /* SDL_drawline.h */, + 04F7807312FB751400FC43C0 /* SDL_drawpoint.c */, + 04F7807412FB751400FC43C0 /* SDL_drawpoint.h */, + 0442EC4F12FE1C1E004C9285 /* SDL_render_sw.c */, + 0442EC4E12FE1C1E004C9285 /* SDL_render_sw_c.h */, + AA628AD9159369E3005138DD /* SDL_rotate.c */, + AA628ADA159369E3005138DD /* SDL_rotate.h */, + ); + path = software; + sourceTree = ""; + }; + 047677B60EA769DF008ABAF1 /* haptic */ = { + isa = PBXGroup; + children = ( + 047677B70EA76A31008ABAF1 /* dummy */, + 047677B90EA76A31008ABAF1 /* SDL_haptic.c */, + 047677BA0EA76A31008ABAF1 /* SDL_syshaptic.h */, + ); + name = haptic; + sourceTree = ""; + }; + 047677B70EA76A31008ABAF1 /* dummy */ = { + isa = PBXGroup; + children = ( + 047677B80EA76A31008ABAF1 /* SDL_syshaptic.c */, + ); + name = dummy; + path = ../../src/haptic/dummy; + sourceTree = SOURCE_ROOT; + }; + 047AF1B10EA98D6C00811173 /* dummy */ = { + isa = PBXGroup; + children = ( + 047AF1B20EA98D6C00811173 /* SDL_sysloadso.c */, + ); + path = dummy; + sourceTree = ""; + }; + 04B2ECEF1025CEB900F9BC5F /* atomic */ = { + isa = PBXGroup; + children = ( + 04FFAB8912E23B8D00BA343D /* SDL_atomic.c */, + 04FFAB8A12E23B8D00BA343D /* SDL_spinlock.c */, + ); + name = atomic; + path = ../../src/atomic; + sourceTree = SOURCE_ROOT; + }; + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + FD6526630DE8FCCB002AD96B /* libSDL2.a */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { + isa = PBXGroup; + children = ( + FD99B8BC0DD52E5C00FB1D6B /* Public Headers */, + FD99B8BD0DD52E6D00FB1D6B /* Library Source */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = CustomTemplate; + sourceTree = ""; + usesTabs = 0; + }; + 56A6702F18565E4F0007D20F /* dynapi */ = { + isa = PBXGroup; + children = ( + 56A6703118565E760007D20F /* SDL_dynapi_overrides.h */, + 56A6703218565E760007D20F /* SDL_dynapi_procs.h */, + 56A6703318565E760007D20F /* SDL_dynapi.c */, + 56A6703418565E760007D20F /* SDL_dynapi.h */, + ); + name = dynapi; + sourceTree = ""; + }; + 56C181E017C44D6900406AE3 /* filesystem */ = { + isa = PBXGroup; + children = ( + 56C181E117C44D7A00406AE3 /* SDL_sysfilesystem.m */, + ); + name = filesystem; + sourceTree = ""; + }; + 56EA86F813E9EBF9002E47EB /* coreaudio */ = { + isa = PBXGroup; + children = ( + 56EA86F913E9EC2B002E47EB /* SDL_coreaudio.c */, + 56EA86FA13E9EC2B002E47EB /* SDL_coreaudio.h */, + ); + name = coreaudio; + sourceTree = ""; + }; + 56ED04DE118A8E9A00A56AA6 /* power */ = { + isa = PBXGroup; + children = ( + 56ED04E0118A8EE200A56AA6 /* SDL_power.c */, + 56ED04DF118A8EB700A56AA6 /* uikit */, + ); + name = power; + sourceTree = ""; + }; + 56ED04DF118A8EB700A56AA6 /* uikit */ = { + isa = PBXGroup; + children = ( + 56ED04E2118A8EFD00A56AA6 /* SDL_syspower.m */, + ); + name = uikit; + sourceTree = ""; + }; + FD3F4A6F0DEA620800C5B771 /* stdlib */ = { + isa = PBXGroup; + children = ( + FD3F4A700DEA620800C5B771 /* SDL_getenv.c */, + FD3F4A710DEA620800C5B771 /* SDL_iconv.c */, + FD3F4A720DEA620800C5B771 /* SDL_malloc.c */, + FD3F4A730DEA620800C5B771 /* SDL_qsort.c */, + FD3F4A740DEA620800C5B771 /* SDL_stdlib.c */, + FD3F4A750DEA620800C5B771 /* SDL_string.c */, + ); + name = stdlib; + path = ../../src/stdlib; + sourceTree = SOURCE_ROOT; + }; + FD5F9D080E0E08B3008E885B /* joystick */ = { + isa = PBXGroup; + children = ( + FD689EFF0E26E5B600F90B21 /* iphoneos */, + AA0AD06116647BBB00CE5896 /* SDL_gamecontroller.c */, + FD5F9D1E0E0E08B3008E885B /* SDL_joystick.c */, + FD5F9D1F0E0E08B3008E885B /* SDL_joystick_c.h */, + FD5F9D200E0E08B3008E885B /* SDL_sysjoystick.h */, + ); + name = joystick; + path = ../../src/joystick; + sourceTree = SOURCE_ROOT; + }; + FD689EFF0E26E5B600F90B21 /* iphoneos */ = { + isa = PBXGroup; + children = ( + FAD4F7011BA3C4E8008346CE /* SDL_sysjoystick_c.h */, + FD689F000E26E5B600F90B21 /* SDL_sysjoystick.m */, + ); + path = iphoneos; + sourceTree = ""; + }; + FD689F090E26E5D900F90B21 /* uikit */ = { + isa = PBXGroup; + children = ( + FDC261780E3A3FC8001C4554 /* keyinfotable.h */, + FD689FCD0E26E9D400F90B21 /* SDL_uikitappdelegate.h */, + FD689FCC0E26E9D400F90B21 /* SDL_uikitappdelegate.m */, + FA1DC2701C62BE65008F99A0 /* SDL_uikitclipboard.h */, + FA1DC2711C62BE65008F99A0 /* SDL_uikitclipboard.m */, + FD689F0C0E26E5D900F90B21 /* SDL_uikitevents.h */, + FD689F0D0E26E5D900F90B21 /* SDL_uikitevents.m */, + AABCC3921640643D00AB8930 /* SDL_uikitmessagebox.h */, + AABCC3931640643D00AB8930 /* SDL_uikitmessagebox.m */, + AA126AD21617C5E6005ABC8F /* SDL_uikitmodes.h */, + AA126AD31617C5E6005ABC8F /* SDL_uikitmodes.m */, + FD689F0E0E26E5D900F90B21 /* SDL_uikitopengles.h */, + FD689F0F0E26E5D900F90B21 /* SDL_uikitopengles.m */, + FD689F160E26E5D900F90B21 /* SDL_uikitopenglview.h */, + FD689F170E26E5D900F90B21 /* SDL_uikitopenglview.m */, + FD689F100E26E5D900F90B21 /* SDL_uikitvideo.h */, + FD689F110E26E5D900F90B21 /* SDL_uikitvideo.m */, + FD0BBFEF0E3933DD00D833B1 /* SDL_uikitview.h */, + FD689F130E26E5D900F90B21 /* SDL_uikitview.m */, + 93CB792213FC5E5200BD3E05 /* SDL_uikitviewcontroller.h */, + 93CB792513FC5F5300BD3E05 /* SDL_uikitviewcontroller.m */, + FD689F140E26E5D900F90B21 /* SDL_uikitwindow.h */, + FD689F150E26E5D900F90B21 /* SDL_uikitwindow.m */, + ); + path = uikit; + sourceTree = ""; + }; + FD8BD8150E27E25900B52CD5 /* loadso */ = { + isa = PBXGroup; + children = ( + 047AF1B10EA98D6C00811173 /* dummy */, + FD8BD8180E27E25900B52CD5 /* dlopen */, + ); + name = loadso; + path = ../../src/loadso; + sourceTree = SOURCE_ROOT; + }; + FD8BD8180E27E25900B52CD5 /* dlopen */ = { + isa = PBXGroup; + children = ( + FD8BD8190E27E25900B52CD5 /* SDL_sysloadso.c */, + ); + path = dlopen; + sourceTree = ""; + }; + FD99B8BC0DD52E5C00FB1D6B /* Public Headers */ = { + isa = PBXGroup; + children = ( + AA7558651595D55500BBD41B /* begin_code.h */, + AA7558661595D55500BBD41B /* close_code.h */, + AA7558971595D55500BBD41B /* SDL.h */, + AA7558671595D55500BBD41B /* SDL_assert.h */, + AA7558681595D55500BBD41B /* SDL_atomic.h */, + AA7558691595D55500BBD41B /* SDL_audio.h */, + AADA5B8E16CCAB7C00107CF7 /* SDL_bits.h */, + AA75586A1595D55500BBD41B /* SDL_blendmode.h */, + AA75586B1595D55500BBD41B /* SDL_clipboard.h */, + AA75586D1595D55500BBD41B /* SDL_config.h */, + AA75586C1595D55500BBD41B /* SDL_config_iphoneos.h */, + AA75586E1595D55500BBD41B /* SDL_copying.h */, + AA75586F1595D55500BBD41B /* SDL_cpuinfo.h */, + AA7558701595D55500BBD41B /* SDL_endian.h */, + AA7558711595D55500BBD41B /* SDL_error.h */, + AA7558721595D55500BBD41B /* SDL_events.h */, + 56C181DE17C44D5E00406AE3 /* SDL_filesystem.h */, + AA0AD06416647BD400CE5896 /* SDL_gamecontroller.h */, + AA7558731595D55500BBD41B /* SDL_gesture.h */, + AA7558741595D55500BBD41B /* SDL_haptic.h */, + AA7558751595D55500BBD41B /* SDL_hints.h */, + AA7558771595D55500BBD41B /* SDL_joystick.h */, + AA7558781595D55500BBD41B /* SDL_keyboard.h */, + AA7558791595D55500BBD41B /* SDL_keycode.h */, + AA75587A1595D55500BBD41B /* SDL_loadso.h */, + AA75587B1595D55500BBD41B /* SDL_log.h */, + AA75587C1595D55500BBD41B /* SDL_main.h */, + AA9FF9501637C6E5000DF050 /* SDL_messagebox.h */, + AA75587D1595D55500BBD41B /* SDL_mouse.h */, + AA75587E1595D55500BBD41B /* SDL_mutex.h */, + AA75587F1595D55500BBD41B /* SDL_name.h */, + AA7558801595D55500BBD41B /* SDL_opengl.h */, + AA7558811595D55500BBD41B /* SDL_opengles.h */, + AA7558821595D55500BBD41B /* SDL_opengles2.h */, + AA7558831595D55500BBD41B /* SDL_pixels.h */, + AA7558841595D55500BBD41B /* SDL_platform.h */, + AA7558851595D55500BBD41B /* SDL_power.h */, + AA7558861595D55500BBD41B /* SDL_quit.h */, + AA7558871595D55500BBD41B /* SDL_rect.h */, + AA7558881595D55500BBD41B /* SDL_render.h */, + AA7558891595D55500BBD41B /* SDL_revision.h */, + AA75588A1595D55500BBD41B /* SDL_rwops.h */, + AA75588B1595D55500BBD41B /* SDL_scancode.h */, + AA75588C1595D55500BBD41B /* SDL_shape.h */, + AA75588D1595D55500BBD41B /* SDL_stdinc.h */, + AA75588E1595D55500BBD41B /* SDL_surface.h */, + AA75588F1595D55500BBD41B /* SDL_system.h */, + AA7558901595D55500BBD41B /* SDL_syswm.h */, + AA7558911595D55500BBD41B /* SDL_thread.h */, + AA7558921595D55500BBD41B /* SDL_timer.h */, + AA7558931595D55500BBD41B /* SDL_touch.h */, + AA7558941595D55500BBD41B /* SDL_types.h */, + AA7558951595D55500BBD41B /* SDL_version.h */, + AA7558961595D55500BBD41B /* SDL_video.h */, + ); + name = "Public Headers"; + path = ../../include; + sourceTree = ""; + }; + FD99B8BD0DD52E6D00FB1D6B /* Library Source */ = { + isa = PBXGroup; + children = ( + 04B2ECEF1025CEB900F9BC5F /* atomic */, + FD99B8FB0DD52EDC00FB1D6B /* audio */, + FD99B98A0DD52EDC00FB1D6B /* cpuinfo */, + 56A6702F18565E4F0007D20F /* dynapi */, + FD99B98C0DD52EDC00FB1D6B /* events */, + FD99B99D0DD52EDC00FB1D6B /* file */, + 56C181E017C44D6900406AE3 /* filesystem */, + 047677B60EA769DF008ABAF1 /* haptic */, + FD5F9D080E0E08B3008E885B /* joystick */, + FD8BD8150E27E25900B52CD5 /* loadso */, + 56ED04DE118A8E9A00A56AA6 /* power */, + 041B2CE312FA0F680087D585 /* render */, + FD3F4A6F0DEA620800C5B771 /* stdlib */, + FD99B9E00DD52EDC00FB1D6B /* thread */, + FD99BA1E0DD52EDC00FB1D6B /* timer */, + FDA682420DF2374D00F98A1A /* video */, + 56A6702D18565E450007D20F /* SDL_internal.h */, + 04F2AF551104ABD200D6DDF7 /* SDL_assert.c */, + 04BAC09A1300C1290055DE28 /* SDL_assert_c.h */, + FD99B9D40DD52EDC00FB1D6B /* SDL_error_c.h */, + FD99B9D50DD52EDC00FB1D6B /* SDL_error.c */, + 0442EC5412FE1C3F004C9285 /* SDL_hints.c */, + 04BAC09B1300C1290055DE28 /* SDL_log.c */, + FD99B9D80DD52EDC00FB1D6B /* SDL.c */, + ); + name = "Library Source"; + sourceTree = ""; + }; + FD99B8FB0DD52EDC00FB1D6B /* audio */ = { + isa = PBXGroup; + children = ( + 56EA86F813E9EBF9002E47EB /* coreaudio */, + FD99B91C0DD52EDC00FB1D6B /* dummy */, + FD99B9440DD52EDC00FB1D6B /* SDL_audio.c */, + FD99B9450DD52EDC00FB1D6B /* SDL_audio_c.h */, + FD99B9460DD52EDC00FB1D6B /* SDL_audiocvt.c */, + FD99B9490DD52EDC00FB1D6B /* SDL_audiomem.h */, + FD99B94A0DD52EDC00FB1D6B /* SDL_audiotypecvt.c */, + FD99B94B0DD52EDC00FB1D6B /* SDL_mixer.c */, + FD99B9520DD52EDC00FB1D6B /* SDL_sysaudio.h */, + FD99B9530DD52EDC00FB1D6B /* SDL_wave.c */, + FD99B9540DD52EDC00FB1D6B /* SDL_wave.h */, + ); + name = audio; + path = ../../src/audio; + sourceTree = ""; + }; + FD99B91C0DD52EDC00FB1D6B /* dummy */ = { + isa = PBXGroup; + children = ( + FD99B91D0DD52EDC00FB1D6B /* SDL_dummyaudio.c */, + FD99B91E0DD52EDC00FB1D6B /* SDL_dummyaudio.h */, + ); + path = dummy; + sourceTree = ""; + }; + FD99B98A0DD52EDC00FB1D6B /* cpuinfo */ = { + isa = PBXGroup; + children = ( + FD99B98B0DD52EDC00FB1D6B /* SDL_cpuinfo.c */, + ); + name = cpuinfo; + path = ../../src/cpuinfo; + sourceTree = ""; + }; + FD99B98C0DD52EDC00FB1D6B /* events */ = { + isa = PBXGroup; + children = ( + FD99B98D0DD52EDC00FB1D6B /* blank_cursor.h */, + FD99B98E0DD52EDC00FB1D6B /* default_cursor.h */, + FD99B98F0DD52EDC00FB1D6B /* scancodes_darwin.h */, + FD99B9900DD52EDC00FB1D6B /* scancodes_linux.h */, + FD99B9920DD52EDC00FB1D6B /* scancodes_xfree86.h */, + 0420496F11E6F03D007E7EC9 /* SDL_clipboardevents.c */, + 0420496E11E6F03D007E7EC9 /* SDL_clipboardevents_c.h */, + AA704DD5162AA90A0076D1C1 /* SDL_dropevents.c */, + AA704DD4162AA90A0076D1C1 /* SDL_dropevents_c.h */, + FD99B9930DD52EDC00FB1D6B /* SDL_events.c */, + FD99B9940DD52EDC00FB1D6B /* SDL_events_c.h */, + 04BA9D6011EF474A00B60E01 /* SDL_gesture.c */, + 04BA9D5F11EF474A00B60E01 /* SDL_gesture_c.h */, + FD99B9950DD52EDC00FB1D6B /* SDL_keyboard.c */, + FD99B9960DD52EDC00FB1D6B /* SDL_keyboard_c.h */, + FD99B9970DD52EDC00FB1D6B /* SDL_mouse.c */, + FD99B9980DD52EDC00FB1D6B /* SDL_mouse_c.h */, + FD99B9990DD52EDC00FB1D6B /* SDL_quit.c */, + FD99B99A0DD52EDC00FB1D6B /* SDL_sysevents.h */, + 04BA9D6211EF474A00B60E01 /* SDL_touch.c */, + 04BA9D6111EF474A00B60E01 /* SDL_touch_c.h */, + FD99B99B0DD52EDC00FB1D6B /* SDL_windowevents.c */, + FD99B99C0DD52EDC00FB1D6B /* SDL_windowevents_c.h */, + ); + name = events; + path = ../../src/events; + sourceTree = ""; + }; + FD99B99D0DD52EDC00FB1D6B /* file */ = { + isa = PBXGroup; + children = ( + 006E9885119552DD001DE610 /* cocoa */, + FD99B99E0DD52EDC00FB1D6B /* SDL_rwops.c */, + ); + name = file; + path = ../../src/file; + sourceTree = ""; + }; + FD99B9E00DD52EDC00FB1D6B /* thread */ = { + isa = PBXGroup; + children = ( + FD99BA060DD52EDC00FB1D6B /* pthread */, + FD99BA140DD52EDC00FB1D6B /* SDL_systhread.h */, + FD99BA150DD52EDC00FB1D6B /* SDL_thread.c */, + FD99BA160DD52EDC00FB1D6B /* SDL_thread_c.h */, + ); + name = thread; + path = ../../src/thread; + sourceTree = ""; + }; + FD99BA060DD52EDC00FB1D6B /* pthread */ = { + isa = PBXGroup; + children = ( + FD99BA070DD52EDC00FB1D6B /* SDL_syscond.c */, + FD99BA080DD52EDC00FB1D6B /* SDL_sysmutex.c */, + FD99BA090DD52EDC00FB1D6B /* SDL_sysmutex_c.h */, + FD99BA0A0DD52EDC00FB1D6B /* SDL_syssem.c */, + FD99BA0B0DD52EDC00FB1D6B /* SDL_systhread.c */, + FD99BA0C0DD52EDC00FB1D6B /* SDL_systhread_c.h */, + AA0F8494178D5F1A00823F9D /* SDL_systls.c */, + ); + path = pthread; + sourceTree = ""; + }; + FD99BA1E0DD52EDC00FB1D6B /* timer */ = { + isa = PBXGroup; + children = ( + FD99BA300DD52EDC00FB1D6B /* unix */, + FD99BA2E0DD52EDC00FB1D6B /* SDL_timer.c */, + FD99BA2F0DD52EDC00FB1D6B /* SDL_timer_c.h */, + ); + name = timer; + path = ../../src/timer; + sourceTree = ""; + }; + FD99BA300DD52EDC00FB1D6B /* unix */ = { + isa = PBXGroup; + children = ( + FD99BA310DD52EDC00FB1D6B /* SDL_systimer.c */, + ); + path = unix; + sourceTree = ""; + }; + FDA682420DF2374D00F98A1A /* video */ = { + isa = PBXGroup; + children = ( + FD689F090E26E5D900F90B21 /* uikit */, + FDA685F40DF244C800F98A1A /* dummy */, + FDA683000DF2374E00F98A1A /* SDL_blit.c */, + FDA683010DF2374E00F98A1A /* SDL_blit.h */, + FDA683020DF2374E00F98A1A /* SDL_blit_0.c */, + FDA683030DF2374E00F98A1A /* SDL_blit_1.c */, + FDA683040DF2374E00F98A1A /* SDL_blit_A.c */, + FDA683050DF2374E00F98A1A /* SDL_blit_auto.c */, + FDA683060DF2374E00F98A1A /* SDL_blit_auto.h */, + FDA683070DF2374E00F98A1A /* SDL_blit_copy.c */, + FDA683080DF2374E00F98A1A /* SDL_blit_copy.h */, + FDA683090DF2374E00F98A1A /* SDL_blit_N.c */, + FDA6830A0DF2374E00F98A1A /* SDL_blit_slow.c */, + 0463873A0F0B5B7D0041FD65 /* SDL_blit_slow.h */, + FDA6830B0DF2374E00F98A1A /* SDL_bmp.c */, + 044E5FB711E606EB0076F181 /* SDL_clipboard.c */, + 0463873E0F0B5B7D0041FD65 /* SDL_fillrect.c */, + FDA6830F0DF2374E00F98A1A /* SDL_pixels.c */, + FDA683100DF2374E00F98A1A /* SDL_pixels_c.h */, + FDA683110DF2374E00F98A1A /* SDL_rect.c */, + FDA683150DF2374E00F98A1A /* SDL_RLEaccel.c */, + FDA683160DF2374E00F98A1A /* SDL_RLEaccel_c.h */, + FDA683170DF2374E00F98A1A /* SDL_stretch.c */, + FDA683190DF2374E00F98A1A /* SDL_surface.c */, + FDA6831A0DF2374E00F98A1A /* SDL_sysvideo.h */, + FDA6831B0DF2374E00F98A1A /* SDL_video.c */, + ); + name = video; + path = ../../src/video; + sourceTree = SOURCE_ROOT; + }; + FDA685F40DF244C800F98A1A /* dummy */ = { + isa = PBXGroup; + children = ( + FDA685F50DF244C800F98A1A /* SDL_nullevents.c */, + FDA685F60DF244C800F98A1A /* SDL_nullevents_c.h */, + 04F7808212FB753F00FC43C0 /* SDL_nullframebuffer_c.h */, + 04F7808312FB753F00FC43C0 /* SDL_nullframebuffer.c */, + FDA685F90DF244C800F98A1A /* SDL_nullvideo.c */, + FDA685FA0DF244C800F98A1A /* SDL_nullvideo.h */, + ); + path = dummy; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + FD65265F0DE8FCCB002AD96B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + FDA6844E0DF2374E00F98A1A /* SDL_blit.h in Headers */, + FDA684530DF2374E00F98A1A /* SDL_blit_auto.h in Headers */, + FDA684550DF2374E00F98A1A /* SDL_blit_copy.h in Headers */, + FDA6845D0DF2374E00F98A1A /* SDL_pixels_c.h in Headers */, + 56A6703618565E760007D20F /* SDL_dynapi_procs.h in Headers */, + FDA684630DF2374E00F98A1A /* SDL_RLEaccel_c.h in Headers */, + FDA684670DF2374E00F98A1A /* SDL_sysvideo.h in Headers */, + FDA685FC0DF244C800F98A1A /* SDL_nullevents_c.h in Headers */, + FDA686000DF244C800F98A1A /* SDL_nullvideo.h in Headers */, + FD5F9D300E0E08B3008E885B /* SDL_joystick_c.h in Headers */, + FD5F9D310E0E08B3008E885B /* SDL_sysjoystick.h in Headers */, + FD689F1C0E26E5D900F90B21 /* SDL_uikitevents.h in Headers */, + FD689F1E0E26E5D900F90B21 /* SDL_uikitopengles.h in Headers */, + FD689F200E26E5D900F90B21 /* SDL_uikitvideo.h in Headers */, + FD689F240E26E5D900F90B21 /* SDL_uikitwindow.h in Headers */, + FD689F260E26E5D900F90B21 /* SDL_uikitopenglview.h in Headers */, + 56A6703818565E760007D20F /* SDL_dynapi.h in Headers */, + FD689FCF0E26E9D400F90B21 /* SDL_uikitappdelegate.h in Headers */, + 56A6703518565E760007D20F /* SDL_dynapi_overrides.h in Headers */, + 047677BD0EA76A31008ABAF1 /* SDL_syshaptic.h in Headers */, + 046387420F0B5B7D0041FD65 /* SDL_blit_slow.h in Headers */, + 006E9888119552DD001DE610 /* SDL_rwopsbundlesupport.h in Headers */, + 0420497011E6F03D007E7EC9 /* SDL_clipboardevents_c.h in Headers */, + 04BA9D6311EF474A00B60E01 /* SDL_gesture_c.h in Headers */, + 04BA9D6511EF474A00B60E01 /* SDL_touch_c.h in Headers */, + 041B2CF212FA0F680087D585 /* SDL_sysrender.h in Headers */, + 04409BA612FA989600FB9AA8 /* mmx.h in Headers */, + 04409BA812FA989600FB9AA8 /* SDL_yuv_sw_c.h in Headers */, + 04F7807712FB751400FC43C0 /* SDL_blendfillrect.h in Headers */, + 04F7807912FB751400FC43C0 /* SDL_blendline.h in Headers */, + 04F7807B12FB751400FC43C0 /* SDL_blendpoint.h in Headers */, + 04F7807C12FB751400FC43C0 /* SDL_draw.h in Headers */, + 04F7807E12FB751400FC43C0 /* SDL_drawline.h in Headers */, + 04F7808012FB751400FC43C0 /* SDL_drawpoint.h in Headers */, + 04F7808412FB753F00FC43C0 /* SDL_nullframebuffer_c.h in Headers */, + 0442EC5012FE1C1E004C9285 /* SDL_render_sw_c.h in Headers */, + FA1DC2721C62BE65008F99A0 /* SDL_uikitclipboard.h in Headers */, + 0402A85A12FE70C600CECEE3 /* SDL_shaders_gles2.h in Headers */, + 04BAC09C1300C1290055DE28 /* SDL_assert_c.h in Headers */, + 56EA86FC13E9EC2B002E47EB /* SDL_coreaudio.h in Headers */, + 93CB792313FC5E5200BD3E05 /* SDL_uikitviewcontroller.h in Headers */, + AA628ADC159369E3005138DD /* SDL_rotate.h in Headers */, + AA7558981595D55500BBD41B /* begin_code.h in Headers */, + AA7558991595D55500BBD41B /* close_code.h in Headers */, + AA75589A1595D55500BBD41B /* SDL_assert.h in Headers */, + AA75589B1595D55500BBD41B /* SDL_atomic.h in Headers */, + AA75589C1595D55500BBD41B /* SDL_audio.h in Headers */, + AA75589D1595D55500BBD41B /* SDL_blendmode.h in Headers */, + AA75589E1595D55500BBD41B /* SDL_clipboard.h in Headers */, + AA75589F1595D55500BBD41B /* SDL_config_iphoneos.h in Headers */, + AA7558A01595D55500BBD41B /* SDL_config.h in Headers */, + AA7558A11595D55500BBD41B /* SDL_copying.h in Headers */, + AA7558A21595D55500BBD41B /* SDL_cpuinfo.h in Headers */, + AA7558A31595D55500BBD41B /* SDL_endian.h in Headers */, + AA7558A41595D55500BBD41B /* SDL_error.h in Headers */, + 56A6702E18565E450007D20F /* SDL_internal.h in Headers */, + AA7558A51595D55500BBD41B /* SDL_events.h in Headers */, + AA7558A61595D55500BBD41B /* SDL_gesture.h in Headers */, + AA7558A71595D55500BBD41B /* SDL_haptic.h in Headers */, + AA7558A81595D55500BBD41B /* SDL_hints.h in Headers */, + AA7558AA1595D55500BBD41B /* SDL_joystick.h in Headers */, + AA7558AB1595D55500BBD41B /* SDL_keyboard.h in Headers */, + AA7558AC1595D55500BBD41B /* SDL_keycode.h in Headers */, + AA7558AD1595D55500BBD41B /* SDL_loadso.h in Headers */, + AA7558AE1595D55500BBD41B /* SDL_log.h in Headers */, + AA7558AF1595D55500BBD41B /* SDL_main.h in Headers */, + AA7558B01595D55500BBD41B /* SDL_mouse.h in Headers */, + AA7558B11595D55500BBD41B /* SDL_mutex.h in Headers */, + AA7558B21595D55500BBD41B /* SDL_name.h in Headers */, + AA7558B31595D55500BBD41B /* SDL_opengl.h in Headers */, + AA7558B41595D55500BBD41B /* SDL_opengles.h in Headers */, + AA7558B51595D55500BBD41B /* SDL_opengles2.h in Headers */, + AA7558B61595D55500BBD41B /* SDL_pixels.h in Headers */, + AA7558B71595D55500BBD41B /* SDL_platform.h in Headers */, + AA7558B81595D55500BBD41B /* SDL_power.h in Headers */, + AA7558B91595D55500BBD41B /* SDL_quit.h in Headers */, + AA7558BA1595D55500BBD41B /* SDL_rect.h in Headers */, + AA7558BB1595D55500BBD41B /* SDL_render.h in Headers */, + AA7558BC1595D55500BBD41B /* SDL_revision.h in Headers */, + AA7558BD1595D55500BBD41B /* SDL_rwops.h in Headers */, + AA7558BE1595D55500BBD41B /* SDL_scancode.h in Headers */, + AA7558BF1595D55500BBD41B /* SDL_shape.h in Headers */, + AA7558C01595D55500BBD41B /* SDL_stdinc.h in Headers */, + FAD4F7021BA3C4E8008346CE /* SDL_sysjoystick_c.h in Headers */, + AA7558C11595D55500BBD41B /* SDL_surface.h in Headers */, + AA7558C21595D55500BBD41B /* SDL_system.h in Headers */, + AA7558C31595D55500BBD41B /* SDL_syswm.h in Headers */, + AA7558C41595D55500BBD41B /* SDL_thread.h in Headers */, + AA7558C51595D55500BBD41B /* SDL_timer.h in Headers */, + AA7558C61595D55500BBD41B /* SDL_touch.h in Headers */, + AA7558C71595D55500BBD41B /* SDL_types.h in Headers */, + AA7558C81595D55500BBD41B /* SDL_version.h in Headers */, + AA7558C91595D55500BBD41B /* SDL_video.h in Headers */, + AA7558CA1595D55500BBD41B /* SDL.h in Headers */, + AA126AD41617C5E7005ABC8F /* SDL_uikitmodes.h in Headers */, + AA704DD6162AA90A0076D1C1 /* SDL_dropevents_c.h in Headers */, + AA9FF9511637C6E5000DF050 /* SDL_messagebox.h in Headers */, + AABCC3941640643D00AB8930 /* SDL_uikitmessagebox.h in Headers */, + AA0AD06516647BD400CE5896 /* SDL_gamecontroller.h in Headers */, + AADA5B8F16CCAB7C00107CF7 /* SDL_bits.h in Headers */, + 56C181DF17C44D5E00406AE3 /* SDL_filesystem.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + FD6526620DE8FCCB002AD96B /* libSDL */ = { + isa = PBXNativeTarget; + buildConfigurationList = FD6526990DE8FD14002AD96B /* Build configuration list for PBXNativeTarget "libSDL" */; + buildPhases = ( + FD65265F0DE8FCCB002AD96B /* Headers */, + FD6526600DE8FCCB002AD96B /* Sources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = libSDL; + productName = iPhoneSDLStaticLib; + productReference = FD6526630DE8FCCB002AD96B /* libSDL2.a */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0630; + }; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDL" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; + projectDirPath = ""; + projectRoot = ../..; + targets = ( + FD6526620DE8FCCB002AD96B /* libSDL */, + 00B4F48B12F6A69C0084EC00 /* PrepareXcodeProjectTemplate */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXShellScriptBuildPhase section */ + 00B4F48A12F6A69C0084EC00 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "$(SYMROOT)/$CONFIGURATION-Universal/libSDL.a", + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# clean up the framework, remove headers, extra files\n\ntemp=$BUILD_DIR/$BUILD_STYLE-template\n# Wrong! 1. Can't assume location of Xcode directory (use xcode-select)\n# 2. Project templates should go in Application Support directories anyway.\ntemplate_dir_name=\"SDL iOS Application\"\n# dest=\"$(HOME)/Library/Application Support/Developer/Shared/Xcode/Project Templates/SDL/SDL iOS Application\"\nrsync_flags=\"--exclude *.svn --links -r\"\n\n# mkdir -p $dest\nmkdir -p $temp\nmkdir -p \"$temp/$template_dir_name/SDL/lib/\"\nmkdir -p \"$temp/$template_dir_name/SDL/include\"\n\n# copy template\nrsync $rsync_flags \"../template/$template_dir_name\" $temp/\n\n# copy Universal libSDL.a\nrsync $rsync_flags -r $SYMROOT/$CONFIGURATION-Universal/libSDL.a \"$temp/$template_dir_name/SDL/lib/\"\n\n# copy headers\nrsync $rsync_flags ../../include/ \"$temp/$template_dir_name/SDL/include\"\n\n#install (nah, don't install)\n# cp -fr \"$temp/$template_dir_name\" \"$dest\""; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + FD6526600DE8FCCB002AD96B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD6526810DE8FCDD002AD96B /* SDL_systimer.c in Sources */, + FD6526800DE8FCDD002AD96B /* SDL_timer.c in Sources */, + FD3F4A7B0DEA620800C5B771 /* SDL_string.c in Sources */, + FD6526660DE8FCDD002AD96B /* SDL_dummyaudio.c in Sources */, + FD6526670DE8FCDD002AD96B /* SDL_audio.c in Sources */, + FD6526680DE8FCDD002AD96B /* SDL_audiocvt.c in Sources */, + FD65266A0DE8FCDD002AD96B /* SDL_audiotypecvt.c in Sources */, + FD65266B0DE8FCDD002AD96B /* SDL_mixer.c in Sources */, + FD65266F0DE8FCDD002AD96B /* SDL_wave.c in Sources */, + FA1DC2731C62BE65008F99A0 /* SDL_uikitclipboard.m in Sources */, + FD6526700DE8FCDD002AD96B /* SDL_cpuinfo.c in Sources */, + FD6526710DE8FCDD002AD96B /* SDL_events.c in Sources */, + FD6526720DE8FCDD002AD96B /* SDL_keyboard.c in Sources */, + 56A6703718565E760007D20F /* SDL_dynapi.c in Sources */, + FD6526730DE8FCDD002AD96B /* SDL_mouse.c in Sources */, + FD6526740DE8FCDD002AD96B /* SDL_quit.c in Sources */, + FD6526750DE8FCDD002AD96B /* SDL_windowevents.c in Sources */, + FD6526760DE8FCDD002AD96B /* SDL_rwops.c in Sources */, + FD6526780DE8FCDD002AD96B /* SDL_error.c in Sources */, + FD65267A0DE8FCDD002AD96B /* SDL.c in Sources */, + FD65267B0DE8FCDD002AD96B /* SDL_syscond.c in Sources */, + FD65267C0DE8FCDD002AD96B /* SDL_sysmutex.c in Sources */, + FD65267D0DE8FCDD002AD96B /* SDL_syssem.c in Sources */, + FD65267E0DE8FCDD002AD96B /* SDL_systhread.c in Sources */, + FD65267F0DE8FCDD002AD96B /* SDL_thread.c in Sources */, + FD3F4A760DEA620800C5B771 /* SDL_getenv.c in Sources */, + FD3F4A770DEA620800C5B771 /* SDL_iconv.c in Sources */, + FD3F4A780DEA620800C5B771 /* SDL_malloc.c in Sources */, + FD3F4A790DEA620800C5B771 /* SDL_qsort.c in Sources */, + FD3F4A7A0DEA620800C5B771 /* SDL_stdlib.c in Sources */, + FDA6844D0DF2374E00F98A1A /* SDL_blit.c in Sources */, + FDA6844F0DF2374E00F98A1A /* SDL_blit_0.c in Sources */, + FDA684500DF2374E00F98A1A /* SDL_blit_1.c in Sources */, + FDA684510DF2374E00F98A1A /* SDL_blit_A.c in Sources */, + FDA684520DF2374E00F98A1A /* SDL_blit_auto.c in Sources */, + FDA684540DF2374E00F98A1A /* SDL_blit_copy.c in Sources */, + FDA684560DF2374E00F98A1A /* SDL_blit_N.c in Sources */, + FDA684570DF2374E00F98A1A /* SDL_blit_slow.c in Sources */, + FDA684580DF2374E00F98A1A /* SDL_bmp.c in Sources */, + FDA6845C0DF2374E00F98A1A /* SDL_pixels.c in Sources */, + FDA6845E0DF2374E00F98A1A /* SDL_rect.c in Sources */, + FDA684620DF2374E00F98A1A /* SDL_RLEaccel.c in Sources */, + FDA684640DF2374E00F98A1A /* SDL_stretch.c in Sources */, + FDA684660DF2374E00F98A1A /* SDL_surface.c in Sources */, + FDA684680DF2374E00F98A1A /* SDL_video.c in Sources */, + FDA685FB0DF244C800F98A1A /* SDL_nullevents.c in Sources */, + FDA685FF0DF244C800F98A1A /* SDL_nullvideo.c in Sources */, + FD5F9D2F0E0E08B3008E885B /* SDL_joystick.c in Sources */, + FD689F030E26E5B600F90B21 /* SDL_sysjoystick.m in Sources */, + FD689F1D0E26E5D900F90B21 /* SDL_uikitevents.m in Sources */, + FD689F1F0E26E5D900F90B21 /* SDL_uikitopengles.m in Sources */, + FD689F210E26E5D900F90B21 /* SDL_uikitvideo.m in Sources */, + FD689F230E26E5D900F90B21 /* SDL_uikitview.m in Sources */, + FD689F250E26E5D900F90B21 /* SDL_uikitwindow.m in Sources */, + FD689F270E26E5D900F90B21 /* SDL_uikitopenglview.m in Sources */, + FD689FCE0E26E9D400F90B21 /* SDL_uikitappdelegate.m in Sources */, + FD8BD8250E27E25900B52CD5 /* SDL_sysloadso.c in Sources */, + 047677BB0EA76A31008ABAF1 /* SDL_syshaptic.c in Sources */, + 047677BC0EA76A31008ABAF1 /* SDL_haptic.c in Sources */, + 047AF1B30EA98D6C00811173 /* SDL_sysloadso.c in Sources */, + 046387460F0B5B7D0041FD65 /* SDL_fillrect.c in Sources */, + 04F2AF561104ABD200D6DDF7 /* SDL_assert.c in Sources */, + 56ED04E1118A8EE200A56AA6 /* SDL_power.c in Sources */, + 56ED04E3118A8EFD00A56AA6 /* SDL_syspower.m in Sources */, + 006E9889119552DD001DE610 /* SDL_rwopsbundlesupport.m in Sources */, + 044E5FB811E606EB0076F181 /* SDL_clipboard.c in Sources */, + 0420497111E6F03D007E7EC9 /* SDL_clipboardevents.c in Sources */, + 04BA9D6411EF474A00B60E01 /* SDL_gesture.c in Sources */, + 04BA9D6611EF474A00B60E01 /* SDL_touch.c in Sources */, + 04FFAB8B12E23B8D00BA343D /* SDL_atomic.c in Sources */, + 04FFAB8C12E23B8D00BA343D /* SDL_spinlock.c in Sources */, + 041B2CF112FA0F680087D585 /* SDL_render.c in Sources */, + 04409BA712FA989600FB9AA8 /* SDL_yuv_mmx.c in Sources */, + 04409BA912FA989600FB9AA8 /* SDL_yuv_sw.c in Sources */, + 04F7807612FB751400FC43C0 /* SDL_blendfillrect.c in Sources */, + 04F7807812FB751400FC43C0 /* SDL_blendline.c in Sources */, + 04F7807A12FB751400FC43C0 /* SDL_blendpoint.c in Sources */, + 04F7807D12FB751400FC43C0 /* SDL_drawline.c in Sources */, + 04F7807F12FB751400FC43C0 /* SDL_drawpoint.c in Sources */, + 04F7808512FB753F00FC43C0 /* SDL_nullframebuffer.c in Sources */, + 0442EC5112FE1C1E004C9285 /* SDL_render_sw.c in Sources */, + 0442EC5312FE1C28004C9285 /* SDL_render_gles.c in Sources */, + 0442EC5512FE1C3F004C9285 /* SDL_hints.c in Sources */, + 0402A85812FE70C600CECEE3 /* SDL_render_gles2.c in Sources */, + 0402A85912FE70C600CECEE3 /* SDL_shaders_gles2.c in Sources */, + 04BAC09D1300C1290055DE28 /* SDL_log.c in Sources */, + 56EA86FB13E9EC2B002E47EB /* SDL_coreaudio.c in Sources */, + 93CB792613FC5F5300BD3E05 /* SDL_uikitviewcontroller.m in Sources */, + AA628ADB159369E3005138DD /* SDL_rotate.c in Sources */, + AA126AD51617C5E7005ABC8F /* SDL_uikitmodes.m in Sources */, + AA704DD7162AA90A0076D1C1 /* SDL_dropevents.c in Sources */, + AABCC3951640643D00AB8930 /* SDL_uikitmessagebox.m in Sources */, + AA0AD06216647BBB00CE5896 /* SDL_gamecontroller.c in Sources */, + AA0F8495178D5F1A00823F9D /* SDL_systls.c in Sources */, + 56C181E217C44D7A00406AE3 /* SDL_sysfilesystem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 00B4F48C12F6A69C0084EC00 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + PRODUCT_NAME = PrepareXcodeProjectTemplate; + }; + name = Debug; + }; + 00B4F48D12F6A69C0084EC00 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + PRODUCT_NAME = PrepareXcodeProjectTemplate; + ZERO_LINK = NO; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + FD6526640DE8FCCB002AD96B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES; + COPY_PHASE_STRIP = NO; + GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + PRODUCT_NAME = SDL2; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + FD6526650DE8FCCB002AD96B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES; + COPY_PHASE_STRIP = YES; + GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES; + GCC_WARN_STRICT_SELECTOR_MATCH = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + PRODUCT_NAME = SDL2; + SKIP_INSTALL = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 00B4F48E12F6A6BA0084EC00 /* Build configuration list for PBXAggregateTarget "PrepareXcodeProjectTemplate" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00B4F48C12F6A69C0084EC00 /* Debug */, + 00B4F48D12F6A69C0084EC00 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "SDL" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FD6526990DE8FD14002AD96B /* Build configuration list for PBXNativeTarget "libSDL" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FD6526640DE8FCCB002AD96B /* Debug */, + FD6526650DE8FCCB002AD96B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/SDL/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj b/SDL/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj new file mode 100644 index 0000000..adc3151 --- /dev/null +++ b/SDL/Xcode-iOS/SDLtest/SDL2test.xcodeproj/project.pbxproj @@ -0,0 +1,270 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + AA1EE462176059AB0029C7A5 /* SDL_test_common.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE454176059AB0029C7A5 /* SDL_test_common.c */; }; + AA1EE463176059AB0029C7A5 /* SDL_test_compare.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE455176059AB0029C7A5 /* SDL_test_compare.c */; }; + AA1EE464176059AB0029C7A5 /* SDL_test_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE456176059AB0029C7A5 /* SDL_test_crc32.c */; }; + AA1EE465176059AB0029C7A5 /* SDL_test_font.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE457176059AB0029C7A5 /* SDL_test_font.c */; }; + AA1EE466176059AB0029C7A5 /* SDL_test_fuzzer.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE458176059AB0029C7A5 /* SDL_test_fuzzer.c */; }; + AA1EE467176059AB0029C7A5 /* SDL_test_harness.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE459176059AB0029C7A5 /* SDL_test_harness.c */; }; + AA1EE468176059AB0029C7A5 /* SDL_test_imageBlit.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE45A176059AB0029C7A5 /* SDL_test_imageBlit.c */; }; + AA1EE469176059AB0029C7A5 /* SDL_test_imageBlitBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE45B176059AB0029C7A5 /* SDL_test_imageBlitBlend.c */; }; + AA1EE46A176059AB0029C7A5 /* SDL_test_imageFace.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE45C176059AB0029C7A5 /* SDL_test_imageFace.c */; }; + AA1EE46B176059AB0029C7A5 /* SDL_test_imagePrimitives.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE45D176059AB0029C7A5 /* SDL_test_imagePrimitives.c */; }; + AA1EE46C176059AB0029C7A5 /* SDL_test_imagePrimitivesBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE45E176059AB0029C7A5 /* SDL_test_imagePrimitivesBlend.c */; }; + AA1EE46D176059AB0029C7A5 /* SDL_test_log.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE45F176059AB0029C7A5 /* SDL_test_log.c */; }; + AA1EE46E176059AB0029C7A5 /* SDL_test_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE460176059AB0029C7A5 /* SDL_test_md5.c */; }; + AA1EE46F176059AB0029C7A5 /* SDL_test_random.c in Sources */ = {isa = PBXBuildFile; fileRef = AA1EE461176059AB0029C7A5 /* SDL_test_random.c */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + AA1EE4461760589B0029C7A5 /* libSDL2test.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL2test.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AA1EE454176059AB0029C7A5 /* SDL_test_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_common.c; path = ../../src/test/SDL_test_common.c; sourceTree = ""; }; + AA1EE455176059AB0029C7A5 /* SDL_test_compare.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_compare.c; path = ../../src/test/SDL_test_compare.c; sourceTree = ""; }; + AA1EE456176059AB0029C7A5 /* SDL_test_crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_crc32.c; path = ../../src/test/SDL_test_crc32.c; sourceTree = ""; }; + AA1EE457176059AB0029C7A5 /* SDL_test_font.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_font.c; path = ../../src/test/SDL_test_font.c; sourceTree = ""; }; + AA1EE458176059AB0029C7A5 /* SDL_test_fuzzer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_fuzzer.c; path = ../../src/test/SDL_test_fuzzer.c; sourceTree = ""; }; + AA1EE459176059AB0029C7A5 /* SDL_test_harness.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_harness.c; path = ../../src/test/SDL_test_harness.c; sourceTree = ""; }; + AA1EE45A176059AB0029C7A5 /* SDL_test_imageBlit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imageBlit.c; path = ../../src/test/SDL_test_imageBlit.c; sourceTree = ""; }; + AA1EE45B176059AB0029C7A5 /* SDL_test_imageBlitBlend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imageBlitBlend.c; path = ../../src/test/SDL_test_imageBlitBlend.c; sourceTree = ""; }; + AA1EE45C176059AB0029C7A5 /* SDL_test_imageFace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imageFace.c; path = ../../src/test/SDL_test_imageFace.c; sourceTree = ""; }; + AA1EE45D176059AB0029C7A5 /* SDL_test_imagePrimitives.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imagePrimitives.c; path = ../../src/test/SDL_test_imagePrimitives.c; sourceTree = ""; }; + AA1EE45E176059AB0029C7A5 /* SDL_test_imagePrimitivesBlend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imagePrimitivesBlend.c; path = ../../src/test/SDL_test_imagePrimitivesBlend.c; sourceTree = ""; }; + AA1EE45F176059AB0029C7A5 /* SDL_test_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_log.c; path = ../../src/test/SDL_test_log.c; sourceTree = ""; }; + AA1EE460176059AB0029C7A5 /* SDL_test_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_md5.c; path = ../../src/test/SDL_test_md5.c; sourceTree = ""; }; + AA1EE461176059AB0029C7A5 /* SDL_test_random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_random.c; path = ../../src/test/SDL_test_random.c; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + AA1EE4431760589B0029C7A5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + AA1EE43D1760589B0029C7A5 = { + isa = PBXGroup; + children = ( + AA1EE453176059770029C7A5 /* Library Source */, + AA1EE4471760589B0029C7A5 /* Products */, + ); + sourceTree = ""; + }; + AA1EE4471760589B0029C7A5 /* Products */ = { + isa = PBXGroup; + children = ( + AA1EE4461760589B0029C7A5 /* libSDL2test.a */, + ); + name = Products; + sourceTree = ""; + }; + AA1EE453176059770029C7A5 /* Library Source */ = { + isa = PBXGroup; + children = ( + AA1EE454176059AB0029C7A5 /* SDL_test_common.c */, + AA1EE455176059AB0029C7A5 /* SDL_test_compare.c */, + AA1EE456176059AB0029C7A5 /* SDL_test_crc32.c */, + AA1EE457176059AB0029C7A5 /* SDL_test_font.c */, + AA1EE458176059AB0029C7A5 /* SDL_test_fuzzer.c */, + AA1EE459176059AB0029C7A5 /* SDL_test_harness.c */, + AA1EE45A176059AB0029C7A5 /* SDL_test_imageBlit.c */, + AA1EE45B176059AB0029C7A5 /* SDL_test_imageBlitBlend.c */, + AA1EE45C176059AB0029C7A5 /* SDL_test_imageFace.c */, + AA1EE45D176059AB0029C7A5 /* SDL_test_imagePrimitives.c */, + AA1EE45E176059AB0029C7A5 /* SDL_test_imagePrimitivesBlend.c */, + AA1EE45F176059AB0029C7A5 /* SDL_test_log.c */, + AA1EE460176059AB0029C7A5 /* SDL_test_md5.c */, + AA1EE461176059AB0029C7A5 /* SDL_test_random.c */, + ); + name = "Library Source"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + AA1EE4441760589B0029C7A5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + AA1EE4451760589B0029C7A5 /* SDL2test */ = { + isa = PBXNativeTarget; + buildConfigurationList = AA1EE44A1760589B0029C7A5 /* Build configuration list for PBXNativeTarget "SDL2test" */; + buildPhases = ( + AA1EE4421760589B0029C7A5 /* Sources */, + AA1EE4431760589B0029C7A5 /* Frameworks */, + AA1EE4441760589B0029C7A5 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SDL2test; + productName = SDL2test; + productReference = AA1EE4461760589B0029C7A5 /* libSDL2test.a */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + AA1EE43E1760589B0029C7A5 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0460; + ORGANIZATIONNAME = "Sam Lantinga"; + }; + buildConfigurationList = AA1EE4411760589B0029C7A5 /* Build configuration list for PBXProject "SDL2test" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = AA1EE43D1760589B0029C7A5; + productRefGroup = AA1EE4471760589B0029C7A5 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + AA1EE4451760589B0029C7A5 /* SDL2test */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + AA1EE4421760589B0029C7A5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE462176059AB0029C7A5 /* SDL_test_common.c in Sources */, + AA1EE463176059AB0029C7A5 /* SDL_test_compare.c in Sources */, + AA1EE464176059AB0029C7A5 /* SDL_test_crc32.c in Sources */, + AA1EE465176059AB0029C7A5 /* SDL_test_font.c in Sources */, + AA1EE466176059AB0029C7A5 /* SDL_test_fuzzer.c in Sources */, + AA1EE467176059AB0029C7A5 /* SDL_test_harness.c in Sources */, + AA1EE468176059AB0029C7A5 /* SDL_test_imageBlit.c in Sources */, + AA1EE469176059AB0029C7A5 /* SDL_test_imageBlitBlend.c in Sources */, + AA1EE46A176059AB0029C7A5 /* SDL_test_imageFace.c in Sources */, + AA1EE46B176059AB0029C7A5 /* SDL_test_imagePrimitives.c in Sources */, + AA1EE46C176059AB0029C7A5 /* SDL_test_imagePrimitivesBlend.c in Sources */, + AA1EE46D176059AB0029C7A5 /* SDL_test_log.c in Sources */, + AA1EE46E176059AB0029C7A5 /* SDL_test_md5.c in Sources */, + AA1EE46F176059AB0029C7A5 /* SDL_test_random.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + AA1EE4481760589B0029C7A5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.8; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + }; + name = Debug; + }; + AA1EE4491760589B0029C7A5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_ENABLE_OBJC_EXCEPTIONS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.8; + SDKROOT = iphoneos; + }; + name = Release; + }; + AA1EE44B1760589B0029C7A5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = lib; + HEADER_SEARCH_PATHS = ../../include; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + AA1EE44C1760589B0029C7A5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = lib; + HEADER_SEARCH_PATHS = ../../include; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + AA1EE4411760589B0029C7A5 /* Build configuration list for PBXProject "SDL2test" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AA1EE4481760589B0029C7A5 /* Debug */, + AA1EE4491760589B0029C7A5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + AA1EE44A1760589B0029C7A5 /* Build configuration list for PBXNativeTarget "SDL2test" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AA1EE44B1760589B0029C7A5 /* Debug */, + AA1EE44C1760589B0029C7A5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = AA1EE43E1760589B0029C7A5 /* Project object */; +} diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png b/SDL/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png new file mode 100644 index 0000000..eaea96e Binary files /dev/null and b/SDL/Xcode-iOS/Template/SDL iOS Application/Default-568h@2x.png differ diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/Default.png b/SDL/Xcode-iOS/Template/SDL iOS Application/Default.png new file mode 100644 index 0000000..f912828 Binary files /dev/null and b/SDL/Xcode-iOS/Template/SDL iOS Application/Default.png differ diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/Icon.png b/SDL/Xcode-iOS/Template/SDL iOS Application/Icon.png new file mode 100644 index 0000000..83f4d10 Binary files /dev/null and b/SDL/Xcode-iOS/Template/SDL iOS Application/Icon.png differ diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/Info.plist b/SDL/Xcode-iOS/Template/SDL iOS Application/Info.plist new file mode 100644 index 0000000..b8089dc --- /dev/null +++ b/SDL/Xcode-iOS/Template/SDL iOS Application/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + Icon + CFBundleIdentifier + com.yourcompany.${PRODUCT_NAME:identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + LSRequiresIPhoneOS + + + diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns new file mode 100644 index 0000000..4500ce2 Binary files /dev/null and b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateIcon.icns differ diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist new file mode 100644 index 0000000..498e37d --- /dev/null +++ b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/TemplateInfo.plist @@ -0,0 +1,10 @@ + + + + + Description + This project builds an SDL based project for iPhone OS using C or Objective-C. It includes everything you need to get up and running with SDL on iPhone. + CFBundleIconFile + Icon.png + + diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj new file mode 100755 index 0000000..ef12dd8 --- /dev/null +++ b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.pbxproj @@ -0,0 +1,308 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; + 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; + 28FD15000DC6FC520079059D /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28FD14FF0DC6FC520079059D /* OpenGLES.framework */; }; + 28FD15080DC6FC5B0079059D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28FD15070DC6FC5B0079059D /* QuartzCore.framework */; }; + 944A656F195747D90094A81E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 944A656E1957463F0094A81E /* libSDL2.a */; }; + 945C4F53195AF17F00DBBF61 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 945C4F52195AF17F00DBBF61 /* Default-568h@2x.png */; }; + FA8B4B97196703B400F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4B96196703B400F8EB7C /* CoreMotion.framework */; }; + FAE0E9651BAF967F0098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAE0E9641BAF967F0098DFA4 /* GameController.framework */; }; + FD779EDE0E26BA1200F39101 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD779EDD0E26BA1200F39101 /* CoreAudio.framework */; }; + FD77A07D0E26BD8C00F39101 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = FD77A07C0E26BD8C00F39101 /* Icon.png */; }; + FD77A07F0E26BDA900F39101 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = FD77A07E0E26BDA900F39101 /* Default.png */; }; + FD77A0850E26BDB800F39101 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD77A0840E26BDB800F39101 /* AudioToolbox.framework */; }; + FD77A09D0E26BDE500F39101 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = FD77A09C0E26BDE500F39101 /* main.c */; }; + FDB8BFC60E5A0F6A00980157 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDB8BFC50E5A0F6A00980157 /* CoreGraphics.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 944A656D1957463F0094A81E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 944A65681957463F0094A81E /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = FD6526630DE8FCCB002AD96B; + remoteInfo = libSDL; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 1D6058910D05DD3D006BFB54 /* ___PROJECTNAME___.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "___PROJECTNAME___.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 28FD14FF0DC6FC520079059D /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; + 28FD15070DC6FC5B0079059D /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 944A65681957463F0094A81E /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = ../../SDL/SDL.xcodeproj; sourceTree = ""; }; + 945C4F52195AF17F00DBBF61 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = ""; }; + FA8B4B96196703B400F8EB7C /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; }; + FAE0E9641BAF967F0098DFA4 /* GameController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameController.framework; path = System/Library/Frameworks/GameController.framework; sourceTree = SDKROOT; }; + FD779EDD0E26BA1200F39101 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; + FD77A07C0E26BD8C00F39101 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = ""; }; + FD77A07E0E26BDA900F39101 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = ""; }; + FD77A0840E26BDB800F39101 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; + FD77A09C0E26BDE500F39101 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = ""; }; + FDB8BFC50E5A0F6A00980157 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 1D60588F0D05DD3D006BFB54 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 944A656F195747D90094A81E /* libSDL2.a in Frameworks */, + FAE0E9651BAF967F0098DFA4 /* GameController.framework in Frameworks */, + 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */, + 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */, + 28FD15000DC6FC520079059D /* OpenGLES.framework in Frameworks */, + 28FD15080DC6FC5B0079059D /* QuartzCore.framework in Frameworks */, + FD779EDE0E26BA1200F39101 /* CoreAudio.framework in Frameworks */, + FD77A0850E26BDB800F39101 /* AudioToolbox.framework in Frameworks */, + FDB8BFC60E5A0F6A00980157 /* CoreGraphics.framework in Frameworks */, + FA8B4B97196703B400F8EB7C /* CoreMotion.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 1D6058910D05DD3D006BFB54 /* ___PROJECTNAME___.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { + isa = PBXGroup; + children = ( + 945C4F52195AF17F00DBBF61 /* Default-568h@2x.png */, + 29B97315FDCFA39411CA2CEA /* Sources */, + 29B97317FDCFA39411CA2CEA /* Resources */, + 29B97323FDCFA39411CA2CEA /* Frameworks */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = CustomTemplate; + sourceTree = ""; + }; + 29B97315FDCFA39411CA2CEA /* Sources */ = { + isa = PBXGroup; + children = ( + 944A65681957463F0094A81E /* SDL.xcodeproj */, + FD77A09C0E26BDE500F39101 /* main.c */, + ); + name = Sources; + sourceTree = ""; + }; + 29B97317FDCFA39411CA2CEA /* Resources */ = { + isa = PBXGroup; + children = ( + FD77A07E0E26BDA900F39101 /* Default.png */, + FD77A07C0E26BD8C00F39101 /* Icon.png */, + 8D1107310486CEB800E47090 /* Info.plist */, + ); + name = Resources; + sourceTree = ""; + }; + 29B97323FDCFA39411CA2CEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + FAE0E9641BAF967F0098DFA4 /* GameController.framework */, + FA8B4B96196703B400F8EB7C /* CoreMotion.framework */, + FDB8BFC50E5A0F6A00980157 /* CoreGraphics.framework */, + FD77A0840E26BDB800F39101 /* AudioToolbox.framework */, + FD779EDD0E26BA1200F39101 /* CoreAudio.framework */, + 28FD15070DC6FC5B0079059D /* QuartzCore.framework */, + 28FD14FF0DC6FC520079059D /* OpenGLES.framework */, + 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */, + 1D30AB110D05D00D00671497 /* Foundation.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 944A65691957463F0094A81E /* Products */ = { + isa = PBXGroup; + children = ( + 944A656E1957463F0094A81E /* libSDL2.a */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 1D6058900D05DD3D006BFB54 /* ___PROJECTNAME___ */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */; + buildPhases = ( + 1D60588D0D05DD3D006BFB54 /* Resources */, + 1D60588E0D05DD3D006BFB54 /* Sources */, + 1D60588F0D05DD3D006BFB54 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "___PROJECTNAME___"; + productName = "___PROJECTNAME___"; + productReference = 1D6058910D05DD3D006BFB54 /* ___PROJECTNAME___.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0510; + }; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 944A65691957463F0094A81E /* Products */; + ProjectRef = 944A65681957463F0094A81E /* SDL.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 1D6058900D05DD3D006BFB54 /* ___PROJECTNAME___ */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 944A656E1957463F0094A81E /* libSDL2.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libSDL2.a; + remoteRef = 944A656D1957463F0094A81E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 1D60588D0D05DD3D006BFB54 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD77A07D0E26BD8C00F39101 /* Icon.png in Resources */, + FD77A07F0E26BDA900F39101 /* Default.png in Resources */, + 945C4F53195AF17F00DBBF61 /* Default-568h@2x.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 1D60588E0D05DD3D006BFB54 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FD77A09D0E26BDE500F39101 /* main.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 1D6058940D05DD3E006BFB54 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = NO; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = ""; + INFOPLIST_FILE = Info.plist; + LIBRARY_SEARCH_PATHS = "$(inherited)"; + PRODUCT_NAME = "___PROJECTNAME___"; + USER_HEADER_SEARCH_PATHS = ../../../include; + }; + name = Debug; + }; + 1D6058950D05DD3E006BFB54 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = ""; + INFOPLIST_FILE = Info.plist; + LIBRARY_SEARCH_PATHS = "$(inherited)"; + PRODUCT_NAME = "___PROJECTNAME___"; + USER_HEADER_SEARCH_PATHS = ../../../include; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_C_LANGUAGE_STANDARD = c99; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + ONLY_ACTIVE_ARCH = YES; + OTHER_CFLAGS = ""; + PREBINDING = NO; + SDKROOT = iphoneos; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_C_LANGUAGE_STANDARD = c99; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + OTHER_CFLAGS = ""; + PREBINDING = NO; + SDKROOT = iphoneos; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1D6058940D05DD3E006BFB54 /* Debug */, + 1D6058950D05DD3E006BFB54 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "___PROJECTNAME___" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..f2ce4f0 --- /dev/null +++ b/SDL/Xcode-iOS/Template/SDL iOS Application/___PROJECTNAME___.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/SDL/Xcode-iOS/Template/SDL iOS Application/main.c b/SDL/Xcode-iOS/Template/SDL iOS Application/main.c new file mode 100644 index 0000000..8dc0070 --- /dev/null +++ b/SDL/Xcode-iOS/Template/SDL iOS Application/main.c @@ -0,0 +1,98 @@ +/* + * rectangles.c + * written by Holmes Futrell + * use however you want + */ + +#include "SDL.h" +#include + +#define SCREEN_WIDTH 320 +#define SCREEN_HEIGHT 480 + +int +randomInt(int min, int max) +{ + return min + rand() % (max - min + 1); +} + +void +render(SDL_Renderer *renderer) +{ + + Uint8 r, g, b; + + /* Clear the screen */ + SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255); + SDL_RenderClear(renderer); + + /* Come up with a random rectangle */ + SDL_Rect rect; + rect.w = randomInt(64, 128); + rect.h = randomInt(64, 128); + rect.x = randomInt(0, SCREEN_WIDTH); + rect.y = randomInt(0, SCREEN_HEIGHT); + + /* Come up with a random color */ + r = randomInt(50, 255); + g = randomInt(50, 255); + b = randomInt(50, 255); + SDL_SetRenderDrawColor(renderer, r, g, b, 255); + + /* Fill the rectangle in the color */ + SDL_RenderFillRect(renderer, &rect); + + /* update screen */ + SDL_RenderPresent(renderer); +} + +int +main(int argc, char *argv[]) +{ + + SDL_Window *window; + SDL_Renderer *renderer; + int done; + SDL_Event event; + + /* initialize SDL */ + if (SDL_Init(SDL_INIT_VIDEO) < 0) { + printf("Could not initialize SDL\n"); + return 1; + } + + /* seed random number generator */ + srand(time(NULL)); + + /* create window and renderer */ + window = + SDL_CreateWindow(NULL, 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, + SDL_WINDOW_OPENGL); + if (!window) { + printf("Could not initialize Window\n"); + return 1; + } + + renderer = SDL_CreateRenderer(window, -1, 0); + if (!renderer) { + printf("Could not create renderer\n"); + return 1; + } + + /* Enter render loop, waiting for user to quit */ + done = 0; + while (!done) { + while (SDL_PollEvent(&event)) { + if (event.type == SDL_QUIT) { + done = 1; + } + } + render(renderer); + SDL_Delay(1); + } + + /* shutdown SDL */ + SDL_Quit(); + + return 0; +} diff --git a/SDL/Xcode-iOS/Test/Info.plist b/SDL/Xcode-iOS/Test/Info.plist new file mode 100644 index 0000000..c0f1179 --- /dev/null +++ b/SDL/Xcode-iOS/Test/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIconFile + + CFBundleIdentifier + com.yourcompany.${PRODUCT_NAME:identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1.0 + NSMainNibFile + + + diff --git a/SDL/Xcode-iOS/Test/README b/SDL/Xcode-iOS/Test/README new file mode 100644 index 0000000..b8d9ed3 --- /dev/null +++ b/SDL/Xcode-iOS/Test/README @@ -0,0 +1,11 @@ +TestiPhoneOS.xcodeproj contains targets to compile many of the SDL test programs for iPhone OS. Most of these test programs work fine, with the following exceptions: + +testthread: + SIGTERM kills the process immediately without executing the 'kill' function. The posix standard says this shouldn't happen. Apple seems intent on having iPhone apps exit promptly when the user requests it, so maybe that's why(?) + +testlock: + Locks appear to work, but there doesn't appear to be a simple way to send the process SIGINT. + +testsprite2: + SDL_CreateTextureFromSurface requests an ARGB pixel format, but iPhone's SDL video driver only supports ABGR. + diff --git a/SDL/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj b/SDL/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj new file mode 100755 index 0000000..6b13cad --- /dev/null +++ b/SDL/Xcode-iOS/Test/TestiPhoneOS.xcodeproj/project.pbxproj @@ -0,0 +1,2443 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 046CEF7713254F23007AD51D /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + 046CEF7B13254F23007AD51D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + 046CEF7C13254F23007AD51D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + 046CEF7D13254F23007AD51D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + 046CEF7E13254F23007AD51D /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + 046CEF7F13254F23007AD51D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + 046CEF8013254F23007AD51D /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + 046CEF8113254F23007AD51D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + 046CEF8213254F23007AD51D /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + 046CEF8A13254F63007AD51D /* testgesture.c in Sources */ = {isa = PBXBuildFile; fileRef = 046CEF8913254F63007AD51D /* testgesture.c */; }; + 047A63E213285C3200CD7973 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + 047A63E313285C3200CD7973 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + 047A63E413285C3200CD7973 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + 047A63E513285C3200CD7973 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + 047A63E613285C3200CD7973 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + 047A63E713285C3200CD7973 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + 047A63E813285C3200CD7973 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + 047A63E913285C3200CD7973 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + 047A63F113285CD100CD7973 /* checkkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 047A63F013285CD100CD7973 /* checkkeys.c */; }; + 56ED04FE118A8FE400A56AA6 /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + 56ED0502118A8FE400A56AA6 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + 56ED0503118A8FE400A56AA6 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + 56ED0504118A8FE400A56AA6 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + 56ED0505118A8FE400A56AA6 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + 56ED0506118A8FE400A56AA6 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + 56ED0507118A8FE400A56AA6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + 56ED0508118A8FE400A56AA6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + 56ED0509118A8FE400A56AA6 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + 56ED0511118A904200A56AA6 /* testpower.c in Sources */ = {isa = PBXBuildFile; fileRef = 56ED0510118A904200A56AA6 /* testpower.c */; }; + AA1EE470176059D00029C7A5 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA1EE452176059230029C7A5 /* libSDL2test.a */; }; + AA1EE47117605A7F0029C7A5 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA1EE452176059230029C7A5 /* libSDL2test.a */; }; + AA1EE47417605B5C0029C7A5 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA1EE452176059230029C7A5 /* libSDL2test.a */; }; + AA1EE47517605B930029C7A5 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA1EE452176059230029C7A5 /* libSDL2test.a */; }; + AA1EE47617605B9E0029C7A5 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA1EE452176059230029C7A5 /* libSDL2test.a */; }; + AA1EE47717605BAB0029C7A5 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA1EE452176059230029C7A5 /* libSDL2test.a */; }; + AA1EE47817605BF60029C7A5 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AA1EE452176059230029C7A5 /* libSDL2test.a */; }; + AAE7DEDC14CBB1E100DF1A0E /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + AAE7DEE114CBB1E100DF1A0E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + AAE7DEE214CBB1E100DF1A0E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + AAE7DEE314CBB1E100DF1A0E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + AAE7DEE414CBB1E100DF1A0E /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + AAE7DEE514CBB1E100DF1A0E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + AAE7DEE614CBB1E100DF1A0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + AAE7DEE714CBB1E100DF1A0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + AAE7DEE814CBB1E100DF1A0E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + AAE7DF4614CBB43900DF1A0E /* testscale.c in Sources */ = {isa = PBXBuildFile; fileRef = AAE7DF4514CBB43900DF1A0E /* testscale.c */; }; + AAE7DF4714CBB45000DF1A0E /* sample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AADE0E2D33C100EA573E /* sample.bmp */; }; + AAE7DFA014CBB54E00DF1A0E /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + AAE7DFA114CBB54E00DF1A0E /* sample.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AADE0E2D33C100EA573E /* sample.bmp */; }; + AAE7DFA614CBB54E00DF1A0E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + AAE7DFA714CBB54E00DF1A0E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + AAE7DFA814CBB54E00DF1A0E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + AAE7DFA914CBB54E00DF1A0E /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + AAE7DFAA14CBB54E00DF1A0E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + AAE7DFAB14CBB54E00DF1A0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + AAE7DFAC14CBB54E00DF1A0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + AAE7DFAD14CBB54E00DF1A0E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + AAE7DFB514CBB5F700DF1A0E /* testrendertarget.c in Sources */ = {isa = PBXBuildFile; fileRef = AAE7DFB414CBB5F700DF1A0E /* testrendertarget.c */; }; + FA0EF22E1BAF4654000E07A6 /* testjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A74E0E2D0F1600EA573E /* testjoystick.c */; settings = {ASSET_TAGS = (); }; }; + FA684F7B1BAF1A4400DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F7F1BAF1A4D00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F801BAF1A5000DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F811BAF1A5300DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F821BAF1A5700DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F831BAF1A5A00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F841BAF1A5C00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F851BAF1A6000DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F861BAF1A6200DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F871BAF1A6500DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F881BAF1A6800DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F891BAF1A6A00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F8A1BAF1A6D00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F8B1BAF1A7100DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F8C1BAF1A7400DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F8D1BAF1A7800DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F8E1BAF1A7B00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F8F1BAF1A7E00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F901BAF1A8100DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F911BAF1A8400DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F921BAF1A8700DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F931BAF1A8A00DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA684F941BAF1A9400DCFD1A /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FA8B4BAD1967076F00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BC9196766BC00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BCD196766BF00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BCE196766C100F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BCF196766C400F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD0196766C600F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD1196766C900F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD2196766CB00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD3196766CE00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD4196766D100F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD5196766D400F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD6196766D700F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD7196766DA00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD8196766DD00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BD9196766E000F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BDA196766E200F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BDB196766E500F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BDC196766E800F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BDD196766EB00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BDE196766EE00F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BDF196766F100F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BE0196766F400F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FA8B4BE1196766F600F8EB7C /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FAE0E9821BAF9B230098DFA4 /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + FAE0E9861BAF9B230098DFA4 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FAE0E9871BAF9B230098DFA4 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA684F7A1BAF1A4400DCFD1A /* GameController.framework */; }; + FAE0E9881BAF9B230098DFA4 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */; }; + FAE0E9891BAF9B230098DFA4 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FAE0E98A1BAF9B230098DFA4 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FAE0E98B1BAF9B230098DFA4 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FAE0E98C1BAF9B230098DFA4 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FAE0E98D1BAF9B230098DFA4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FAE0E98E1BAF9B230098DFA4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FAE0E98F1BAF9B230098DFA4 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FAE0E9951BAF9B510098DFA4 /* testgamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = FA0EF2221BAF43DE000E07A6 /* testgamecontroller.c */; settings = {ASSET_TAGS = (); }; }; + FAE0E9961BAF9B650098DFA4 /* controllermap.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FA0EF22A1BAF4487000E07A6 /* controllermap.bmp */; settings = {ASSET_TAGS = (); }; }; + FAE0E9971BAF9B6A0098DFA4 /* button.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FA0EF2291BAF4487000E07A6 /* button.bmp */; settings = {ASSET_TAGS = (); }; }; + FAE0E9981BAF9B6E0098DFA4 /* axis.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FA0EF2281BAF4487000E07A6 /* axis.bmp */; settings = {ASSET_TAGS = (); }; }; + FDA8A79C0E2D0F9300EA573E /* testwm2.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A75F0E2D0F1600EA573E /* testwm2.c */; }; + FDA8A89F0E2D111A00EA573E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDA8A8A00E2D111A00EA573E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDA8A8A10E2D111A00EA573E /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDA8A8A20E2D111A00EA573E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDA8A8A30E2D111A00EA573E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDA8A8A40E2D111A00EA573E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDA8A8A50E2D111A00EA573E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDA8AAB10E2D330F00EA573E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDA8AAB20E2D330F00EA573E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDA8AAB30E2D330F00EA573E /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDA8AAB40E2D330F00EA573E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDA8AAB50E2D330F00EA573E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDA8AAB60E2D330F00EA573E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDA8AAB70E2D330F00EA573E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDA8AABE0E2D335C00EA573E /* loopwave.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A78B0E2D0F3D00EA573E /* loopwave.c */; }; + FDA8AAE30E2D33C600EA573E /* sample.wav in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAE20E2D33C600EA573E /* sample.wav */; }; + FDAAC3C30E2D47E6001DB1D8 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDAAC3C40E2D47E6001DB1D8 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDAAC3C50E2D47E6001DB1D8 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDAAC3C60E2D47E6001DB1D8 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDAAC3C70E2D47E6001DB1D8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDAAC3C80E2D47E6001DB1D8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDAAC3C90E2D47E6001DB1D8 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDAAC3D30E2D4800001DB1D8 /* testaudioinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7410E2D0F1600EA573E /* testaudioinfo.c */; }; + FDAAC5910E2D5429001DB1D8 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDAAC5920E2D5429001DB1D8 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDAAC5930E2D5429001DB1D8 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDAAC5940E2D5429001DB1D8 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDAAC5950E2D5429001DB1D8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDAAC5960E2D5429001DB1D8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDAAC5970E2D5429001DB1D8 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDAAC59F0E2D54B8001DB1D8 /* testerror.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7470E2D0F1600EA573E /* testerror.c */; }; + FDAAC5BF0E2D55B5001DB1D8 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDAAC5C00E2D55B5001DB1D8 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDAAC5C10E2D55B5001DB1D8 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDAAC5C20E2D55B5001DB1D8 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDAAC5C30E2D55B5001DB1D8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDAAC5C40E2D55B5001DB1D8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDAAC5C50E2D55B5001DB1D8 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDAAC5CC0E2D55CA001DB1D8 /* testfile.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7480E2D0F1600EA573E /* testfile.c */; }; + FDAAC61C0E2D5914001DB1D8 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDAAC61D0E2D5914001DB1D8 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDAAC61E0E2D5914001DB1D8 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDAAC61F0E2D5914001DB1D8 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDAAC6200E2D5914001DB1D8 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDAAC6210E2D5914001DB1D8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDAAC6220E2D5914001DB1D8 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDAAC62A0E2D5960001DB1D8 /* testgles.c in Sources */ = {isa = PBXBuildFile; fileRef = FDAAC6290E2D5960001DB1D8 /* testgles.c */; }; + FDAAC6390E2D59BE001DB1D8 /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + FDBDE57C0E313445006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5810E313465006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5850E313495006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE58C0E3134F3006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE59B0E31356A006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE59F0E31358D006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5A90E3135C0006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5AE0E3135E6006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5B60E3135FE006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5BC0E31364D006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5C20E313663006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5C60E3136F1006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5C80E313702006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5CA0E313712006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5CC0E31372B006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5CE0E31373E006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDBDE5D40E313789006BAC0B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDC42FF40F0D866D009C87E1 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD1B48B80E3131CA007AB34E /* libSDL2.a */; }; + FDC42FF60F0D866D009C87E1 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDC42FF70F0D866D009C87E1 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDC42FF80F0D866D009C87E1 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDC42FF90F0D866D009C87E1 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDC42FFA0F0D866D009C87E1 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDC42FFB0F0D866D009C87E1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDC42FFC0F0D866D009C87E1 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDC4300A0F0D86BF009C87E1 /* testdraw2.c in Sources */ = {isa = PBXBuildFile; fileRef = FDC430090F0D86BF009C87E1 /* testdraw2.c */; }; + FDD2C1000E2E4F4B00B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C1010E2E4F4B00B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C1020E2E4F4B00B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C1030E2E4F4B00B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C1040E2E4F4B00B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C1050E2E4F4B00B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C1060E2E4F4B00B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C10D0E2E4F6900B7A85F /* testthread.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A74C0E2D0F1600EA573E /* testthread.c */; }; + FDD2C1770E2E52C000B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C1780E2E52C000B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C1790E2E52C000B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C17A0E2E52C000B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C17B0E2E52C000B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C17C0E2E52C000B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C17D0E2E52C000B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C1840E2E52D900B7A85F /* testiconv.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A74D0E2D0F1600EA573E /* testiconv.c */; }; + FDD2C18B0E2E52FE00B7A85F /* utf8.txt in Resources */ = {isa = PBXBuildFile; fileRef = FDD2C18A0E2E52FE00B7A85F /* utf8.txt */; }; + FDD2C19B0E2E534F00B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C19C0E2E534F00B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C19D0E2E534F00B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C19E0E2E534F00B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C19F0E2E534F00B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C1A00E2E534F00B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C1A10E2E534F00B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C4540E2E773800B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C4550E2E773800B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C4560E2E773800B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C4570E2E773800B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C4580E2E773800B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C4590E2E773800B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C45A0E2E773800B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C4610E2E777500B7A85F /* testkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A74F0E2D0F1600EA573E /* testkeys.c */; }; + FDD2C4720E2E77D700B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C4730E2E77D700B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C4740E2E77D700B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C4750E2E77D700B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C4760E2E77D700B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C4770E2E77D700B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C4780E2E77D700B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C47F0E2E77E300B7A85F /* testlock.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7510E2D0F1600EA573E /* testlock.c */; }; + FDD2C5010E2E7F4800B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C5020E2E7F4800B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C5030E2E7F4800B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C5040E2E7F4800B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C5050E2E7F4800B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C5060E2E7F4800B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C5070E2E7F4800B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C50E0E2E7F5800B7A85F /* testplatform.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7560E2D0F1600EA573E /* testplatform.c */; }; + FDD2C51F0E2E807600B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C5200E2E807600B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C5210E2E807600B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C5220E2E807600B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C5230E2E807600B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C5240E2E807600B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C5250E2E807600B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C52C0E2E808700B7A85F /* testsem.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7570E2D0F1600EA573E /* testsem.c */; }; + FDD2C5440E2E80E400B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C5450E2E80E400B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C5460E2E80E400B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C5470E2E80E400B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C5480E2E80E400B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C5490E2E80E400B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C54A0E2E80E400B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C5510E2E80F400B7A85F /* testsprite2.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7590E2D0F1600EA573E /* testsprite2.c */; }; + FDD2C5520E2E812C00B7A85F /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + FDD2C5760E2E8C7400B7A85F /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + FDD2C57D0E2E8C7400B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C57E0E2E8C7400B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C57F0E2E8C7400B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C5800E2E8C7400B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C5810E2E8C7400B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C5820E2E8C7400B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C5830E2E8C7400B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C58A0E2E8CB500B7A85F /* testtimer.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A75A0E2D0F1600EA573E /* testtimer.c */; }; + FDD2C5B50E2E8CFC00B7A85F /* icon.bmp in Resources */ = {isa = PBXBuildFile; fileRef = FDA8AAD90E2D33B000EA573E /* icon.bmp */; }; + FDD2C5BB0E2E8CFC00B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C5BC0E2E8CFC00B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C5BD0E2E8CFC00B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C5BE0E2E8CFC00B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C5BF0E2E8CFC00B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C5C00E2E8CFC00B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C5C10E2E8CFC00B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C5C80E2E8D1200B7A85F /* testver.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A75B0E2D0F1600EA573E /* testver.c */; }; + FDD2C6EA0E2E959E00B7A85F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */; }; + FDD2C6EB0E2E959E00B7A85F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A8990E2D111A00EA573E /* QuartzCore.framework */; }; + FDD2C6EC0E2E959E00B7A85F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */; }; + FDD2C6ED0E2E959E00B7A85F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */; }; + FDD2C6EE0E2E959E00B7A85F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89C0E2D111A00EA573E /* UIKit.framework */; }; + FDD2C6EF0E2E959E00B7A85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89D0E2D111A00EA573E /* Foundation.framework */; }; + FDD2C6F00E2E959E00B7A85F /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */; }; + FDD2C6F70E2E95B100B7A85F /* torturethread.c in Sources */ = {isa = PBXBuildFile; fileRef = FDA8A7610E2D0F1600EA573E /* torturethread.c */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + AA1EE451176059230029C7A5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = AA1EE44D176059220029C7A5 /* SDL2test.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = AA1EE4461760589B0029C7A5; + remoteInfo = SDL2test; + }; + FD1B48B70E3131CA007AB34E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD1B48AC0E3131CA007AB34E /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = FD6526630DE8FCCB002AD96B; + remoteInfo = StaticLib; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 046CEF8613254F23007AD51D /* testgesture.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgesture.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 046CEF8913254F63007AD51D /* testgesture.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testgesture.c; path = ../../test/testgesture.c; sourceTree = SOURCE_ROOT; }; + 047A63ED13285C3200CD7973 /* checkkeys.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = checkkeys.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 047A63F013285CD100CD7973 /* checkkeys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = checkkeys.c; path = ../../test/checkkeys.c; sourceTree = SOURCE_ROOT; }; + 1D6058910D05DD3D006BFB54 /* testwm2.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testwm2.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 56ED050D118A8FE400A56AA6 /* testpower.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testpower.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 56ED0510118A904200A56AA6 /* testpower.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testpower.c; path = ../../test/testpower.c; sourceTree = SOURCE_ROOT; }; + AA1EE44D176059220029C7A5 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL2test.xcodeproj; path = ../SDLtest/SDL2test.xcodeproj; sourceTree = ""; }; + AAE7DEEC14CBB1E100DF1A0E /* testscale.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testscale.app; sourceTree = BUILT_PRODUCTS_DIR; }; + AAE7DF4514CBB43900DF1A0E /* testscale.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testscale.c; path = ../../test/testscale.c; sourceTree = ""; }; + AAE7DFB114CBB54E00DF1A0E /* testrendertarget.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testrendertarget.app; sourceTree = BUILT_PRODUCTS_DIR; }; + AAE7DFB414CBB5F700DF1A0E /* testrendertarget.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testrendertarget.c; path = ../../test/testrendertarget.c; sourceTree = ""; }; + FA0EF2221BAF43DE000E07A6 /* testgamecontroller.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testgamecontroller.c; path = ../../test/testgamecontroller.c; sourceTree = ""; }; + FA0EF2281BAF4487000E07A6 /* axis.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = axis.bmp; path = ../../test/axis.bmp; sourceTree = ""; }; + FA0EF2291BAF4487000E07A6 /* button.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = button.bmp; path = ../../test/button.bmp; sourceTree = ""; }; + FA0EF22A1BAF4487000E07A6 /* controllermap.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = controllermap.bmp; path = ../../test/controllermap.bmp; sourceTree = ""; }; + FA684F7A1BAF1A4400DCFD1A /* GameController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameController.framework; path = System/Library/Frameworks/GameController.framework; sourceTree = SDKROOT; }; + FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; }; + FAE0E9931BAF9B230098DFA4 /* testgamecontroller.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgamecontroller.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FD1B48AC0E3131CA007AB34E /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = ../SDL/SDL.xcodeproj; sourceTree = SOURCE_ROOT; }; + FDA8A7410E2D0F1600EA573E /* testaudioinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testaudioinfo.c; path = ../../test/testaudioinfo.c; sourceTree = SOURCE_ROOT; }; + FDA8A7470E2D0F1600EA573E /* testerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testerror.c; path = ../../test/testerror.c; sourceTree = SOURCE_ROOT; }; + FDA8A7480E2D0F1600EA573E /* testfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testfile.c; path = ../../test/testfile.c; sourceTree = SOURCE_ROOT; }; + FDA8A74C0E2D0F1600EA573E /* testthread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testthread.c; path = ../../test/testthread.c; sourceTree = SOURCE_ROOT; }; + FDA8A74D0E2D0F1600EA573E /* testiconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testiconv.c; path = ../../test/testiconv.c; sourceTree = SOURCE_ROOT; }; + FDA8A74E0E2D0F1600EA573E /* testjoystick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testjoystick.c; path = ../../test/testjoystick.c; sourceTree = SOURCE_ROOT; }; + FDA8A74F0E2D0F1600EA573E /* testkeys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testkeys.c; path = ../../test/testkeys.c; sourceTree = SOURCE_ROOT; }; + FDA8A7510E2D0F1600EA573E /* testlock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testlock.c; path = ../../test/testlock.c; sourceTree = SOURCE_ROOT; }; + FDA8A7540E2D0F1600EA573E /* testoverlay2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testoverlay2.c; path = ../../test/testoverlay2.c; sourceTree = SOURCE_ROOT; }; + FDA8A7560E2D0F1600EA573E /* testplatform.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testplatform.c; path = ../../test/testplatform.c; sourceTree = SOURCE_ROOT; }; + FDA8A7570E2D0F1600EA573E /* testsem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testsem.c; path = ../../test/testsem.c; sourceTree = SOURCE_ROOT; }; + FDA8A7590E2D0F1600EA573E /* testsprite2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testsprite2.c; path = ../../test/testsprite2.c; sourceTree = SOURCE_ROOT; }; + FDA8A75A0E2D0F1600EA573E /* testtimer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testtimer.c; path = ../../test/testtimer.c; sourceTree = SOURCE_ROOT; }; + FDA8A75B0E2D0F1600EA573E /* testver.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testver.c; path = ../../test/testver.c; sourceTree = SOURCE_ROOT; }; + FDA8A75F0E2D0F1600EA573E /* testwm2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testwm2.c; path = ../../test/testwm2.c; sourceTree = SOURCE_ROOT; }; + FDA8A7610E2D0F1600EA573E /* torturethread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = torturethread.c; path = ../../test/torturethread.c; sourceTree = SOURCE_ROOT; }; + FDA8A78B0E2D0F3D00EA573E /* loopwave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loopwave.c; path = ../../test/loopwave.c; sourceTree = SOURCE_ROOT; }; + FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; + FDA8A8990E2D111A00EA573E /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; + FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + FDA8A89C0E2D111A00EA573E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + FDA8A89D0E2D111A00EA573E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; + FDA8AABB0E2D330F00EA573E /* loopwav.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = loopwav.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDA8AAD90E2D33B000EA573E /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = icon.bmp; path = ../../test/icon.bmp; sourceTree = SOURCE_ROOT; }; + FDA8AADA0E2D33BA00EA573E /* moose.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = moose.dat; path = ../../test/moose.dat; sourceTree = SOURCE_ROOT; }; + FDA8AADB0E2D33BA00EA573E /* picture.xbm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = picture.xbm; path = ../../test/picture.xbm; sourceTree = SOURCE_ROOT; }; + FDA8AADE0E2D33C100EA573E /* sample.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = sample.bmp; path = ../../test/sample.bmp; sourceTree = SOURCE_ROOT; }; + FDA8AAE20E2D33C600EA573E /* sample.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = sample.wav; path = ../../test/sample.wav; sourceTree = SOURCE_ROOT; }; + FDAAC3CD0E2D47E6001DB1D8 /* testaudioinfo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testaudioinfo.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDAAC59B0E2D5429001DB1D8 /* testerror.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testerror.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDAAC5C90E2D55B5001DB1D8 /* testfile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testfile.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDAAC6260E2D5914001DB1D8 /* testgles.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testgles.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDAAC6290E2D5960001DB1D8 /* testgles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testgles.c; path = ../../test/testgles.c; sourceTree = SOURCE_ROOT; }; + FDC430000F0D866D009C87E1 /* torturethread.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = torturethread.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDC430090F0D86BF009C87E1 /* testdraw2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testdraw2.c; path = ../../test/testdraw2.c; sourceTree = SOURCE_ROOT; }; + FDD2C10A0E2E4F4B00B7A85F /* testthread.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testthread.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C1810E2E52C000B7A85F /* testiconv.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testiconv.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C18A0E2E52FE00B7A85F /* utf8.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = utf8.txt; path = ../../test/utf8.txt; sourceTree = SOURCE_ROOT; }; + FDD2C1A50E2E534F00B7A85F /* testjoystick.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testjoystick.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C45E0E2E773800B7A85F /* testkeys.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testkeys.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C47C0E2E77D700B7A85F /* testlock.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testlock.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C50B0E2E7F4800B7A85F /* testplatform.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testplatform.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C5290E2E807600B7A85F /* testsem.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testsem.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C54E0E2E80E400B7A85F /* testsprite2.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testsprite2.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C5870E2E8C7400B7A85F /* testtimer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testtimer.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C5C50E2E8CFC00B7A85F /* testver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testver.app; sourceTree = BUILT_PRODUCTS_DIR; }; + FDD2C6F40E2E959E00B7A85F /* torturethread.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = torturethread.app; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 046CEF7A13254F23007AD51D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 046CEF7B13254F23007AD51D /* libSDL2.a in Frameworks */, + FA684F841BAF1A5C00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD1196766C900F8EB7C /* CoreMotion.framework in Frameworks */, + 046CEF7C13254F23007AD51D /* AudioToolbox.framework in Frameworks */, + 046CEF7D13254F23007AD51D /* QuartzCore.framework in Frameworks */, + 046CEF7E13254F23007AD51D /* OpenGLES.framework in Frameworks */, + 046CEF7F13254F23007AD51D /* CoreGraphics.framework in Frameworks */, + 046CEF8013254F23007AD51D /* UIKit.framework in Frameworks */, + 046CEF8113254F23007AD51D /* Foundation.framework in Frameworks */, + 046CEF8213254F23007AD51D /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 047A63E113285C3200CD7973 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE470176059D00029C7A5 /* libSDL2test.a in Frameworks */, + 047A63E213285C3200CD7973 /* libSDL2.a in Frameworks */, + FA684F7B1BAF1A4400DCFD1A /* GameController.framework in Frameworks */, + FA8B4BAD1967076F00F8EB7C /* CoreMotion.framework in Frameworks */, + 047A63E313285C3200CD7973 /* AudioToolbox.framework in Frameworks */, + 047A63E413285C3200CD7973 /* QuartzCore.framework in Frameworks */, + 047A63E513285C3200CD7973 /* OpenGLES.framework in Frameworks */, + 047A63E613285C3200CD7973 /* CoreGraphics.framework in Frameworks */, + 047A63E713285C3200CD7973 /* UIKit.framework in Frameworks */, + 047A63E813285C3200CD7973 /* Foundation.framework in Frameworks */, + 047A63E913285C3200CD7973 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1D60588F0D05DD3D006BFB54 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE47817605BF60029C7A5 /* libSDL2test.a in Frameworks */, + FDBDE5810E313465006BAC0B /* libSDL2.a in Frameworks */, + FA684F931BAF1A8A00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BE0196766F400F8EB7C /* CoreMotion.framework in Frameworks */, + FDA8A89F0E2D111A00EA573E /* AudioToolbox.framework in Frameworks */, + FDA8A8A00E2D111A00EA573E /* QuartzCore.framework in Frameworks */, + FDA8A8A10E2D111A00EA573E /* OpenGLES.framework in Frameworks */, + FDA8A8A20E2D111A00EA573E /* CoreGraphics.framework in Frameworks */, + FDA8A8A30E2D111A00EA573E /* UIKit.framework in Frameworks */, + FDA8A8A40E2D111A00EA573E /* Foundation.framework in Frameworks */, + FDA8A8A50E2D111A00EA573E /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 56ED0501118A8FE400A56AA6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 56ED0502118A8FE400A56AA6 /* libSDL2.a in Frameworks */, + FA684F8B1BAF1A7100DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD8196766DD00F8EB7C /* CoreMotion.framework in Frameworks */, + 56ED0503118A8FE400A56AA6 /* AudioToolbox.framework in Frameworks */, + 56ED0504118A8FE400A56AA6 /* QuartzCore.framework in Frameworks */, + 56ED0505118A8FE400A56AA6 /* OpenGLES.framework in Frameworks */, + 56ED0506118A8FE400A56AA6 /* CoreGraphics.framework in Frameworks */, + 56ED0507118A8FE400A56AA6 /* UIKit.framework in Frameworks */, + 56ED0508118A8FE400A56AA6 /* Foundation.framework in Frameworks */, + 56ED0509118A8FE400A56AA6 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AAE7DEE014CBB1E100DF1A0E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE47617605B9E0029C7A5 /* libSDL2test.a in Frameworks */, + AAE7DEE114CBB1E100DF1A0E /* libSDL2.a in Frameworks */, + FA684F8D1BAF1A7800DCFD1A /* GameController.framework in Frameworks */, + FA8B4BDA196766E200F8EB7C /* CoreMotion.framework in Frameworks */, + AAE7DEE214CBB1E100DF1A0E /* AudioToolbox.framework in Frameworks */, + AAE7DEE314CBB1E100DF1A0E /* QuartzCore.framework in Frameworks */, + AAE7DEE414CBB1E100DF1A0E /* OpenGLES.framework in Frameworks */, + AAE7DEE514CBB1E100DF1A0E /* CoreGraphics.framework in Frameworks */, + AAE7DEE614CBB1E100DF1A0E /* UIKit.framework in Frameworks */, + AAE7DEE714CBB1E100DF1A0E /* Foundation.framework in Frameworks */, + AAE7DEE814CBB1E100DF1A0E /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AAE7DFA514CBB54E00DF1A0E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE47517605B930029C7A5 /* libSDL2test.a in Frameworks */, + AAE7DFA614CBB54E00DF1A0E /* libSDL2.a in Frameworks */, + FA684F8C1BAF1A7400DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD9196766E000F8EB7C /* CoreMotion.framework in Frameworks */, + AAE7DFA714CBB54E00DF1A0E /* AudioToolbox.framework in Frameworks */, + AAE7DFA814CBB54E00DF1A0E /* QuartzCore.framework in Frameworks */, + AAE7DFA914CBB54E00DF1A0E /* OpenGLES.framework in Frameworks */, + AAE7DFAA14CBB54E00DF1A0E /* CoreGraphics.framework in Frameworks */, + AAE7DFAB14CBB54E00DF1A0E /* UIKit.framework in Frameworks */, + AAE7DFAC14CBB54E00DF1A0E /* Foundation.framework in Frameworks */, + AAE7DFAD14CBB54E00DF1A0E /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FAE0E9851BAF9B230098DFA4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FAE0E9861BAF9B230098DFA4 /* libSDL2.a in Frameworks */, + FAE0E9871BAF9B230098DFA4 /* GameController.framework in Frameworks */, + FAE0E9881BAF9B230098DFA4 /* CoreMotion.framework in Frameworks */, + FAE0E9891BAF9B230098DFA4 /* AudioToolbox.framework in Frameworks */, + FAE0E98A1BAF9B230098DFA4 /* QuartzCore.framework in Frameworks */, + FAE0E98B1BAF9B230098DFA4 /* OpenGLES.framework in Frameworks */, + FAE0E98C1BAF9B230098DFA4 /* CoreGraphics.framework in Frameworks */, + FAE0E98D1BAF9B230098DFA4 /* UIKit.framework in Frameworks */, + FAE0E98E1BAF9B230098DFA4 /* Foundation.framework in Frameworks */, + FAE0E98F1BAF9B230098DFA4 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDA8AAAE0E2D330F00EA573E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5850E313495006BAC0B /* libSDL2.a in Frameworks */, + FA684F7F1BAF1A4D00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BC9196766BC00F8EB7C /* CoreMotion.framework in Frameworks */, + FDA8AAB10E2D330F00EA573E /* AudioToolbox.framework in Frameworks */, + FDA8AAB20E2D330F00EA573E /* QuartzCore.framework in Frameworks */, + FDA8AAB30E2D330F00EA573E /* OpenGLES.framework in Frameworks */, + FDA8AAB40E2D330F00EA573E /* CoreGraphics.framework in Frameworks */, + FDA8AAB50E2D330F00EA573E /* UIKit.framework in Frameworks */, + FDA8AAB60E2D330F00EA573E /* Foundation.framework in Frameworks */, + FDA8AAB70E2D330F00EA573E /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC3C00E2D47E6001DB1D8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE58C0E3134F3006BAC0B /* libSDL2.a in Frameworks */, + FA684F801BAF1A5000DCFD1A /* GameController.framework in Frameworks */, + FA8B4BCD196766BF00F8EB7C /* CoreMotion.framework in Frameworks */, + FDAAC3C30E2D47E6001DB1D8 /* AudioToolbox.framework in Frameworks */, + FDAAC3C40E2D47E6001DB1D8 /* QuartzCore.framework in Frameworks */, + FDAAC3C50E2D47E6001DB1D8 /* OpenGLES.framework in Frameworks */, + FDAAC3C60E2D47E6001DB1D8 /* CoreGraphics.framework in Frameworks */, + FDAAC3C70E2D47E6001DB1D8 /* UIKit.framework in Frameworks */, + FDAAC3C80E2D47E6001DB1D8 /* Foundation.framework in Frameworks */, + FDAAC3C90E2D47E6001DB1D8 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC58E0E2D5429001DB1D8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE59B0E31356A006BAC0B /* libSDL2.a in Frameworks */, + FA684F821BAF1A5700DCFD1A /* GameController.framework in Frameworks */, + FA8B4BCF196766C400F8EB7C /* CoreMotion.framework in Frameworks */, + FDAAC5910E2D5429001DB1D8 /* AudioToolbox.framework in Frameworks */, + FDAAC5920E2D5429001DB1D8 /* QuartzCore.framework in Frameworks */, + FDAAC5930E2D5429001DB1D8 /* OpenGLES.framework in Frameworks */, + FDAAC5940E2D5429001DB1D8 /* CoreGraphics.framework in Frameworks */, + FDAAC5950E2D5429001DB1D8 /* UIKit.framework in Frameworks */, + FDAAC5960E2D5429001DB1D8 /* Foundation.framework in Frameworks */, + FDAAC5970E2D5429001DB1D8 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC5BC0E2D55B5001DB1D8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE59F0E31358D006BAC0B /* libSDL2.a in Frameworks */, + FA684F831BAF1A5A00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD0196766C600F8EB7C /* CoreMotion.framework in Frameworks */, + FDAAC5BF0E2D55B5001DB1D8 /* AudioToolbox.framework in Frameworks */, + FDAAC5C00E2D55B5001DB1D8 /* QuartzCore.framework in Frameworks */, + FDAAC5C10E2D55B5001DB1D8 /* OpenGLES.framework in Frameworks */, + FDAAC5C20E2D55B5001DB1D8 /* CoreGraphics.framework in Frameworks */, + FDAAC5C30E2D55B5001DB1D8 /* UIKit.framework in Frameworks */, + FDAAC5C40E2D55B5001DB1D8 /* Foundation.framework in Frameworks */, + FDAAC5C50E2D55B5001DB1D8 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC6190E2D5914001DB1D8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE47417605B5C0029C7A5 /* libSDL2test.a in Frameworks */, + FDBDE57C0E313445006BAC0B /* libSDL2.a in Frameworks */, + FA684F851BAF1A6000DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD2196766CB00F8EB7C /* CoreMotion.framework in Frameworks */, + FDAAC61C0E2D5914001DB1D8 /* AudioToolbox.framework in Frameworks */, + FDAAC61D0E2D5914001DB1D8 /* QuartzCore.framework in Frameworks */, + FDAAC61E0E2D5914001DB1D8 /* OpenGLES.framework in Frameworks */, + FDAAC61F0E2D5914001DB1D8 /* CoreGraphics.framework in Frameworks */, + FDAAC6200E2D5914001DB1D8 /* UIKit.framework in Frameworks */, + FDAAC6210E2D5914001DB1D8 /* Foundation.framework in Frameworks */, + FDAAC6220E2D5914001DB1D8 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC42FF30F0D866D009C87E1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE47117605A7F0029C7A5 /* libSDL2test.a in Frameworks */, + FDC42FF40F0D866D009C87E1 /* libSDL2.a in Frameworks */, + FA684F811BAF1A5300DCFD1A /* GameController.framework in Frameworks */, + FA8B4BCE196766C100F8EB7C /* CoreMotion.framework in Frameworks */, + FDC42FF60F0D866D009C87E1 /* AudioToolbox.framework in Frameworks */, + FDC42FF70F0D866D009C87E1 /* QuartzCore.framework in Frameworks */, + FDC42FF80F0D866D009C87E1 /* OpenGLES.framework in Frameworks */, + FDC42FF90F0D866D009C87E1 /* CoreGraphics.framework in Frameworks */, + FDC42FFA0F0D866D009C87E1 /* UIKit.framework in Frameworks */, + FDC42FFB0F0D866D009C87E1 /* Foundation.framework in Frameworks */, + FDC42FFC0F0D866D009C87E1 /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C0FD0E2E4F4B00B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5A90E3135C0006BAC0B /* libSDL2.a in Frameworks */, + FA684F901BAF1A8100DCFD1A /* GameController.framework in Frameworks */, + FA8B4BDD196766EB00F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C1000E2E4F4B00B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C1010E2E4F4B00B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C1020E2E4F4B00B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C1030E2E4F4B00B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C1040E2E4F4B00B7A85F /* UIKit.framework in Frameworks */, + FDD2C1050E2E4F4B00B7A85F /* Foundation.framework in Frameworks */, + FDD2C1060E2E4F4B00B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C1740E2E52C000B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5AE0E3135E6006BAC0B /* libSDL2.a in Frameworks */, + FA684F861BAF1A6200DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD3196766CE00F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C1770E2E52C000B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C1780E2E52C000B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C1790E2E52C000B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C17A0E2E52C000B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C17B0E2E52C000B7A85F /* UIKit.framework in Frameworks */, + FDD2C17C0E2E52C000B7A85F /* Foundation.framework in Frameworks */, + FDD2C17D0E2E52C000B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C1980E2E534F00B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5B60E3135FE006BAC0B /* libSDL2.a in Frameworks */, + FA684F871BAF1A6500DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD4196766D100F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C19B0E2E534F00B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C19C0E2E534F00B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C19D0E2E534F00B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C19E0E2E534F00B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C19F0E2E534F00B7A85F /* UIKit.framework in Frameworks */, + FDD2C1A00E2E534F00B7A85F /* Foundation.framework in Frameworks */, + FDD2C1A10E2E534F00B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C4510E2E773800B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5BC0E31364D006BAC0B /* libSDL2.a in Frameworks */, + FA684F881BAF1A6800DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD5196766D400F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C4540E2E773800B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C4550E2E773800B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C4560E2E773800B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C4570E2E773800B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C4580E2E773800B7A85F /* UIKit.framework in Frameworks */, + FDD2C4590E2E773800B7A85F /* Foundation.framework in Frameworks */, + FDD2C45A0E2E773800B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C46F0E2E77D700B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5C20E313663006BAC0B /* libSDL2.a in Frameworks */, + FA684F891BAF1A6A00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD6196766D700F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C4720E2E77D700B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C4730E2E77D700B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C4740E2E77D700B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C4750E2E77D700B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C4760E2E77D700B7A85F /* UIKit.framework in Frameworks */, + FDD2C4770E2E77D700B7A85F /* Foundation.framework in Frameworks */, + FDD2C4780E2E77D700B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C4FE0E2E7F4800B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5C60E3136F1006BAC0B /* libSDL2.a in Frameworks */, + FA684F8A1BAF1A6D00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BD7196766DA00F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C5010E2E7F4800B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C5020E2E7F4800B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C5030E2E7F4800B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C5040E2E7F4800B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C5050E2E7F4800B7A85F /* UIKit.framework in Frameworks */, + FDD2C5060E2E7F4800B7A85F /* Foundation.framework in Frameworks */, + FDD2C5070E2E7F4800B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C51C0E2E807600B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5C80E313702006BAC0B /* libSDL2.a in Frameworks */, + FA684F8E1BAF1A7B00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BDB196766E500F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C51F0E2E807600B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C5200E2E807600B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C5210E2E807600B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C5220E2E807600B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C5230E2E807600B7A85F /* UIKit.framework in Frameworks */, + FDD2C5240E2E807600B7A85F /* Foundation.framework in Frameworks */, + FDD2C5250E2E807600B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C5410E2E80E400B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + AA1EE47717605BAB0029C7A5 /* libSDL2test.a in Frameworks */, + FDBDE5CA0E313712006BAC0B /* libSDL2.a in Frameworks */, + FA684F8F1BAF1A7E00DCFD1A /* GameController.framework in Frameworks */, + FA8B4BDC196766E800F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C5440E2E80E400B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C5450E2E80E400B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C5460E2E80E400B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C5470E2E80E400B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C5480E2E80E400B7A85F /* UIKit.framework in Frameworks */, + FDD2C5490E2E80E400B7A85F /* Foundation.framework in Frameworks */, + FDD2C54A0E2E80E400B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C57A0E2E8C7400B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5CC0E31372B006BAC0B /* libSDL2.a in Frameworks */, + FA684F911BAF1A8400DCFD1A /* GameController.framework in Frameworks */, + FA8B4BDE196766EE00F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C57D0E2E8C7400B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C57E0E2E8C7400B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C57F0E2E8C7400B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C5800E2E8C7400B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C5810E2E8C7400B7A85F /* UIKit.framework in Frameworks */, + FDD2C5820E2E8C7400B7A85F /* Foundation.framework in Frameworks */, + FDD2C5830E2E8C7400B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C5B80E2E8CFC00B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5CE0E31373E006BAC0B /* libSDL2.a in Frameworks */, + FA684F921BAF1A8700DCFD1A /* GameController.framework in Frameworks */, + FA8B4BDF196766F100F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C5BB0E2E8CFC00B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C5BC0E2E8CFC00B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C5BD0E2E8CFC00B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C5BE0E2E8CFC00B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C5BF0E2E8CFC00B7A85F /* UIKit.framework in Frameworks */, + FDD2C5C00E2E8CFC00B7A85F /* Foundation.framework in Frameworks */, + FDD2C5C10E2E8CFC00B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C6E70E2E959E00B7A85F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FDBDE5D40E313789006BAC0B /* libSDL2.a in Frameworks */, + FA684F941BAF1A9400DCFD1A /* GameController.framework in Frameworks */, + FA8B4BE1196766F600F8EB7C /* CoreMotion.framework in Frameworks */, + FDD2C6EA0E2E959E00B7A85F /* AudioToolbox.framework in Frameworks */, + FDD2C6EB0E2E959E00B7A85F /* QuartzCore.framework in Frameworks */, + FDD2C6EC0E2E959E00B7A85F /* OpenGLES.framework in Frameworks */, + FDD2C6ED0E2E959E00B7A85F /* CoreGraphics.framework in Frameworks */, + FDD2C6EE0E2E959E00B7A85F /* UIKit.framework in Frameworks */, + FDD2C6EF0E2E959E00B7A85F /* Foundation.framework in Frameworks */, + FDD2C6F00E2E959E00B7A85F /* CoreAudio.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 19C28FACFE9D520D11CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + 1D6058910D05DD3D006BFB54 /* testwm2.app */, + FDA8AABB0E2D330F00EA573E /* loopwav.app */, + FDAAC3CD0E2D47E6001DB1D8 /* testaudioinfo.app */, + FDAAC59B0E2D5429001DB1D8 /* testerror.app */, + FDAAC5C90E2D55B5001DB1D8 /* testfile.app */, + FDAAC6260E2D5914001DB1D8 /* testgles.app */, + FDD2C10A0E2E4F4B00B7A85F /* testthread.app */, + FDD2C1810E2E52C000B7A85F /* testiconv.app */, + FDD2C1A50E2E534F00B7A85F /* testjoystick.app */, + FDD2C45E0E2E773800B7A85F /* testkeys.app */, + FDD2C47C0E2E77D700B7A85F /* testlock.app */, + FDD2C50B0E2E7F4800B7A85F /* testplatform.app */, + FDD2C5290E2E807600B7A85F /* testsem.app */, + FDD2C54E0E2E80E400B7A85F /* testsprite2.app */, + FDD2C5870E2E8C7400B7A85F /* testtimer.app */, + FDD2C5C50E2E8CFC00B7A85F /* testver.app */, + FDD2C6F40E2E959E00B7A85F /* torturethread.app */, + FDC430000F0D866D009C87E1 /* torturethread.app */, + 56ED050D118A8FE400A56AA6 /* testpower.app */, + 046CEF8613254F23007AD51D /* testgesture.app */, + 047A63ED13285C3200CD7973 /* checkkeys.app */, + AAE7DEEC14CBB1E100DF1A0E /* testscale.app */, + AAE7DFB114CBB54E00DF1A0E /* testrendertarget.app */, + FAE0E9931BAF9B230098DFA4 /* testgamecontroller.app */, + ); + name = Products; + sourceTree = ""; + }; + 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { + isa = PBXGroup; + children = ( + AA1EE44D176059220029C7A5 /* SDL2test.xcodeproj */, + FD1B48AC0E3131CA007AB34E /* SDL.xcodeproj */, + FDA8AAD60E2D339A00EA573E /* Resources */, + FDA8A7C30E2D10FA00EA573E /* Linked Frameworks */, + FDA8A73B0E2D0F0400EA573E /* src */, + 19C28FACFE9D520D11CA2CBB /* Products */, + ); + name = CustomTemplate; + sourceTree = ""; + }; + AA1EE44E176059220029C7A5 /* Products */ = { + isa = PBXGroup; + children = ( + AA1EE452176059230029C7A5 /* libSDL2test.a */, + ); + name = Products; + sourceTree = ""; + }; + FD1B48AD0E3131CA007AB34E /* Products */ = { + isa = PBXGroup; + children = ( + FD1B48B80E3131CA007AB34E /* libSDL2.a */, + ); + name = Products; + sourceTree = ""; + }; + FDA8A73B0E2D0F0400EA573E /* src */ = { + isa = PBXGroup; + children = ( + 047A63F013285CD100CD7973 /* checkkeys.c */, + FDA8A78B0E2D0F3D00EA573E /* loopwave.c */, + FDA8A7410E2D0F1600EA573E /* testaudioinfo.c */, + FDC430090F0D86BF009C87E1 /* testdraw2.c */, + FDA8A7470E2D0F1600EA573E /* testerror.c */, + FDA8A7480E2D0F1600EA573E /* testfile.c */, + FA0EF2221BAF43DE000E07A6 /* testgamecontroller.c */, + 046CEF8913254F63007AD51D /* testgesture.c */, + FDAAC6290E2D5960001DB1D8 /* testgles.c */, + FDA8A74D0E2D0F1600EA573E /* testiconv.c */, + FDA8A74E0E2D0F1600EA573E /* testjoystick.c */, + FDA8A74F0E2D0F1600EA573E /* testkeys.c */, + FDA8A7510E2D0F1600EA573E /* testlock.c */, + FDA8A7540E2D0F1600EA573E /* testoverlay2.c */, + FDA8A7560E2D0F1600EA573E /* testplatform.c */, + 56ED0510118A904200A56AA6 /* testpower.c */, + AAE7DFB414CBB5F700DF1A0E /* testrendertarget.c */, + AAE7DF4514CBB43900DF1A0E /* testscale.c */, + FDA8A7570E2D0F1600EA573E /* testsem.c */, + FDA8A7590E2D0F1600EA573E /* testsprite2.c */, + FDA8A74C0E2D0F1600EA573E /* testthread.c */, + FDA8A75A0E2D0F1600EA573E /* testtimer.c */, + FDA8A75B0E2D0F1600EA573E /* testver.c */, + FDA8A75F0E2D0F1600EA573E /* testwm2.c */, + FDA8A7610E2D0F1600EA573E /* torturethread.c */, + ); + name = src; + sourceTree = ""; + }; + FDA8A7C30E2D10FA00EA573E /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + FA684F7A1BAF1A4400DCFD1A /* GameController.framework */, + FA8B4BAC1967076F00F8EB7C /* CoreMotion.framework */, + FDA8A8980E2D111A00EA573E /* AudioToolbox.framework */, + FDA8A8990E2D111A00EA573E /* QuartzCore.framework */, + FDA8A89A0E2D111A00EA573E /* OpenGLES.framework */, + FDA8A89B0E2D111A00EA573E /* CoreGraphics.framework */, + FDA8A89C0E2D111A00EA573E /* UIKit.framework */, + FDA8A89D0E2D111A00EA573E /* Foundation.framework */, + FDA8A89E0E2D111A00EA573E /* CoreAudio.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + FDA8AAD60E2D339A00EA573E /* Resources */ = { + isa = PBXGroup; + children = ( + FA0EF2281BAF4487000E07A6 /* axis.bmp */, + FA0EF2291BAF4487000E07A6 /* button.bmp */, + FA0EF22A1BAF4487000E07A6 /* controllermap.bmp */, + FDD2C18A0E2E52FE00B7A85F /* utf8.txt */, + FDA8AAD90E2D33B000EA573E /* icon.bmp */, + FDA8AADA0E2D33BA00EA573E /* moose.dat */, + FDA8AADB0E2D33BA00EA573E /* picture.xbm */, + FDA8AADE0E2D33C100EA573E /* sample.bmp */, + FDA8AAE20E2D33C600EA573E /* sample.wav */, + ); + name = Resources; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 046CEF7513254F23007AD51D /* testgesture */ = { + isa = PBXNativeTarget; + buildConfigurationList = 046CEF8313254F23007AD51D /* Build configuration list for PBXNativeTarget "testgesture" */; + buildPhases = ( + 046CEF7613254F23007AD51D /* Resources */, + 046CEF7813254F23007AD51D /* Sources */, + 046CEF7A13254F23007AD51D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testgesture; + productName = Test; + productReference = 046CEF8613254F23007AD51D /* testgesture.app */; + productType = "com.apple.product-type.application"; + }; + 047A63DD13285C3200CD7973 /* checkkeys */ = { + isa = PBXNativeTarget; + buildConfigurationList = 047A63EA13285C3200CD7973 /* Build configuration list for PBXNativeTarget "checkkeys" */; + buildPhases = ( + 047A63DE13285C3200CD7973 /* Resources */, + 047A63DF13285C3200CD7973 /* Sources */, + 047A63E113285C3200CD7973 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = checkkeys; + productName = Test; + productReference = 047A63ED13285C3200CD7973 /* checkkeys.app */; + productType = "com.apple.product-type.application"; + }; + 1D6058900D05DD3D006BFB54 /* testwm2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "testwm2" */; + buildPhases = ( + 1D60588D0D05DD3D006BFB54 /* Resources */, + 1D60588E0D05DD3D006BFB54 /* Sources */, + 1D60588F0D05DD3D006BFB54 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testwm2; + productName = Test; + productReference = 1D6058910D05DD3D006BFB54 /* testwm2.app */; + productType = "com.apple.product-type.application"; + }; + 56ED04FC118A8FE400A56AA6 /* testpower */ = { + isa = PBXNativeTarget; + buildConfigurationList = 56ED050A118A8FE400A56AA6 /* Build configuration list for PBXNativeTarget "testpower" */; + buildPhases = ( + 56ED04FD118A8FE400A56AA6 /* Resources */, + 56ED04FF118A8FE400A56AA6 /* Sources */, + 56ED0501118A8FE400A56AA6 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testpower; + productName = Test; + productReference = 56ED050D118A8FE400A56AA6 /* testpower.app */; + productType = "com.apple.product-type.application"; + }; + AAE7DEDA14CBB1E100DF1A0E /* testscale */ = { + isa = PBXNativeTarget; + buildConfigurationList = AAE7DEE914CBB1E100DF1A0E /* Build configuration list for PBXNativeTarget "testscale" */; + buildPhases = ( + AAE7DEDB14CBB1E100DF1A0E /* Resources */, + AAE7DEDD14CBB1E100DF1A0E /* Sources */, + AAE7DEE014CBB1E100DF1A0E /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testscale; + productName = Test; + productReference = AAE7DEEC14CBB1E100DF1A0E /* testscale.app */; + productType = "com.apple.product-type.application"; + }; + AAE7DF9E14CBB54E00DF1A0E /* testrendertarget */ = { + isa = PBXNativeTarget; + buildConfigurationList = AAE7DFAE14CBB54E00DF1A0E /* Build configuration list for PBXNativeTarget "testrendertarget" */; + buildPhases = ( + AAE7DF9F14CBB54E00DF1A0E /* Resources */, + AAE7DFA214CBB54E00DF1A0E /* Sources */, + AAE7DFA514CBB54E00DF1A0E /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testrendertarget; + productName = Test; + productReference = AAE7DFB114CBB54E00DF1A0E /* testrendertarget.app */; + productType = "com.apple.product-type.application"; + }; + FAE0E9801BAF9B230098DFA4 /* testgamecontroller */ = { + isa = PBXNativeTarget; + buildConfigurationList = FAE0E9901BAF9B230098DFA4 /* Build configuration list for PBXNativeTarget "testgamecontroller" */; + buildPhases = ( + FAE0E9811BAF9B230098DFA4 /* Resources */, + FAE0E9831BAF9B230098DFA4 /* Sources */, + FAE0E9851BAF9B230098DFA4 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testgamecontroller; + productName = Test; + productReference = FAE0E9931BAF9B230098DFA4 /* testgamecontroller.app */; + productType = "com.apple.product-type.application"; + }; + FDA8AAAA0E2D330F00EA573E /* loopwav */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDA8AAB80E2D330F00EA573E /* Build configuration list for PBXNativeTarget "loopwav" */; + buildPhases = ( + FDA8AAAB0E2D330F00EA573E /* Resources */, + FDA8AAAC0E2D330F00EA573E /* Sources */, + FDA8AAAE0E2D330F00EA573E /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = loopwav; + productName = Test; + productReference = FDA8AABB0E2D330F00EA573E /* loopwav.app */; + productType = "com.apple.product-type.application"; + }; + FDAAC3BB0E2D47E6001DB1D8 /* testaudioinfo */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDAAC3CA0E2D47E6001DB1D8 /* Build configuration list for PBXNativeTarget "testaudioinfo" */; + buildPhases = ( + FDAAC3BC0E2D47E6001DB1D8 /* Resources */, + FDAAC3BE0E2D47E6001DB1D8 /* Sources */, + FDAAC3C00E2D47E6001DB1D8 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testaudioinfo; + productName = Test; + productReference = FDAAC3CD0E2D47E6001DB1D8 /* testaudioinfo.app */; + productType = "com.apple.product-type.application"; + }; + FDAAC58A0E2D5429001DB1D8 /* testerror */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDAAC5980E2D5429001DB1D8 /* Build configuration list for PBXNativeTarget "testerror" */; + buildPhases = ( + FDAAC58B0E2D5429001DB1D8 /* Resources */, + FDAAC58C0E2D5429001DB1D8 /* Sources */, + FDAAC58E0E2D5429001DB1D8 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testerror; + productName = Test; + productReference = FDAAC59B0E2D5429001DB1D8 /* testerror.app */; + productType = "com.apple.product-type.application"; + }; + FDAAC5B80E2D55B5001DB1D8 /* testfile */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDAAC5C60E2D55B5001DB1D8 /* Build configuration list for PBXNativeTarget "testfile" */; + buildPhases = ( + FDAAC5B90E2D55B5001DB1D8 /* Resources */, + FDAAC5BA0E2D55B5001DB1D8 /* Sources */, + FDAAC5BC0E2D55B5001DB1D8 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testfile; + productName = Test; + productReference = FDAAC5C90E2D55B5001DB1D8 /* testfile.app */; + productType = "com.apple.product-type.application"; + }; + FDAAC6150E2D5914001DB1D8 /* testgles */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDAAC6230E2D5914001DB1D8 /* Build configuration list for PBXNativeTarget "testgles" */; + buildPhases = ( + FDAAC6160E2D5914001DB1D8 /* Resources */, + FDAAC6170E2D5914001DB1D8 /* Sources */, + FDAAC6190E2D5914001DB1D8 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testgles; + productName = Test; + productReference = FDAAC6260E2D5914001DB1D8 /* testgles.app */; + productType = "com.apple.product-type.application"; + }; + FDC42FEF0F0D866D009C87E1 /* testdraw2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDC42FFD0F0D866D009C87E1 /* Build configuration list for PBXNativeTarget "testdraw2" */; + buildPhases = ( + FDC42FF00F0D866D009C87E1 /* Resources */, + FDC42FF10F0D866D009C87E1 /* Sources */, + FDC42FF30F0D866D009C87E1 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testdraw2; + productName = Test; + productReference = FDC430000F0D866D009C87E1 /* torturethread.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C0F90E2E4F4B00B7A85F /* testthread */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C1070E2E4F4B00B7A85F /* Build configuration list for PBXNativeTarget "testthread" */; + buildPhases = ( + FDD2C0FA0E2E4F4B00B7A85F /* Resources */, + FDD2C0FB0E2E4F4B00B7A85F /* Sources */, + FDD2C0FD0E2E4F4B00B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testthread; + productName = Test; + productReference = FDD2C10A0E2E4F4B00B7A85F /* testthread.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C1700E2E52C000B7A85F /* testiconv */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C17E0E2E52C000B7A85F /* Build configuration list for PBXNativeTarget "testiconv" */; + buildPhases = ( + FDD2C1710E2E52C000B7A85F /* Resources */, + FDD2C1720E2E52C000B7A85F /* Sources */, + FDD2C1740E2E52C000B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testiconv; + productName = Test; + productReference = FDD2C1810E2E52C000B7A85F /* testiconv.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C1930E2E534F00B7A85F /* testjoystick */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C1A20E2E534F00B7A85F /* Build configuration list for PBXNativeTarget "testjoystick" */; + buildPhases = ( + FDD2C1940E2E534F00B7A85F /* Resources */, + FDD2C1960E2E534F00B7A85F /* Sources */, + FDD2C1980E2E534F00B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testjoystick; + productName = Test; + productReference = FDD2C1A50E2E534F00B7A85F /* testjoystick.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C44D0E2E773800B7A85F /* testkeys */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C45B0E2E773800B7A85F /* Build configuration list for PBXNativeTarget "testkeys" */; + buildPhases = ( + FDD2C44E0E2E773800B7A85F /* Resources */, + FDD2C44F0E2E773800B7A85F /* Sources */, + FDD2C4510E2E773800B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testkeys; + productName = Test; + productReference = FDD2C45E0E2E773800B7A85F /* testkeys.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C46B0E2E77D700B7A85F /* testlock */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C4790E2E77D700B7A85F /* Build configuration list for PBXNativeTarget "testlock" */; + buildPhases = ( + FDD2C46C0E2E77D700B7A85F /* Resources */, + FDD2C46D0E2E77D700B7A85F /* Sources */, + FDD2C46F0E2E77D700B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testlock; + productName = Test; + productReference = FDD2C47C0E2E77D700B7A85F /* testlock.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C4F90E2E7F4800B7A85F /* testplatform */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C5080E2E7F4800B7A85F /* Build configuration list for PBXNativeTarget "testplatform" */; + buildPhases = ( + FDD2C4FA0E2E7F4800B7A85F /* Resources */, + FDD2C4FC0E2E7F4800B7A85F /* Sources */, + FDD2C4FE0E2E7F4800B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testplatform; + productName = Test; + productReference = FDD2C50B0E2E7F4800B7A85F /* testplatform.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C5170E2E807600B7A85F /* testsem */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C5260E2E807600B7A85F /* Build configuration list for PBXNativeTarget "testsem" */; + buildPhases = ( + FDD2C5180E2E807600B7A85F /* Resources */, + FDD2C51A0E2E807600B7A85F /* Sources */, + FDD2C51C0E2E807600B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testsem; + productName = Test; + productReference = FDD2C5290E2E807600B7A85F /* testsem.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C53D0E2E80E400B7A85F /* testsprite2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C54B0E2E80E400B7A85F /* Build configuration list for PBXNativeTarget "testsprite2" */; + buildPhases = ( + FDD2C53E0E2E80E400B7A85F /* Resources */, + FDD2C53F0E2E80E400B7A85F /* Sources */, + FDD2C5410E2E80E400B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testsprite2; + productName = Test; + productReference = FDD2C54E0E2E80E400B7A85F /* testsprite2.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C5740E2E8C7400B7A85F /* testtimer */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C5840E2E8C7400B7A85F /* Build configuration list for PBXNativeTarget "testtimer" */; + buildPhases = ( + FDD2C5750E2E8C7400B7A85F /* Resources */, + FDD2C5770E2E8C7400B7A85F /* Sources */, + FDD2C57A0E2E8C7400B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testtimer; + productName = Test; + productReference = FDD2C5870E2E8C7400B7A85F /* testtimer.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C5B30E2E8CFC00B7A85F /* testver */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C5C20E2E8CFC00B7A85F /* Build configuration list for PBXNativeTarget "testver" */; + buildPhases = ( + FDD2C5B40E2E8CFC00B7A85F /* Resources */, + FDD2C5B60E2E8CFC00B7A85F /* Sources */, + FDD2C5B80E2E8CFC00B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testver; + productName = Test; + productReference = FDD2C5C50E2E8CFC00B7A85F /* testver.app */; + productType = "com.apple.product-type.application"; + }; + FDD2C6E20E2E959E00B7A85F /* torturethread */ = { + isa = PBXNativeTarget; + buildConfigurationList = FDD2C6F10E2E959E00B7A85F /* Build configuration list for PBXNativeTarget "torturethread" */; + buildPhases = ( + FDD2C6E30E2E959E00B7A85F /* Resources */, + FDD2C6E50E2E959E00B7A85F /* Sources */, + FDD2C6E70E2E959E00B7A85F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = torturethread; + productName = Test; + productReference = FDD2C6F40E2E959E00B7A85F /* torturethread.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0630; + }; + buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "TestiPhoneOS" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = FD1B48AD0E3131CA007AB34E /* Products */; + ProjectRef = FD1B48AC0E3131CA007AB34E /* SDL.xcodeproj */; + }, + { + ProductGroup = AA1EE44E176059220029C7A5 /* Products */; + ProjectRef = AA1EE44D176059220029C7A5 /* SDL2test.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 047A63DD13285C3200CD7973 /* checkkeys */, + FDA8AAAA0E2D330F00EA573E /* loopwav */, + FDAAC3BB0E2D47E6001DB1D8 /* testaudioinfo */, + FDC42FEF0F0D866D009C87E1 /* testdraw2 */, + FDAAC58A0E2D5429001DB1D8 /* testerror */, + FDAAC5B80E2D55B5001DB1D8 /* testfile */, + FAE0E9801BAF9B230098DFA4 /* testgamecontroller */, + 046CEF7513254F23007AD51D /* testgesture */, + FDAAC6150E2D5914001DB1D8 /* testgles */, + FDD2C1700E2E52C000B7A85F /* testiconv */, + FDD2C1930E2E534F00B7A85F /* testjoystick */, + FDD2C44D0E2E773800B7A85F /* testkeys */, + FDD2C46B0E2E77D700B7A85F /* testlock */, + FDD2C4F90E2E7F4800B7A85F /* testplatform */, + 56ED04FC118A8FE400A56AA6 /* testpower */, + AAE7DF9E14CBB54E00DF1A0E /* testrendertarget */, + AAE7DEDA14CBB1E100DF1A0E /* testscale */, + FDD2C5170E2E807600B7A85F /* testsem */, + FDD2C53D0E2E80E400B7A85F /* testsprite2 */, + FDD2C0F90E2E4F4B00B7A85F /* testthread */, + FDD2C5740E2E8C7400B7A85F /* testtimer */, + FDD2C5B30E2E8CFC00B7A85F /* testver */, + 1D6058900D05DD3D006BFB54 /* testwm2 */, + FDD2C6E20E2E959E00B7A85F /* torturethread */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + AA1EE452176059230029C7A5 /* libSDL2test.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libSDL2test.a; + remoteRef = AA1EE451176059230029C7A5 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FD1B48B80E3131CA007AB34E /* libSDL2.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libSDL2.a; + remoteRef = FD1B48B70E3131CA007AB34E /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 046CEF7613254F23007AD51D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 046CEF7713254F23007AD51D /* icon.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 047A63DE13285C3200CD7973 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1D60588D0D05DD3D006BFB54 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 56ED04FD118A8FE400A56AA6 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 56ED04FE118A8FE400A56AA6 /* icon.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AAE7DEDB14CBB1E100DF1A0E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AAE7DEDC14CBB1E100DF1A0E /* icon.bmp in Resources */, + AAE7DF4714CBB45000DF1A0E /* sample.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AAE7DF9F14CBB54E00DF1A0E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AAE7DFA014CBB54E00DF1A0E /* icon.bmp in Resources */, + AAE7DFA114CBB54E00DF1A0E /* sample.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FAE0E9811BAF9B230098DFA4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FAE0E9961BAF9B650098DFA4 /* controllermap.bmp in Resources */, + FAE0E9821BAF9B230098DFA4 /* icon.bmp in Resources */, + FAE0E9981BAF9B6E0098DFA4 /* axis.bmp in Resources */, + FAE0E9971BAF9B6A0098DFA4 /* button.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDA8AAAB0E2D330F00EA573E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDA8AAE30E2D33C600EA573E /* sample.wav in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC3BC0E2D47E6001DB1D8 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC58B0E2D5429001DB1D8 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC5B90E2D55B5001DB1D8 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC6160E2D5914001DB1D8 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDAAC6390E2D59BE001DB1D8 /* icon.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC42FF00F0D866D009C87E1 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C0FA0E2E4F4B00B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C1710E2E52C000B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C18B0E2E52FE00B7A85F /* utf8.txt in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C1940E2E534F00B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C44E0E2E773800B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C46C0E2E77D700B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C4FA0E2E7F4800B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C5180E2E807600B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C53E0E2E80E400B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C5520E2E812C00B7A85F /* icon.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C5750E2E8C7400B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C5760E2E8C7400B7A85F /* icon.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C5B40E2E8CFC00B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C5B50E2E8CFC00B7A85F /* icon.bmp in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C6E30E2E959E00B7A85F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 046CEF7813254F23007AD51D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 046CEF8A13254F63007AD51D /* testgesture.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 047A63DF13285C3200CD7973 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 047A63F113285CD100CD7973 /* checkkeys.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1D60588E0D05DD3D006BFB54 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDA8A79C0E2D0F9300EA573E /* testwm2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 56ED04FF118A8FE400A56AA6 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 56ED0511118A904200A56AA6 /* testpower.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AAE7DEDD14CBB1E100DF1A0E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AAE7DF4614CBB43900DF1A0E /* testscale.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AAE7DFA214CBB54E00DF1A0E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AAE7DFB514CBB5F700DF1A0E /* testrendertarget.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FAE0E9831BAF9B230098DFA4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FAE0E9951BAF9B510098DFA4 /* testgamecontroller.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDA8AAAC0E2D330F00EA573E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDA8AABE0E2D335C00EA573E /* loopwave.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC3BE0E2D47E6001DB1D8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDAAC3D30E2D4800001DB1D8 /* testaudioinfo.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC58C0E2D5429001DB1D8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDAAC59F0E2D54B8001DB1D8 /* testerror.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC5BA0E2D55B5001DB1D8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDAAC5CC0E2D55CA001DB1D8 /* testfile.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDAAC6170E2D5914001DB1D8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDAAC62A0E2D5960001DB1D8 /* testgles.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDC42FF10F0D866D009C87E1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDC4300A0F0D86BF009C87E1 /* testdraw2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C0FB0E2E4F4B00B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C10D0E2E4F6900B7A85F /* testthread.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C1720E2E52C000B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C1840E2E52D900B7A85F /* testiconv.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C1960E2E534F00B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FA0EF22E1BAF4654000E07A6 /* testjoystick.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C44F0E2E773800B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C4610E2E777500B7A85F /* testkeys.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C46D0E2E77D700B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C47F0E2E77E300B7A85F /* testlock.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C4FC0E2E7F4800B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C50E0E2E7F5800B7A85F /* testplatform.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C51A0E2E807600B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C52C0E2E808700B7A85F /* testsem.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C53F0E2E80E400B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C5510E2E80F400B7A85F /* testsprite2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C5770E2E8C7400B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C58A0E2E8CB500B7A85F /* testtimer.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C5B60E2E8CFC00B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C5C80E2E8D1200B7A85F /* testver.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FDD2C6E50E2E959E00B7A85F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FDD2C6F70E2E95B100B7A85F /* torturethread.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 046CEF8413254F23007AD51D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testgesture; + }; + name = Debug; + }; + 046CEF8513254F23007AD51D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testgesture; + }; + name = Release; + }; + 047A63EB13285C3200CD7973 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = checkkeys; + }; + name = Debug; + }; + 047A63EC13285C3200CD7973 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = checkkeys; + }; + name = Release; + }; + 1D6058940D05DD3E006BFB54 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testwm2; + }; + name = Debug; + }; + 1D6058950D05DD3E006BFB54 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testwm2; + }; + name = Release; + }; + 56ED050B118A8FE400A56AA6 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testpower; + }; + name = Debug; + }; + 56ED050C118A8FE400A56AA6 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testpower; + }; + name = Release; + }; + AAE7DEEA14CBB1E100DF1A0E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testscale; + }; + name = Debug; + }; + AAE7DEEB14CBB1E100DF1A0E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testscale; + }; + name = Release; + }; + AAE7DFAF14CBB54E00DF1A0E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testrendertarget; + }; + name = Debug; + }; + AAE7DFB014CBB54E00DF1A0E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testrendertarget; + }; + name = Release; + }; + C01FCF4F08A954540054247B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = ../../include; + ONLY_ACTIVE_ARCH = YES; + OTHER_LDFLAGS = "-ObjC"; + "PROVISIONING_PROFILE[sdk=iphoneos*]" = ""; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C01FCF5008A954540054247B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + HEADER_SEARCH_PATHS = ../../include; + OTHER_LDFLAGS = "-ObjC"; + "PROVISIONING_PROFILE[sdk=iphoneos*]" = ""; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + FAE0E9911BAF9B230098DFA4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + FAE0E9921BAF9B230098DFA4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; + FDA8AAB90E2D330F00EA573E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = loopwav; + }; + name = Debug; + }; + FDA8AABA0E2D330F00EA573E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = loopwav; + }; + name = Release; + }; + FDAAC3CB0E2D47E6001DB1D8 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testaudioinfo; + }; + name = Debug; + }; + FDAAC3CC0E2D47E6001DB1D8 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testaudioinfo; + }; + name = Release; + }; + FDAAC5990E2D5429001DB1D8 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testerror; + }; + name = Debug; + }; + FDAAC59A0E2D5429001DB1D8 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testerror; + }; + name = Release; + }; + FDAAC5C70E2D55B5001DB1D8 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testfile; + }; + name = Debug; + }; + FDAAC5C80E2D55B5001DB1D8 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testfile; + }; + name = Release; + }; + FDAAC6240E2D5914001DB1D8 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testgles; + }; + name = Debug; + }; + FDAAC6250E2D5914001DB1D8 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testgles; + }; + name = Release; + }; + FDC42FFE0F0D866D009C87E1 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = torturethread; + }; + name = Debug; + }; + FDC42FFF0F0D866D009C87E1 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = torturethread; + }; + name = Release; + }; + FDD2C1080E2E4F4B00B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testthread; + }; + name = Debug; + }; + FDD2C1090E2E4F4B00B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testthread; + }; + name = Release; + }; + FDD2C17F0E2E52C000B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testiconv; + }; + name = Debug; + }; + FDD2C1800E2E52C000B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testiconv; + }; + name = Release; + }; + FDD2C1A30E2E534F00B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testjoystick; + }; + name = Debug; + }; + FDD2C1A40E2E534F00B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testjoystick; + }; + name = Release; + }; + FDD2C45C0E2E773800B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testkeys; + }; + name = Debug; + }; + FDD2C45D0E2E773800B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testkeys; + }; + name = Release; + }; + FDD2C47A0E2E77D700B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testlock; + }; + name = Debug; + }; + FDD2C47B0E2E77D700B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testlock; + }; + name = Release; + }; + FDD2C5090E2E7F4800B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testplatform; + }; + name = Debug; + }; + FDD2C50A0E2E7F4800B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testplatform; + }; + name = Release; + }; + FDD2C5270E2E807600B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testsem; + }; + name = Debug; + }; + FDD2C5280E2E807600B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testsem; + }; + name = Release; + }; + FDD2C54C0E2E80E400B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testsprite2; + }; + name = Debug; + }; + FDD2C54D0E2E80E400B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testsprite2; + }; + name = Release; + }; + FDD2C5850E2E8C7400B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testtimer; + }; + name = Debug; + }; + FDD2C5860E2E8C7400B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testtimer; + }; + name = Release; + }; + FDD2C5C30E2E8CFC00B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testver; + }; + name = Debug; + }; + FDD2C5C40E2E8CFC00B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = testver; + }; + name = Release; + }; + FDD2C6F20E2E959E00B7A85F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = torturethread; + }; + name = Debug; + }; + FDD2C6F30E2E959E00B7A85F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Info.plist; + PRODUCT_NAME = torturethread; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 046CEF8313254F23007AD51D /* Build configuration list for PBXNativeTarget "testgesture" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 046CEF8413254F23007AD51D /* Debug */, + 046CEF8513254F23007AD51D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 047A63EA13285C3200CD7973 /* Build configuration list for PBXNativeTarget "checkkeys" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 047A63EB13285C3200CD7973 /* Debug */, + 047A63EC13285C3200CD7973 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "testwm2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1D6058940D05DD3E006BFB54 /* Debug */, + 1D6058950D05DD3E006BFB54 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 56ED050A118A8FE400A56AA6 /* Build configuration list for PBXNativeTarget "testpower" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 56ED050B118A8FE400A56AA6 /* Debug */, + 56ED050C118A8FE400A56AA6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + AAE7DEE914CBB1E100DF1A0E /* Build configuration list for PBXNativeTarget "testscale" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AAE7DEEA14CBB1E100DF1A0E /* Debug */, + AAE7DEEB14CBB1E100DF1A0E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + AAE7DFAE14CBB54E00DF1A0E /* Build configuration list for PBXNativeTarget "testrendertarget" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AAE7DFAF14CBB54E00DF1A0E /* Debug */, + AAE7DFB014CBB54E00DF1A0E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C01FCF4E08A954540054247B /* Build configuration list for PBXProject "TestiPhoneOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C01FCF4F08A954540054247B /* Debug */, + C01FCF5008A954540054247B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FAE0E9901BAF9B230098DFA4 /* Build configuration list for PBXNativeTarget "testgamecontroller" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FAE0E9911BAF9B230098DFA4 /* Debug */, + FAE0E9921BAF9B230098DFA4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDA8AAB80E2D330F00EA573E /* Build configuration list for PBXNativeTarget "loopwav" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDA8AAB90E2D330F00EA573E /* Debug */, + FDA8AABA0E2D330F00EA573E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDAAC3CA0E2D47E6001DB1D8 /* Build configuration list for PBXNativeTarget "testaudioinfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDAAC3CB0E2D47E6001DB1D8 /* Debug */, + FDAAC3CC0E2D47E6001DB1D8 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDAAC5980E2D5429001DB1D8 /* Build configuration list for PBXNativeTarget "testerror" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDAAC5990E2D5429001DB1D8 /* Debug */, + FDAAC59A0E2D5429001DB1D8 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDAAC5C60E2D55B5001DB1D8 /* Build configuration list for PBXNativeTarget "testfile" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDAAC5C70E2D55B5001DB1D8 /* Debug */, + FDAAC5C80E2D55B5001DB1D8 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDAAC6230E2D5914001DB1D8 /* Build configuration list for PBXNativeTarget "testgles" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDAAC6240E2D5914001DB1D8 /* Debug */, + FDAAC6250E2D5914001DB1D8 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDC42FFD0F0D866D009C87E1 /* Build configuration list for PBXNativeTarget "testdraw2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDC42FFE0F0D866D009C87E1 /* Debug */, + FDC42FFF0F0D866D009C87E1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C1070E2E4F4B00B7A85F /* Build configuration list for PBXNativeTarget "testthread" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C1080E2E4F4B00B7A85F /* Debug */, + FDD2C1090E2E4F4B00B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C17E0E2E52C000B7A85F /* Build configuration list for PBXNativeTarget "testiconv" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C17F0E2E52C000B7A85F /* Debug */, + FDD2C1800E2E52C000B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C1A20E2E534F00B7A85F /* Build configuration list for PBXNativeTarget "testjoystick" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C1A30E2E534F00B7A85F /* Debug */, + FDD2C1A40E2E534F00B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C45B0E2E773800B7A85F /* Build configuration list for PBXNativeTarget "testkeys" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C45C0E2E773800B7A85F /* Debug */, + FDD2C45D0E2E773800B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C4790E2E77D700B7A85F /* Build configuration list for PBXNativeTarget "testlock" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C47A0E2E77D700B7A85F /* Debug */, + FDD2C47B0E2E77D700B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C5080E2E7F4800B7A85F /* Build configuration list for PBXNativeTarget "testplatform" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C5090E2E7F4800B7A85F /* Debug */, + FDD2C50A0E2E7F4800B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C5260E2E807600B7A85F /* Build configuration list for PBXNativeTarget "testsem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C5270E2E807600B7A85F /* Debug */, + FDD2C5280E2E807600B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C54B0E2E80E400B7A85F /* Build configuration list for PBXNativeTarget "testsprite2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C54C0E2E80E400B7A85F /* Debug */, + FDD2C54D0E2E80E400B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C5840E2E8C7400B7A85F /* Build configuration list for PBXNativeTarget "testtimer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C5850E2E8C7400B7A85F /* Debug */, + FDD2C5860E2E8C7400B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C5C20E2E8CFC00B7A85F /* Build configuration list for PBXNativeTarget "testver" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C5C30E2E8CFC00B7A85F /* Debug */, + FDD2C5C40E2E8CFC00B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FDD2C6F10E2E959E00B7A85F /* Build configuration list for PBXNativeTarget "torturethread" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FDD2C6F20E2E959E00B7A85F /* Debug */, + FDD2C6F30E2E959E00B7A85F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; +} diff --git a/SDL/Xcode/SDL/Info-Framework.plist b/SDL/Xcode/SDL/Info-Framework.plist new file mode 100644 index 0000000..bccaa8a --- /dev/null +++ b/SDL/Xcode/SDL/Info-Framework.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleGetInfoString + http://www.libsdl.org + CFBundleIconFile + + CFBundleIdentifier + org.libsdl.SDL2 + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Simple DirectMedia Layer + CFBundlePackageType + FMWK + CFBundleShortVersionString + 2.0.4 + CFBundleSignature + SDLX + CFBundleVersion + 2.0.4 + + diff --git a/SDL/Xcode/SDL/SDL.xcodeproj/project.pbxproj b/SDL/Xcode/SDL/SDL.xcodeproj/project.pbxproj new file mode 100755 index 0000000..9d685da --- /dev/null +++ b/SDL/Xcode/SDL/SDL.xcodeproj/project.pbxproj @@ -0,0 +1,2977 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 007317A20858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */; }; + 007317A30858DECD00B2BC32 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179C0858DECD00B2BC32 /* AudioUnit.framework */; }; + 007317A40858DECD00B2BC32 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179D0858DECD00B2BC32 /* Cocoa.framework */; }; + 007317A50858DECD00B2BC32 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179E0858DECD00B2BC32 /* CoreAudio.framework */; }; + 007317A60858DECD00B2BC32 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; + 007317A90858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */; }; + 007317AA0858DECD00B2BC32 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179C0858DECD00B2BC32 /* AudioUnit.framework */; }; + 007317AB0858DECD00B2BC32 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179D0858DECD00B2BC32 /* Cocoa.framework */; }; + 007317AC0858DECD00B2BC32 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179E0858DECD00B2BC32 /* CoreAudio.framework */; }; + 007317AD0858DECD00B2BC32 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; + 007317C30858E15000B2BC32 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317C10858E15000B2BC32 /* Carbon.framework */; }; + 00CFA89D106B4BA100758660 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00CFA89C106B4BA100758660 /* ForceFeedback.framework */; }; + 00D0D08410675DD9004B05EF /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00D0D08310675DD9004B05EF /* CoreFoundation.framework */; }; + 00D0D0D810675E46004B05EF /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317C10858E15000B2BC32 /* Carbon.framework */; }; + 04043BBB12FEB1BE0076DB1F /* SDL_glfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = 04043BBA12FEB1BE0076DB1F /* SDL_glfuncs.h */; }; + 04043BBC12FEB1BE0076DB1F /* SDL_glfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = 04043BBA12FEB1BE0076DB1F /* SDL_glfuncs.h */; }; + 041B2CA512FA0D680087D585 /* SDL_render.c in Sources */ = {isa = PBXBuildFile; fileRef = 041B2C9E12FA0D680087D585 /* SDL_render.c */; }; + 041B2CA612FA0D680087D585 /* SDL_sysrender.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B2C9F12FA0D680087D585 /* SDL_sysrender.h */; }; + 041B2CAB12FA0D680087D585 /* SDL_render.c in Sources */ = {isa = PBXBuildFile; fileRef = 041B2C9E12FA0D680087D585 /* SDL_render.c */; }; + 041B2CAC12FA0D680087D585 /* SDL_sysrender.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B2C9F12FA0D680087D585 /* SDL_sysrender.h */; }; + 0435673E1303160F00BA5428 /* SDL_shaders_gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0435673C1303160F00BA5428 /* SDL_shaders_gl.c */; }; + 0435673F1303160F00BA5428 /* SDL_shaders_gl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0435673D1303160F00BA5428 /* SDL_shaders_gl.h */; }; + 043567401303160F00BA5428 /* SDL_shaders_gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0435673C1303160F00BA5428 /* SDL_shaders_gl.c */; }; + 043567411303160F00BA5428 /* SDL_shaders_gl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0435673D1303160F00BA5428 /* SDL_shaders_gl.h */; }; + 04409B9112FA97ED00FB9AA8 /* mmx.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409B8D12FA97ED00FB9AA8 /* mmx.h */; }; + 04409B9212FA97ED00FB9AA8 /* SDL_yuv_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409B8E12FA97ED00FB9AA8 /* SDL_yuv_mmx.c */; }; + 04409B9312FA97ED00FB9AA8 /* SDL_yuv_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409B8F12FA97ED00FB9AA8 /* SDL_yuv_sw_c.h */; }; + 04409B9412FA97ED00FB9AA8 /* SDL_yuv_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409B9012FA97ED00FB9AA8 /* SDL_yuv_sw.c */; }; + 04409B9512FA97ED00FB9AA8 /* mmx.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409B8D12FA97ED00FB9AA8 /* mmx.h */; }; + 04409B9612FA97ED00FB9AA8 /* SDL_yuv_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409B8E12FA97ED00FB9AA8 /* SDL_yuv_mmx.c */; }; + 04409B9712FA97ED00FB9AA8 /* SDL_yuv_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409B8F12FA97ED00FB9AA8 /* SDL_yuv_sw_c.h */; }; + 04409B9812FA97ED00FB9AA8 /* SDL_yuv_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409B9012FA97ED00FB9AA8 /* SDL_yuv_sw.c */; }; + 0442EC1812FE1BBA004C9285 /* SDL_render_gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC1712FE1BBA004C9285 /* SDL_render_gl.c */; }; + 0442EC1912FE1BBA004C9285 /* SDL_render_gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC1712FE1BBA004C9285 /* SDL_render_gl.c */; }; + 0442EC1C12FE1BCB004C9285 /* SDL_render_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC1A12FE1BCB004C9285 /* SDL_render_sw_c.h */; }; + 0442EC1D12FE1BCB004C9285 /* SDL_render_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC1B12FE1BCB004C9285 /* SDL_render_sw.c */; }; + 0442EC1E12FE1BCB004C9285 /* SDL_render_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC1A12FE1BCB004C9285 /* SDL_render_sw_c.h */; }; + 0442EC1F12FE1BCB004C9285 /* SDL_render_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC1B12FE1BCB004C9285 /* SDL_render_sw.c */; }; + 0442EC5A12FE1C60004C9285 /* SDL_x11framebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5812FE1C60004C9285 /* SDL_x11framebuffer.c */; }; + 0442EC5B12FE1C60004C9285 /* SDL_x11framebuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC5912FE1C60004C9285 /* SDL_x11framebuffer.h */; }; + 0442EC5C12FE1C60004C9285 /* SDL_x11framebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5812FE1C60004C9285 /* SDL_x11framebuffer.c */; }; + 0442EC5D12FE1C60004C9285 /* SDL_x11framebuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC5912FE1C60004C9285 /* SDL_x11framebuffer.h */; }; + 0442EC5F12FE1C75004C9285 /* SDL_hints.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5E12FE1C75004C9285 /* SDL_hints.c */; }; + 0442EC6012FE1C75004C9285 /* SDL_hints.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5E12FE1C75004C9285 /* SDL_hints.c */; }; + 04BAC0C81300C2160055DE28 /* SDL_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BAC0C71300C2160055DE28 /* SDL_log.c */; }; + 04BAC0C91300C2160055DE28 /* SDL_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BAC0C71300C2160055DE28 /* SDL_log.c */; }; + 04BD000812E6671800899322 /* SDL_diskaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD8812E6671700899322 /* SDL_diskaudio.c */; }; + 04BD000912E6671800899322 /* SDL_diskaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFD8912E6671700899322 /* SDL_diskaudio.h */; }; + 04BD001012E6671800899322 /* SDL_dummyaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD9412E6671700899322 /* SDL_dummyaudio.c */; }; + 04BD001112E6671800899322 /* SDL_dummyaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFD9512E6671700899322 /* SDL_dummyaudio.h */; }; + 04BD001812E6671800899322 /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDA012E6671700899322 /* SDL_coreaudio.c */; }; + 04BD001912E6671800899322 /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDA112E6671700899322 /* SDL_coreaudio.h */; }; + 04BD002612E6671800899322 /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB412E6671700899322 /* SDL_audio.c */; }; + 04BD002712E6671800899322 /* SDL_audio_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB512E6671700899322 /* SDL_audio_c.h */; }; + 04BD002812E6671800899322 /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB612E6671700899322 /* SDL_audiocvt.c */; }; + 04BD002912E6671800899322 /* SDL_audiodev.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB712E6671700899322 /* SDL_audiodev.c */; }; + 04BD002A12E6671800899322 /* SDL_audiodev_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB812E6671700899322 /* SDL_audiodev_c.h */; }; + 04BD002B12E6671800899322 /* SDL_audiomem.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB912E6671700899322 /* SDL_audiomem.h */; }; + 04BD002C12E6671800899322 /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDBA12E6671700899322 /* SDL_audiotypecvt.c */; }; + 04BD002D12E6671800899322 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDBB12E6671700899322 /* SDL_mixer.c */; }; + 04BD003412E6671800899322 /* SDL_sysaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDC212E6671700899322 /* SDL_sysaudio.h */; }; + 04BD003512E6671800899322 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDC312E6671700899322 /* SDL_wave.c */; }; + 04BD003612E6671800899322 /* SDL_wave.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDC412E6671700899322 /* SDL_wave.h */; }; + 04BD004112E6671800899322 /* SDL_cpuinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDD412E6671700899322 /* SDL_cpuinfo.c */; }; + 04BD004212E6671800899322 /* blank_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD612E6671700899322 /* blank_cursor.h */; }; + 04BD004312E6671800899322 /* default_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD712E6671700899322 /* default_cursor.h */; }; + 04BD004412E6671800899322 /* scancodes_darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD812E6671700899322 /* scancodes_darwin.h */; }; + 04BD004512E6671800899322 /* scancodes_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD912E6671700899322 /* scancodes_linux.h */; }; + 04BD004712E6671800899322 /* scancodes_xfree86.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDB12E6671700899322 /* scancodes_xfree86.h */; }; + 04BD004812E6671800899322 /* SDL_clipboardevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDDC12E6671700899322 /* SDL_clipboardevents.c */; }; + 04BD004912E6671800899322 /* SDL_clipboardevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDD12E6671700899322 /* SDL_clipboardevents_c.h */; }; + 04BD004A12E6671800899322 /* SDL_events.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDDE12E6671700899322 /* SDL_events.c */; }; + 04BD004B12E6671800899322 /* SDL_events_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDF12E6671700899322 /* SDL_events_c.h */; }; + 04BD004C12E6671800899322 /* SDL_gesture.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE012E6671700899322 /* SDL_gesture.c */; }; + 04BD004D12E6671800899322 /* SDL_gesture_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE112E6671700899322 /* SDL_gesture_c.h */; }; + 04BD004E12E6671800899322 /* SDL_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE212E6671700899322 /* SDL_keyboard.c */; }; + 04BD004F12E6671800899322 /* SDL_keyboard_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE312E6671700899322 /* SDL_keyboard_c.h */; }; + 04BD005012E6671800899322 /* SDL_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE412E6671700899322 /* SDL_mouse.c */; }; + 04BD005112E6671800899322 /* SDL_mouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE512E6671700899322 /* SDL_mouse_c.h */; }; + 04BD005212E6671800899322 /* SDL_quit.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE612E6671700899322 /* SDL_quit.c */; }; + 04BD005312E6671800899322 /* SDL_sysevents.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE712E6671700899322 /* SDL_sysevents.h */; }; + 04BD005412E6671800899322 /* SDL_touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE812E6671700899322 /* SDL_touch.c */; }; + 04BD005512E6671800899322 /* SDL_touch_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE912E6671700899322 /* SDL_touch_c.h */; }; + 04BD005612E6671800899322 /* SDL_windowevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDEA12E6671700899322 /* SDL_windowevents.c */; }; + 04BD005712E6671800899322 /* SDL_windowevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDEB12E6671700899322 /* SDL_windowevents_c.h */; }; + 04BD005812E6671800899322 /* SDL_rwopsbundlesupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDEE12E6671700899322 /* SDL_rwopsbundlesupport.h */; }; + 04BD005912E6671800899322 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDEF12E6671700899322 /* SDL_rwopsbundlesupport.m */; }; + 04BD005A12E6671800899322 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDF012E6671700899322 /* SDL_rwops.c */; }; + 04BD005B12E6671800899322 /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDF312E6671700899322 /* SDL_syshaptic.c */; }; + 04BD005F12E6671800899322 /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDFA12E6671700899322 /* SDL_haptic.c */; }; + 04BD006012E6671800899322 /* SDL_haptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDFB12E6671700899322 /* SDL_haptic_c.h */; }; + 04BD006112E6671800899322 /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDFC12E6671700899322 /* SDL_syshaptic.h */; }; + 04BD006612E6671800899322 /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE0712E6671700899322 /* SDL_sysjoystick.c */; }; + 04BD006712E6671800899322 /* SDL_sysjoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE0812E6671700899322 /* SDL_sysjoystick_c.h */; }; + 04BD007012E6671800899322 /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE1612E6671700899322 /* SDL_joystick.c */; }; + 04BD007112E6671800899322 /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE1712E6671700899322 /* SDL_joystick_c.h */; }; + 04BD007212E6671800899322 /* SDL_sysjoystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE1812E6671700899322 /* SDL_sysjoystick.h */; }; + 04BD008812E6671800899322 /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE3312E6671700899322 /* SDL_sysloadso.c */; }; + 04BD009412E6671800899322 /* SDL_syspower.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE4B12E6671700899322 /* SDL_syspower.c */; }; + 04BD009612E6671800899322 /* SDL_power.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE4E12E6671700899322 /* SDL_power.c */; }; + 04BD009B12E6671800899322 /* SDL_assert_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE5512E6671700899322 /* SDL_assert_c.h */; }; + 04BD009C12E6671800899322 /* SDL_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5612E6671700899322 /* SDL_assert.c */; }; + 04BD009E12E6671800899322 /* SDL_error_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE5812E6671700899322 /* SDL_error_c.h */; }; + 04BD009F12E6671800899322 /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5912E6671700899322 /* SDL_error.c */; }; + 04BD00A212E6671800899322 /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5C12E6671700899322 /* SDL.c */; }; + 04BD00A312E6671800899322 /* SDL_getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5E12E6671700899322 /* SDL_getenv.c */; }; + 04BD00A412E6671800899322 /* SDL_iconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5F12E6671700899322 /* SDL_iconv.c */; }; + 04BD00A512E6671800899322 /* SDL_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6012E6671700899322 /* SDL_malloc.c */; }; + 04BD00A612E6671800899322 /* SDL_qsort.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6112E6671700899322 /* SDL_qsort.c */; }; + 04BD00A712E6671800899322 /* SDL_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6212E6671700899322 /* SDL_stdlib.c */; }; + 04BD00A812E6671800899322 /* SDL_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6312E6671700899322 /* SDL_string.c */; }; + 04BD00BD12E6671800899322 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE7E12E6671800899322 /* SDL_syscond.c */; }; + 04BD00BE12E6671800899322 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE7F12E6671800899322 /* SDL_sysmutex.c */; }; + 04BD00BF12E6671800899322 /* SDL_sysmutex_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8012E6671800899322 /* SDL_sysmutex_c.h */; }; + 04BD00C012E6671800899322 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8112E6671800899322 /* SDL_syssem.c */; }; + 04BD00C112E6671800899322 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8212E6671800899322 /* SDL_systhread.c */; }; + 04BD00C212E6671800899322 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8312E6671800899322 /* SDL_systhread_c.h */; }; + 04BD00C912E6671800899322 /* SDL_systhread.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8B12E6671800899322 /* SDL_systhread.h */; }; + 04BD00CA12E6671800899322 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8C12E6671800899322 /* SDL_thread.c */; }; + 04BD00CB12E6671800899322 /* SDL_thread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8D12E6671800899322 /* SDL_thread_c.h */; }; + 04BD00D712E6671800899322 /* SDL_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE9F12E6671800899322 /* SDL_timer.c */; }; + 04BD00D812E6671800899322 /* SDL_timer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEA012E6671800899322 /* SDL_timer_c.h */; }; + 04BD00D912E6671800899322 /* SDL_systimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEA212E6671800899322 /* SDL_systimer.c */; }; + 04BD00F312E6671800899322 /* SDL_cocoaclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC212E6671800899322 /* SDL_cocoaclipboard.h */; }; + 04BD00F412E6671800899322 /* SDL_cocoaclipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC312E6671800899322 /* SDL_cocoaclipboard.m */; }; + 04BD00F512E6671800899322 /* SDL_cocoaevents.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC412E6671800899322 /* SDL_cocoaevents.h */; }; + 04BD00F612E6671800899322 /* SDL_cocoaevents.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC512E6671800899322 /* SDL_cocoaevents.m */; }; + 04BD00F712E6671800899322 /* SDL_cocoakeyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC612E6671800899322 /* SDL_cocoakeyboard.h */; }; + 04BD00F812E6671800899322 /* SDL_cocoakeyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC712E6671800899322 /* SDL_cocoakeyboard.m */; }; + 04BD00F912E6671800899322 /* SDL_cocoamodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC812E6671800899322 /* SDL_cocoamodes.h */; }; + 04BD00FA12E6671800899322 /* SDL_cocoamodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC912E6671800899322 /* SDL_cocoamodes.m */; }; + 04BD00FB12E6671800899322 /* SDL_cocoamouse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECA12E6671800899322 /* SDL_cocoamouse.h */; }; + 04BD00FC12E6671800899322 /* SDL_cocoamouse.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECB12E6671800899322 /* SDL_cocoamouse.m */; }; + 04BD00FD12E6671800899322 /* SDL_cocoaopengl.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECC12E6671800899322 /* SDL_cocoaopengl.h */; }; + 04BD00FE12E6671800899322 /* SDL_cocoaopengl.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECD12E6671800899322 /* SDL_cocoaopengl.m */; }; + 04BD00FF12E6671800899322 /* SDL_cocoashape.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECE12E6671800899322 /* SDL_cocoashape.h */; }; + 04BD010012E6671800899322 /* SDL_cocoashape.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECF12E6671800899322 /* SDL_cocoashape.m */; }; + 04BD010112E6671800899322 /* SDL_cocoavideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFED012E6671800899322 /* SDL_cocoavideo.h */; }; + 04BD010212E6671800899322 /* SDL_cocoavideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFED112E6671800899322 /* SDL_cocoavideo.m */; }; + 04BD010312E6671800899322 /* SDL_cocoawindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFED212E6671800899322 /* SDL_cocoawindow.h */; }; + 04BD010412E6671800899322 /* SDL_cocoawindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFED312E6671800899322 /* SDL_cocoawindow.m */; }; + 04BD011712E6671800899322 /* SDL_nullevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEE812E6671800899322 /* SDL_nullevents.c */; }; + 04BD011812E6671800899322 /* SDL_nullevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEE912E6671800899322 /* SDL_nullevents_c.h */; }; + 04BD011B12E6671800899322 /* SDL_nullvideo.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEEC12E6671800899322 /* SDL_nullvideo.c */; }; + 04BD011C12E6671800899322 /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEED12E6671800899322 /* SDL_nullvideo.h */; }; + 04BD017512E6671800899322 /* SDL_blit.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF4E12E6671800899322 /* SDL_blit.c */; }; + 04BD017612E6671800899322 /* SDL_blit.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF4F12E6671800899322 /* SDL_blit.h */; }; + 04BD017712E6671800899322 /* SDL_blit_0.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5012E6671800899322 /* SDL_blit_0.c */; }; + 04BD017812E6671800899322 /* SDL_blit_1.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5112E6671800899322 /* SDL_blit_1.c */; }; + 04BD017912E6671800899322 /* SDL_blit_A.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5212E6671800899322 /* SDL_blit_A.c */; }; + 04BD017A12E6671800899322 /* SDL_blit_auto.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5312E6671800899322 /* SDL_blit_auto.c */; }; + 04BD017B12E6671800899322 /* SDL_blit_auto.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5412E6671800899322 /* SDL_blit_auto.h */; }; + 04BD017C12E6671800899322 /* SDL_blit_copy.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5512E6671800899322 /* SDL_blit_copy.c */; }; + 04BD017D12E6671800899322 /* SDL_blit_copy.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5612E6671800899322 /* SDL_blit_copy.h */; }; + 04BD017E12E6671800899322 /* SDL_blit_N.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5712E6671800899322 /* SDL_blit_N.c */; }; + 04BD017F12E6671800899322 /* SDL_blit_slow.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5812E6671800899322 /* SDL_blit_slow.c */; }; + 04BD018012E6671800899322 /* SDL_blit_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5912E6671800899322 /* SDL_blit_slow.h */; }; + 04BD018112E6671800899322 /* SDL_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5A12E6671800899322 /* SDL_bmp.c */; }; + 04BD018212E6671800899322 /* SDL_clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5B12E6671800899322 /* SDL_clipboard.c */; }; + 04BD018712E6671800899322 /* SDL_fillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6012E6671800899322 /* SDL_fillrect.c */; }; + 04BD018C12E6671800899322 /* SDL_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6512E6671800899322 /* SDL_pixels.c */; }; + 04BD018D12E6671800899322 /* SDL_pixels_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF6612E6671800899322 /* SDL_pixels_c.h */; }; + 04BD018E12E6671800899322 /* SDL_rect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6712E6671800899322 /* SDL_rect.c */; }; + 04BD019612E6671800899322 /* SDL_RLEaccel.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6F12E6671800899322 /* SDL_RLEaccel.c */; }; + 04BD019712E6671800899322 /* SDL_RLEaccel_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7012E6671800899322 /* SDL_RLEaccel_c.h */; }; + 04BD019812E6671800899322 /* SDL_shape.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7112E6671800899322 /* SDL_shape.c */; }; + 04BD019912E6671800899322 /* SDL_shape_internals.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7212E6671800899322 /* SDL_shape_internals.h */; }; + 04BD019A12E6671800899322 /* SDL_stretch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7312E6671800899322 /* SDL_stretch.c */; }; + 04BD019B12E6671800899322 /* SDL_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7412E6671800899322 /* SDL_surface.c */; }; + 04BD019C12E6671800899322 /* SDL_sysvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7512E6671800899322 /* SDL_sysvideo.h */; }; + 04BD019D12E6671800899322 /* SDL_video.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7612E6671800899322 /* SDL_video.c */; }; + 04BD01DB12E6671800899322 /* imKStoUCS.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFB812E6671800899322 /* imKStoUCS.c */; }; + 04BD01DC12E6671800899322 /* imKStoUCS.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFB912E6671800899322 /* imKStoUCS.h */; }; + 04BD01DD12E6671800899322 /* SDL_x11clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBA12E6671800899322 /* SDL_x11clipboard.c */; }; + 04BD01DE12E6671800899322 /* SDL_x11clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBB12E6671800899322 /* SDL_x11clipboard.h */; }; + 04BD01DF12E6671800899322 /* SDL_x11dyn.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBC12E6671800899322 /* SDL_x11dyn.c */; }; + 04BD01E012E6671800899322 /* SDL_x11dyn.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBD12E6671800899322 /* SDL_x11dyn.h */; }; + 04BD01E112E6671800899322 /* SDL_x11events.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBE12E6671800899322 /* SDL_x11events.c */; }; + 04BD01E212E6671800899322 /* SDL_x11events.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBF12E6671800899322 /* SDL_x11events.h */; }; + 04BD01E512E6671800899322 /* SDL_x11keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC212E6671800899322 /* SDL_x11keyboard.c */; }; + 04BD01E612E6671800899322 /* SDL_x11keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC312E6671800899322 /* SDL_x11keyboard.h */; }; + 04BD01E712E6671800899322 /* SDL_x11modes.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC412E6671800899322 /* SDL_x11modes.c */; }; + 04BD01E812E6671800899322 /* SDL_x11modes.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC512E6671800899322 /* SDL_x11modes.h */; }; + 04BD01E912E6671800899322 /* SDL_x11mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC612E6671800899322 /* SDL_x11mouse.c */; }; + 04BD01EA12E6671800899322 /* SDL_x11mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC712E6671800899322 /* SDL_x11mouse.h */; }; + 04BD01EB12E6671800899322 /* SDL_x11opengl.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC812E6671800899322 /* SDL_x11opengl.c */; }; + 04BD01EC12E6671800899322 /* SDL_x11opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC912E6671800899322 /* SDL_x11opengl.h */; }; + 04BD01ED12E6671800899322 /* SDL_x11opengles.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFCA12E6671800899322 /* SDL_x11opengles.c */; }; + 04BD01EE12E6671800899322 /* SDL_x11opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFCB12E6671800899322 /* SDL_x11opengles.h */; }; + 04BD01F112E6671800899322 /* SDL_x11shape.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFCE12E6671800899322 /* SDL_x11shape.c */; }; + 04BD01F212E6671800899322 /* SDL_x11shape.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFCF12E6671800899322 /* SDL_x11shape.h */; }; + 04BD01F312E6671800899322 /* SDL_x11sym.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD012E6671800899322 /* SDL_x11sym.h */; }; + 04BD01F412E6671800899322 /* SDL_x11touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD112E6671800899322 /* SDL_x11touch.c */; }; + 04BD01F512E6671800899322 /* SDL_x11touch.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD212E6671800899322 /* SDL_x11touch.h */; }; + 04BD01F612E6671800899322 /* SDL_x11video.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD312E6671800899322 /* SDL_x11video.c */; }; + 04BD01F712E6671800899322 /* SDL_x11video.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD412E6671800899322 /* SDL_x11video.h */; }; + 04BD01F812E6671800899322 /* SDL_x11window.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD512E6671800899322 /* SDL_x11window.c */; }; + 04BD01F912E6671800899322 /* SDL_x11window.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD612E6671800899322 /* SDL_x11window.h */; }; + 04BD021712E6671800899322 /* SDL_atomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD7412E6671700899322 /* SDL_atomic.c */; }; + 04BD021812E6671800899322 /* SDL_spinlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD7512E6671700899322 /* SDL_spinlock.c */; }; + 04BD022412E6671800899322 /* SDL_diskaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD8812E6671700899322 /* SDL_diskaudio.c */; }; + 04BD022512E6671800899322 /* SDL_diskaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFD8912E6671700899322 /* SDL_diskaudio.h */; }; + 04BD022C12E6671800899322 /* SDL_dummyaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD9412E6671700899322 /* SDL_dummyaudio.c */; }; + 04BD022D12E6671800899322 /* SDL_dummyaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFD9512E6671700899322 /* SDL_dummyaudio.h */; }; + 04BD023412E6671800899322 /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDA012E6671700899322 /* SDL_coreaudio.c */; }; + 04BD023512E6671800899322 /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDA112E6671700899322 /* SDL_coreaudio.h */; }; + 04BD024212E6671800899322 /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB412E6671700899322 /* SDL_audio.c */; }; + 04BD024312E6671800899322 /* SDL_audio_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB512E6671700899322 /* SDL_audio_c.h */; }; + 04BD024412E6671800899322 /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB612E6671700899322 /* SDL_audiocvt.c */; }; + 04BD024512E6671800899322 /* SDL_audiodev.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB712E6671700899322 /* SDL_audiodev.c */; }; + 04BD024612E6671800899322 /* SDL_audiodev_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB812E6671700899322 /* SDL_audiodev_c.h */; }; + 04BD024712E6671800899322 /* SDL_audiomem.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB912E6671700899322 /* SDL_audiomem.h */; }; + 04BD024812E6671800899322 /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDBA12E6671700899322 /* SDL_audiotypecvt.c */; }; + 04BD024912E6671800899322 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDBB12E6671700899322 /* SDL_mixer.c */; }; + 04BD025012E6671800899322 /* SDL_sysaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDC212E6671700899322 /* SDL_sysaudio.h */; }; + 04BD025112E6671800899322 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDC312E6671700899322 /* SDL_wave.c */; }; + 04BD025212E6671800899322 /* SDL_wave.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDC412E6671700899322 /* SDL_wave.h */; }; + 04BD025C12E6671800899322 /* SDL_cpuinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDD412E6671700899322 /* SDL_cpuinfo.c */; }; + 04BD025D12E6671800899322 /* blank_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD612E6671700899322 /* blank_cursor.h */; }; + 04BD025E12E6671800899322 /* default_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD712E6671700899322 /* default_cursor.h */; }; + 04BD025F12E6671800899322 /* scancodes_darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD812E6671700899322 /* scancodes_darwin.h */; }; + 04BD026012E6671800899322 /* scancodes_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD912E6671700899322 /* scancodes_linux.h */; }; + 04BD026212E6671800899322 /* scancodes_xfree86.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDB12E6671700899322 /* scancodes_xfree86.h */; }; + 04BD026312E6671800899322 /* SDL_clipboardevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDDC12E6671700899322 /* SDL_clipboardevents.c */; }; + 04BD026412E6671800899322 /* SDL_clipboardevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDD12E6671700899322 /* SDL_clipboardevents_c.h */; }; + 04BD026512E6671800899322 /* SDL_events.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDDE12E6671700899322 /* SDL_events.c */; }; + 04BD026612E6671800899322 /* SDL_events_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDF12E6671700899322 /* SDL_events_c.h */; }; + 04BD026712E6671800899322 /* SDL_gesture.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE012E6671700899322 /* SDL_gesture.c */; }; + 04BD026812E6671800899322 /* SDL_gesture_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE112E6671700899322 /* SDL_gesture_c.h */; }; + 04BD026912E6671800899322 /* SDL_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE212E6671700899322 /* SDL_keyboard.c */; }; + 04BD026A12E6671800899322 /* SDL_keyboard_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE312E6671700899322 /* SDL_keyboard_c.h */; }; + 04BD026B12E6671800899322 /* SDL_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE412E6671700899322 /* SDL_mouse.c */; }; + 04BD026C12E6671800899322 /* SDL_mouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE512E6671700899322 /* SDL_mouse_c.h */; }; + 04BD026D12E6671800899322 /* SDL_quit.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE612E6671700899322 /* SDL_quit.c */; }; + 04BD026E12E6671800899322 /* SDL_sysevents.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE712E6671700899322 /* SDL_sysevents.h */; }; + 04BD026F12E6671800899322 /* SDL_touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE812E6671700899322 /* SDL_touch.c */; }; + 04BD027012E6671800899322 /* SDL_touch_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE912E6671700899322 /* SDL_touch_c.h */; }; + 04BD027112E6671800899322 /* SDL_windowevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDEA12E6671700899322 /* SDL_windowevents.c */; }; + 04BD027212E6671800899322 /* SDL_windowevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDEB12E6671700899322 /* SDL_windowevents_c.h */; }; + 04BD027312E6671800899322 /* SDL_rwopsbundlesupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDEE12E6671700899322 /* SDL_rwopsbundlesupport.h */; }; + 04BD027412E6671800899322 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDEF12E6671700899322 /* SDL_rwopsbundlesupport.m */; }; + 04BD027512E6671800899322 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDF012E6671700899322 /* SDL_rwops.c */; }; + 04BD027612E6671800899322 /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDF312E6671700899322 /* SDL_syshaptic.c */; }; + 04BD027A12E6671800899322 /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDFA12E6671700899322 /* SDL_haptic.c */; }; + 04BD027B12E6671800899322 /* SDL_haptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDFB12E6671700899322 /* SDL_haptic_c.h */; }; + 04BD027C12E6671800899322 /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDFC12E6671700899322 /* SDL_syshaptic.h */; }; + 04BD028112E6671800899322 /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE0712E6671700899322 /* SDL_sysjoystick.c */; }; + 04BD028212E6671800899322 /* SDL_sysjoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE0812E6671700899322 /* SDL_sysjoystick_c.h */; }; + 04BD028B12E6671800899322 /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE1612E6671700899322 /* SDL_joystick.c */; }; + 04BD028C12E6671800899322 /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE1712E6671700899322 /* SDL_joystick_c.h */; }; + 04BD028D12E6671800899322 /* SDL_sysjoystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE1812E6671700899322 /* SDL_sysjoystick.h */; }; + 04BD02A312E6671800899322 /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE3312E6671700899322 /* SDL_sysloadso.c */; }; + 04BD02AE12E6671800899322 /* SDL_syspower.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE4B12E6671700899322 /* SDL_syspower.c */; }; + 04BD02B012E6671800899322 /* SDL_power.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE4E12E6671700899322 /* SDL_power.c */; }; + 04BD02B512E6671800899322 /* SDL_assert_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE5512E6671700899322 /* SDL_assert_c.h */; }; + 04BD02B612E6671800899322 /* SDL_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5612E6671700899322 /* SDL_assert.c */; }; + 04BD02B812E6671800899322 /* SDL_error_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE5812E6671700899322 /* SDL_error_c.h */; }; + 04BD02B912E6671800899322 /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5912E6671700899322 /* SDL_error.c */; }; + 04BD02BC12E6671800899322 /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5C12E6671700899322 /* SDL.c */; }; + 04BD02BD12E6671800899322 /* SDL_getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5E12E6671700899322 /* SDL_getenv.c */; }; + 04BD02BE12E6671800899322 /* SDL_iconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5F12E6671700899322 /* SDL_iconv.c */; }; + 04BD02BF12E6671800899322 /* SDL_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6012E6671700899322 /* SDL_malloc.c */; }; + 04BD02C012E6671800899322 /* SDL_qsort.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6112E6671700899322 /* SDL_qsort.c */; }; + 04BD02C112E6671800899322 /* SDL_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6212E6671700899322 /* SDL_stdlib.c */; }; + 04BD02C212E6671800899322 /* SDL_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6312E6671700899322 /* SDL_string.c */; }; + 04BD02D712E6671800899322 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE7E12E6671800899322 /* SDL_syscond.c */; }; + 04BD02D812E6671800899322 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE7F12E6671800899322 /* SDL_sysmutex.c */; }; + 04BD02D912E6671800899322 /* SDL_sysmutex_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8012E6671800899322 /* SDL_sysmutex_c.h */; }; + 04BD02DA12E6671800899322 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8112E6671800899322 /* SDL_syssem.c */; }; + 04BD02DB12E6671800899322 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8212E6671800899322 /* SDL_systhread.c */; }; + 04BD02DC12E6671800899322 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8312E6671800899322 /* SDL_systhread_c.h */; }; + 04BD02E312E6671800899322 /* SDL_systhread.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8B12E6671800899322 /* SDL_systhread.h */; }; + 04BD02E412E6671800899322 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8C12E6671800899322 /* SDL_thread.c */; }; + 04BD02E512E6671800899322 /* SDL_thread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8D12E6671800899322 /* SDL_thread_c.h */; }; + 04BD02F112E6671800899322 /* SDL_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE9F12E6671800899322 /* SDL_timer.c */; }; + 04BD02F212E6671800899322 /* SDL_timer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEA012E6671800899322 /* SDL_timer_c.h */; }; + 04BD02F312E6671800899322 /* SDL_systimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEA212E6671800899322 /* SDL_systimer.c */; }; + 04BD030D12E6671800899322 /* SDL_cocoaclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC212E6671800899322 /* SDL_cocoaclipboard.h */; }; + 04BD030E12E6671800899322 /* SDL_cocoaclipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC312E6671800899322 /* SDL_cocoaclipboard.m */; }; + 04BD030F12E6671800899322 /* SDL_cocoaevents.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC412E6671800899322 /* SDL_cocoaevents.h */; }; + 04BD031012E6671800899322 /* SDL_cocoaevents.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC512E6671800899322 /* SDL_cocoaevents.m */; }; + 04BD031112E6671800899322 /* SDL_cocoakeyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC612E6671800899322 /* SDL_cocoakeyboard.h */; }; + 04BD031212E6671800899322 /* SDL_cocoakeyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC712E6671800899322 /* SDL_cocoakeyboard.m */; }; + 04BD031312E6671800899322 /* SDL_cocoamodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC812E6671800899322 /* SDL_cocoamodes.h */; }; + 04BD031412E6671800899322 /* SDL_cocoamodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC912E6671800899322 /* SDL_cocoamodes.m */; }; + 04BD031512E6671800899322 /* SDL_cocoamouse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECA12E6671800899322 /* SDL_cocoamouse.h */; }; + 04BD031612E6671800899322 /* SDL_cocoamouse.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECB12E6671800899322 /* SDL_cocoamouse.m */; }; + 04BD031712E6671800899322 /* SDL_cocoaopengl.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECC12E6671800899322 /* SDL_cocoaopengl.h */; }; + 04BD031812E6671800899322 /* SDL_cocoaopengl.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECD12E6671800899322 /* SDL_cocoaopengl.m */; }; + 04BD031912E6671800899322 /* SDL_cocoashape.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECE12E6671800899322 /* SDL_cocoashape.h */; }; + 04BD031A12E6671800899322 /* SDL_cocoashape.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECF12E6671800899322 /* SDL_cocoashape.m */; }; + 04BD031B12E6671800899322 /* SDL_cocoavideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFED012E6671800899322 /* SDL_cocoavideo.h */; }; + 04BD031C12E6671800899322 /* SDL_cocoavideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFED112E6671800899322 /* SDL_cocoavideo.m */; }; + 04BD031D12E6671800899322 /* SDL_cocoawindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFED212E6671800899322 /* SDL_cocoawindow.h */; }; + 04BD031E12E6671800899322 /* SDL_cocoawindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFED312E6671800899322 /* SDL_cocoawindow.m */; }; + 04BD033112E6671800899322 /* SDL_nullevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEE812E6671800899322 /* SDL_nullevents.c */; }; + 04BD033212E6671800899322 /* SDL_nullevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEE912E6671800899322 /* SDL_nullevents_c.h */; }; + 04BD033512E6671800899322 /* SDL_nullvideo.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEEC12E6671800899322 /* SDL_nullvideo.c */; }; + 04BD033612E6671800899322 /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEED12E6671800899322 /* SDL_nullvideo.h */; }; + 04BD038F12E6671800899322 /* SDL_blit.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF4E12E6671800899322 /* SDL_blit.c */; }; + 04BD039012E6671800899322 /* SDL_blit.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF4F12E6671800899322 /* SDL_blit.h */; }; + 04BD039112E6671800899322 /* SDL_blit_0.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5012E6671800899322 /* SDL_blit_0.c */; }; + 04BD039212E6671800899322 /* SDL_blit_1.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5112E6671800899322 /* SDL_blit_1.c */; }; + 04BD039312E6671800899322 /* SDL_blit_A.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5212E6671800899322 /* SDL_blit_A.c */; }; + 04BD039412E6671800899322 /* SDL_blit_auto.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5312E6671800899322 /* SDL_blit_auto.c */; }; + 04BD039512E6671800899322 /* SDL_blit_auto.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5412E6671800899322 /* SDL_blit_auto.h */; }; + 04BD039612E6671800899322 /* SDL_blit_copy.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5512E6671800899322 /* SDL_blit_copy.c */; }; + 04BD039712E6671800899322 /* SDL_blit_copy.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5612E6671800899322 /* SDL_blit_copy.h */; }; + 04BD039812E6671800899322 /* SDL_blit_N.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5712E6671800899322 /* SDL_blit_N.c */; }; + 04BD039912E6671800899322 /* SDL_blit_slow.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5812E6671800899322 /* SDL_blit_slow.c */; }; + 04BD039A12E6671800899322 /* SDL_blit_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5912E6671800899322 /* SDL_blit_slow.h */; }; + 04BD039B12E6671800899322 /* SDL_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5A12E6671800899322 /* SDL_bmp.c */; }; + 04BD039C12E6671800899322 /* SDL_clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5B12E6671800899322 /* SDL_clipboard.c */; }; + 04BD03A112E6671800899322 /* SDL_fillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6012E6671800899322 /* SDL_fillrect.c */; }; + 04BD03A612E6671800899322 /* SDL_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6512E6671800899322 /* SDL_pixels.c */; }; + 04BD03A712E6671800899322 /* SDL_pixels_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF6612E6671800899322 /* SDL_pixels_c.h */; }; + 04BD03A812E6671800899322 /* SDL_rect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6712E6671800899322 /* SDL_rect.c */; }; + 04BD03B012E6671800899322 /* SDL_RLEaccel.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6F12E6671800899322 /* SDL_RLEaccel.c */; }; + 04BD03B112E6671800899322 /* SDL_RLEaccel_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7012E6671800899322 /* SDL_RLEaccel_c.h */; }; + 04BD03B212E6671800899322 /* SDL_shape.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7112E6671800899322 /* SDL_shape.c */; }; + 04BD03B312E6671800899322 /* SDL_shape_internals.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7212E6671800899322 /* SDL_shape_internals.h */; }; + 04BD03B412E6671800899322 /* SDL_stretch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7312E6671800899322 /* SDL_stretch.c */; }; + 04BD03B512E6671800899322 /* SDL_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7412E6671800899322 /* SDL_surface.c */; }; + 04BD03B612E6671800899322 /* SDL_sysvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7512E6671800899322 /* SDL_sysvideo.h */; }; + 04BD03B712E6671800899322 /* SDL_video.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7612E6671800899322 /* SDL_video.c */; }; + 04BD03F312E6671800899322 /* imKStoUCS.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFB812E6671800899322 /* imKStoUCS.c */; }; + 04BD03F412E6671800899322 /* imKStoUCS.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFB912E6671800899322 /* imKStoUCS.h */; }; + 04BD03F512E6671800899322 /* SDL_x11clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBA12E6671800899322 /* SDL_x11clipboard.c */; }; + 04BD03F612E6671800899322 /* SDL_x11clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBB12E6671800899322 /* SDL_x11clipboard.h */; }; + 04BD03F712E6671800899322 /* SDL_x11dyn.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBC12E6671800899322 /* SDL_x11dyn.c */; }; + 04BD03F812E6671800899322 /* SDL_x11dyn.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBD12E6671800899322 /* SDL_x11dyn.h */; }; + 04BD03F912E6671800899322 /* SDL_x11events.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBE12E6671800899322 /* SDL_x11events.c */; }; + 04BD03FA12E6671800899322 /* SDL_x11events.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBF12E6671800899322 /* SDL_x11events.h */; }; + 04BD03FD12E6671800899322 /* SDL_x11keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC212E6671800899322 /* SDL_x11keyboard.c */; }; + 04BD03FE12E6671800899322 /* SDL_x11keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC312E6671800899322 /* SDL_x11keyboard.h */; }; + 04BD03FF12E6671800899322 /* SDL_x11modes.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC412E6671800899322 /* SDL_x11modes.c */; }; + 04BD040012E6671800899322 /* SDL_x11modes.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC512E6671800899322 /* SDL_x11modes.h */; }; + 04BD040112E6671800899322 /* SDL_x11mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC612E6671800899322 /* SDL_x11mouse.c */; }; + 04BD040212E6671800899322 /* SDL_x11mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC712E6671800899322 /* SDL_x11mouse.h */; }; + 04BD040312E6671800899322 /* SDL_x11opengl.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC812E6671800899322 /* SDL_x11opengl.c */; }; + 04BD040412E6671800899322 /* SDL_x11opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC912E6671800899322 /* SDL_x11opengl.h */; }; + 04BD040512E6671800899322 /* SDL_x11opengles.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFCA12E6671800899322 /* SDL_x11opengles.c */; }; + 04BD040612E6671800899322 /* SDL_x11opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFCB12E6671800899322 /* SDL_x11opengles.h */; }; + 04BD040912E6671800899322 /* SDL_x11shape.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFCE12E6671800899322 /* SDL_x11shape.c */; }; + 04BD040A12E6671800899322 /* SDL_x11shape.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFCF12E6671800899322 /* SDL_x11shape.h */; }; + 04BD040B12E6671800899322 /* SDL_x11sym.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD012E6671800899322 /* SDL_x11sym.h */; }; + 04BD040C12E6671800899322 /* SDL_x11touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD112E6671800899322 /* SDL_x11touch.c */; }; + 04BD040D12E6671800899322 /* SDL_x11touch.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD212E6671800899322 /* SDL_x11touch.h */; }; + 04BD040E12E6671800899322 /* SDL_x11video.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD312E6671800899322 /* SDL_x11video.c */; }; + 04BD040F12E6671800899322 /* SDL_x11video.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD412E6671800899322 /* SDL_x11video.h */; }; + 04BD041012E6671800899322 /* SDL_x11window.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD512E6671800899322 /* SDL_x11window.c */; }; + 04BD041112E6671800899322 /* SDL_x11window.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD612E6671800899322 /* SDL_x11window.h */; }; + 04BDFFFB12E6671800899322 /* SDL_atomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD7412E6671700899322 /* SDL_atomic.c */; }; + 04BDFFFC12E6671800899322 /* SDL_spinlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD7512E6671700899322 /* SDL_spinlock.c */; }; + 04F7803912FB748500FC43C0 /* SDL_nullframebuffer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7803712FB748500FC43C0 /* SDL_nullframebuffer_c.h */; }; + 04F7803A12FB748500FC43C0 /* SDL_nullframebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803812FB748500FC43C0 /* SDL_nullframebuffer.c */; }; + 04F7803B12FB748500FC43C0 /* SDL_nullframebuffer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7803712FB748500FC43C0 /* SDL_nullframebuffer_c.h */; }; + 04F7803C12FB748500FC43C0 /* SDL_nullframebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803812FB748500FC43C0 /* SDL_nullframebuffer.c */; }; + 04F7804912FB74A200FC43C0 /* SDL_blendfillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803D12FB74A200FC43C0 /* SDL_blendfillrect.c */; }; + 04F7804A12FB74A200FC43C0 /* SDL_blendfillrect.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7803E12FB74A200FC43C0 /* SDL_blendfillrect.h */; }; + 04F7804B12FB74A200FC43C0 /* SDL_blendline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803F12FB74A200FC43C0 /* SDL_blendline.c */; }; + 04F7804C12FB74A200FC43C0 /* SDL_blendline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804012FB74A200FC43C0 /* SDL_blendline.h */; }; + 04F7804D12FB74A200FC43C0 /* SDL_blendpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804112FB74A200FC43C0 /* SDL_blendpoint.c */; }; + 04F7804E12FB74A200FC43C0 /* SDL_blendpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804212FB74A200FC43C0 /* SDL_blendpoint.h */; }; + 04F7804F12FB74A200FC43C0 /* SDL_draw.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804312FB74A200FC43C0 /* SDL_draw.h */; }; + 04F7805012FB74A200FC43C0 /* SDL_drawline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804412FB74A200FC43C0 /* SDL_drawline.c */; }; + 04F7805112FB74A200FC43C0 /* SDL_drawline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804512FB74A200FC43C0 /* SDL_drawline.h */; }; + 04F7805212FB74A200FC43C0 /* SDL_drawpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804612FB74A200FC43C0 /* SDL_drawpoint.c */; }; + 04F7805312FB74A200FC43C0 /* SDL_drawpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804712FB74A200FC43C0 /* SDL_drawpoint.h */; }; + 04F7805512FB74A200FC43C0 /* SDL_blendfillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803D12FB74A200FC43C0 /* SDL_blendfillrect.c */; }; + 04F7805612FB74A200FC43C0 /* SDL_blendfillrect.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7803E12FB74A200FC43C0 /* SDL_blendfillrect.h */; }; + 04F7805712FB74A200FC43C0 /* SDL_blendline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803F12FB74A200FC43C0 /* SDL_blendline.c */; }; + 04F7805812FB74A200FC43C0 /* SDL_blendline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804012FB74A200FC43C0 /* SDL_blendline.h */; }; + 04F7805912FB74A200FC43C0 /* SDL_blendpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804112FB74A200FC43C0 /* SDL_blendpoint.c */; }; + 04F7805A12FB74A200FC43C0 /* SDL_blendpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804212FB74A200FC43C0 /* SDL_blendpoint.h */; }; + 04F7805B12FB74A200FC43C0 /* SDL_draw.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804312FB74A200FC43C0 /* SDL_draw.h */; }; + 04F7805C12FB74A200FC43C0 /* SDL_drawline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804412FB74A200FC43C0 /* SDL_drawline.c */; }; + 04F7805D12FB74A200FC43C0 /* SDL_drawline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804512FB74A200FC43C0 /* SDL_drawline.h */; }; + 04F7805E12FB74A200FC43C0 /* SDL_drawpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804612FB74A200FC43C0 /* SDL_drawpoint.c */; }; + 04F7805F12FB74A200FC43C0 /* SDL_drawpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804712FB74A200FC43C0 /* SDL_drawpoint.h */; }; + 566CDE8F148F0AC200C5A9BB /* SDL_dropevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 566CDE8D148F0AC200C5A9BB /* SDL_dropevents_c.h */; }; + 566CDE90148F0AC200C5A9BB /* SDL_dropevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 566CDE8E148F0AC200C5A9BB /* SDL_dropevents.c */; }; + 567E2F1C17C44BB2005F1892 /* SDL_sysfilesystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 567E2F1B17C44BB2005F1892 /* SDL_sysfilesystem.m */; }; + 567E2F2117C44C35005F1892 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 56A670091856545C0007D20F /* SDL_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A670081856545C0007D20F /* SDL_internal.h */; }; + 56A6700A1856545C0007D20F /* SDL_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A670081856545C0007D20F /* SDL_internal.h */; }; + 56A6700B1856545C0007D20F /* SDL_internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A670081856545C0007D20F /* SDL_internal.h */; }; + 56A67021185654B40007D20F /* SDL_dynapi_procs.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6701D185654B40007D20F /* SDL_dynapi_procs.h */; }; + 56A67022185654B40007D20F /* SDL_dynapi_procs.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6701D185654B40007D20F /* SDL_dynapi_procs.h */; }; + 56A67023185654B40007D20F /* SDL_dynapi_procs.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6701D185654B40007D20F /* SDL_dynapi_procs.h */; }; + 56A67024185654B40007D20F /* SDL_dynapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 56A6701E185654B40007D20F /* SDL_dynapi.c */; }; + 56A67025185654B40007D20F /* SDL_dynapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 56A6701E185654B40007D20F /* SDL_dynapi.c */; }; + 56A67026185654B40007D20F /* SDL_dynapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 56A6701E185654B40007D20F /* SDL_dynapi.c */; }; + 56A67027185654B40007D20F /* SDL_dynapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6701F185654B40007D20F /* SDL_dynapi.h */; }; + 56A67028185654B40007D20F /* SDL_dynapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6701F185654B40007D20F /* SDL_dynapi.h */; }; + 56A67029185654B40007D20F /* SDL_dynapi.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6701F185654B40007D20F /* SDL_dynapi.h */; }; + 56A6702A185654B40007D20F /* SDL_dynapi_overrides.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A67020185654B40007D20F /* SDL_dynapi_overrides.h */; }; + 56A6702B185654B40007D20F /* SDL_dynapi_overrides.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A67020185654B40007D20F /* SDL_dynapi_overrides.h */; }; + 56A6702C185654B40007D20F /* SDL_dynapi_overrides.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A67020185654B40007D20F /* SDL_dynapi_overrides.h */; }; + A77E6EB4167AB0A90010E40B /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A77E6EB5167AB0A90010E40B /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA0AD09D16648D1700CE5896 /* SDL_gamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = BBFC088A164C6514003E6A99 /* SDL_gamecontroller.c */; }; + AA0F8491178D5ECC00823F9D /* SDL_systls.c in Sources */ = {isa = PBXBuildFile; fileRef = AA0F8490178D5ECC00823F9D /* SDL_systls.c */; }; + AA0F8492178D5ECC00823F9D /* SDL_systls.c in Sources */ = {isa = PBXBuildFile; fileRef = AA0F8490178D5ECC00823F9D /* SDL_systls.c */; }; + AA0F8493178D5ECC00823F9D /* SDL_systls.c in Sources */ = {isa = PBXBuildFile; fileRef = AA0F8490178D5ECC00823F9D /* SDL_systls.c */; }; + AA41F88014B8F1F500993C4F /* SDL_dropevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 566CDE8E148F0AC200C5A9BB /* SDL_dropevents.c */; }; + AA628ACA159367B7005138DD /* SDL_rotate.c in Sources */ = {isa = PBXBuildFile; fileRef = AA628AC8159367B7005138DD /* SDL_rotate.c */; }; + AA628ACB159367B7005138DD /* SDL_rotate.c in Sources */ = {isa = PBXBuildFile; fileRef = AA628AC8159367B7005138DD /* SDL_rotate.c */; }; + AA628ACC159367B7005138DD /* SDL_rotate.h in Headers */ = {isa = PBXBuildFile; fileRef = AA628AC9159367B7005138DD /* SDL_rotate.h */; }; + AA628ACD159367B7005138DD /* SDL_rotate.h in Headers */ = {isa = PBXBuildFile; fileRef = AA628AC9159367B7005138DD /* SDL_rotate.h */; }; + AA628AD1159367F2005138DD /* SDL_x11xinput2.c in Sources */ = {isa = PBXBuildFile; fileRef = AA628ACF159367F2005138DD /* SDL_x11xinput2.c */; }; + AA628AD2159367F2005138DD /* SDL_x11xinput2.c in Sources */ = {isa = PBXBuildFile; fileRef = AA628ACF159367F2005138DD /* SDL_x11xinput2.c */; }; + AA628AD3159367F2005138DD /* SDL_x11xinput2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA628AD0159367F2005138DD /* SDL_x11xinput2.h */; }; + AA628AD4159367F2005138DD /* SDL_x11xinput2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA628AD0159367F2005138DD /* SDL_x11xinput2.h */; }; + AA7557FA1595D4D800BBD41B /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7557FB1595D4D800BBD41B /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7557FC1595D4D800BBD41B /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7557FD1595D4D800BBD41B /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7557FE1595D4D800BBD41B /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7557FF1595D4D800BBD41B /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558001595D4D800BBD41B /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558011595D4D800BBD41B /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558021595D4D800BBD41B /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558031595D4D800BBD41B /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558041595D4D800BBD41B /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558051595D4D800BBD41B /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558061595D4D800BBD41B /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558071595D4D800BBD41B /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558081595D4D800BBD41B /* SDL_config_macosx.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CE1595D4D800BBD41B /* SDL_config_macosx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558091595D4D800BBD41B /* SDL_config_macosx.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CE1595D4D800BBD41B /* SDL_config_macosx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75580A1595D4D800BBD41B /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CF1595D4D800BBD41B /* SDL_config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75580B1595D4D800BBD41B /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CF1595D4D800BBD41B /* SDL_config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75580C1595D4D800BBD41B /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75580D1595D4D800BBD41B /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75580E1595D4D800BBD41B /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75580F1595D4D800BBD41B /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558101595D4D800BBD41B /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558111595D4D800BBD41B /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558121595D4D800BBD41B /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558131595D4D800BBD41B /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558141595D4D800BBD41B /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558151595D4D800BBD41B /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558161595D4D800BBD41B /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558171595D4D800BBD41B /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558181595D4D800BBD41B /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558191595D4D800BBD41B /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75581A1595D4D800BBD41B /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75581B1595D4D800BBD41B /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75581E1595D4D800BBD41B /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75581F1595D4D800BBD41B /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558201595D4D800BBD41B /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558211595D4D800BBD41B /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558221595D4D800BBD41B /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558231595D4D800BBD41B /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558241595D4D800BBD41B /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558251595D4D800BBD41B /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558261595D4D800BBD41B /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558271595D4D800BBD41B /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558281595D4D800BBD41B /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558291595D4D800BBD41B /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75582A1595D4D800BBD41B /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75582B1595D4D800BBD41B /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75582C1595D4D800BBD41B /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75582D1595D4D800BBD41B /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75582E1595D4D800BBD41B /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75582F1595D4D800BBD41B /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558301595D4D800BBD41B /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558311595D4D800BBD41B /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558321595D4D800BBD41B /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558331595D4D800BBD41B /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558341595D4D800BBD41B /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558351595D4D800BBD41B /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558361595D4D800BBD41B /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558371595D4D800BBD41B /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558381595D4D800BBD41B /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558391595D4D800BBD41B /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75583A1595D4D800BBD41B /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75583B1595D4D800BBD41B /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75583C1595D4D800BBD41B /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75583D1595D4D800BBD41B /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75583E1595D4D800BBD41B /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75583F1595D4D800BBD41B /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558401595D4D800BBD41B /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558411595D4D800BBD41B /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558421595D4D800BBD41B /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558431595D4D800BBD41B /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558441595D4D800BBD41B /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558451595D4D800BBD41B /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558461595D4D800BBD41B /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558471595D4D800BBD41B /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558481595D4D800BBD41B /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558491595D4D800BBD41B /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75584A1595D4D800BBD41B /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75584B1595D4D800BBD41B /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75584C1595D4D800BBD41B /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75584D1595D4D800BBD41B /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75584E1595D4D800BBD41B /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75584F1595D4D800BBD41B /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558501595D4D800BBD41B /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558511595D4D800BBD41B /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558521595D4D800BBD41B /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558531595D4D800BBD41B /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558541595D4D800BBD41B /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558551595D4D800BBD41B /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558561595D4D800BBD41B /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558571595D4D800BBD41B /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558581595D4D800BBD41B /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA7558591595D4D800BBD41B /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75585A1595D4D800BBD41B /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75585B1595D4D800BBD41B /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75585C1595D4D800BBD41B /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75585D1595D4D800BBD41B /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75585E1595D4D800BBD41B /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA75585F1595D4D800BBD41B /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA9E4093163BE51E007A2AD0 /* SDL_x11messagebox.c in Sources */ = {isa = PBXBuildFile; fileRef = AA9E4092163BE51E007A2AD0 /* SDL_x11messagebox.c */; }; + AA9E4094163BE51E007A2AD0 /* SDL_x11messagebox.c in Sources */ = {isa = PBXBuildFile; fileRef = AA9E4092163BE51E007A2AD0 /* SDL_x11messagebox.c */; }; + AA9FF95A1637CBF9000DF050 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AABCC38D164063D200AB8930 /* SDL_cocoamessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AABCC38B164063D200AB8930 /* SDL_cocoamessagebox.h */; }; + AABCC38E164063D200AB8930 /* SDL_cocoamessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AABCC38B164063D200AB8930 /* SDL_cocoamessagebox.h */; }; + AABCC38F164063D200AB8930 /* SDL_cocoamessagebox.m in Sources */ = {isa = PBXBuildFile; fileRef = AABCC38C164063D200AB8930 /* SDL_cocoamessagebox.m */; }; + AABCC390164063D200AB8930 /* SDL_cocoamessagebox.m in Sources */ = {isa = PBXBuildFile; fileRef = AABCC38C164063D200AB8930 /* SDL_cocoamessagebox.m */; }; + AAC070F9195606770073DCDF /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC070FA195606770073DCDF /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC070FB195606770073DCDF /* SDL_opengl_glext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F4195606770073DCDF /* SDL_opengl_glext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC070FC195606770073DCDF /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC070FD195606770073DCDF /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC070FE195606770073DCDF /* SDL_opengles2_gl2.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC070FF195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07100195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07101195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07102195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07103195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07104195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07105195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07106195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AAC07107195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AADA5B8716CCAB3000107CF7 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AADA5B8816CCAB3000107CF7 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BBFC088D164C6647003E6A99 /* SDL_gamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = BBFC088A164C6514003E6A99 /* SDL_gamecontroller.c */; }; + D55A1B81179F262300625D7C /* SDL_cocoamousetap.h in Headers */ = {isa = PBXBuildFile; fileRef = D55A1B7F179F262300625D7C /* SDL_cocoamousetap.h */; }; + D55A1B82179F262300625D7C /* SDL_cocoamousetap.m in Sources */ = {isa = PBXBuildFile; fileRef = D55A1B80179F262300625D7C /* SDL_cocoamousetap.m */; }; + D55A1B83179F263500625D7C /* SDL_cocoamousetap.m in Sources */ = {isa = PBXBuildFile; fileRef = D55A1B80179F262300625D7C /* SDL_cocoamousetap.m */; }; + D55A1B84179F263600625D7C /* SDL_cocoamousetap.m in Sources */ = {isa = PBXBuildFile; fileRef = D55A1B80179F262300625D7C /* SDL_cocoamousetap.m */; }; + D55A1B85179F278E00625D7C /* SDL_cocoamousetap.h in Headers */ = {isa = PBXBuildFile; fileRef = D55A1B7F179F262300625D7C /* SDL_cocoamousetap.h */; }; + D55A1B86179F278F00625D7C /* SDL_cocoamousetap.h in Headers */ = {isa = PBXBuildFile; fileRef = D55A1B7F179F262300625D7C /* SDL_cocoamousetap.h */; }; + DB0F489317C400E6008798C5 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB0F489417C400ED008798C5 /* SDL_messagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB0F490817CA5292008798C5 /* SDL_sysfilesystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 567E2F1B17C44BB2005F1892 /* SDL_sysfilesystem.m */; }; + DB0F490A17CA5293008798C5 /* SDL_sysfilesystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 567E2F1B17C44BB2005F1892 /* SDL_sysfilesystem.m */; }; + DB0F490B17CA57ED008798C5 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB0F490C17CA57ED008798C5 /* SDL_filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 567E2F2017C44C35005F1892 /* SDL_filesystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313F7417554B71006C0E22 /* SDL_diskaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFD8912E6671700899322 /* SDL_diskaudio.h */; }; + DB313F7517554B71006C0E22 /* SDL_dummyaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFD9512E6671700899322 /* SDL_dummyaudio.h */; }; + DB313F7617554B71006C0E22 /* SDL_coreaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDA112E6671700899322 /* SDL_coreaudio.h */; }; + DB313F7717554B71006C0E22 /* SDL_audio_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB512E6671700899322 /* SDL_audio_c.h */; }; + DB313F7817554B71006C0E22 /* SDL_audiodev_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB812E6671700899322 /* SDL_audiodev_c.h */; }; + DB313F7917554B71006C0E22 /* SDL_audiomem.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDB912E6671700899322 /* SDL_audiomem.h */; }; + DB313F7A17554B71006C0E22 /* SDL_sysaudio.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDC212E6671700899322 /* SDL_sysaudio.h */; }; + DB313F7B17554B71006C0E22 /* SDL_wave.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDC412E6671700899322 /* SDL_wave.h */; }; + DB313F7C17554B71006C0E22 /* blank_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD612E6671700899322 /* blank_cursor.h */; }; + DB313F7D17554B71006C0E22 /* default_cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD712E6671700899322 /* default_cursor.h */; }; + DB313F7E17554B71006C0E22 /* scancodes_darwin.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD812E6671700899322 /* scancodes_darwin.h */; }; + DB313F7F17554B71006C0E22 /* scancodes_linux.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDD912E6671700899322 /* scancodes_linux.h */; }; + DB313F8017554B71006C0E22 /* scancodes_xfree86.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDB12E6671700899322 /* scancodes_xfree86.h */; }; + DB313F8117554B71006C0E22 /* SDL_clipboardevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDD12E6671700899322 /* SDL_clipboardevents_c.h */; }; + DB313F8217554B71006C0E22 /* SDL_events_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDDF12E6671700899322 /* SDL_events_c.h */; }; + DB313F8317554B71006C0E22 /* SDL_gesture_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE112E6671700899322 /* SDL_gesture_c.h */; }; + DB313F8417554B71006C0E22 /* SDL_keyboard_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE312E6671700899322 /* SDL_keyboard_c.h */; }; + DB313F8517554B71006C0E22 /* SDL_mouse_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE512E6671700899322 /* SDL_mouse_c.h */; }; + DB313F8617554B71006C0E22 /* SDL_sysevents.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE712E6671700899322 /* SDL_sysevents.h */; }; + DB313F8717554B71006C0E22 /* SDL_touch_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDE912E6671700899322 /* SDL_touch_c.h */; }; + DB313F8817554B71006C0E22 /* SDL_windowevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDEB12E6671700899322 /* SDL_windowevents_c.h */; }; + DB313F8917554B71006C0E22 /* SDL_rwopsbundlesupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDEE12E6671700899322 /* SDL_rwopsbundlesupport.h */; }; + DB313F8A17554B71006C0E22 /* SDL_haptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDFB12E6671700899322 /* SDL_haptic_c.h */; }; + DB313F8B17554B71006C0E22 /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFDFC12E6671700899322 /* SDL_syshaptic.h */; }; + DB313F8C17554B71006C0E22 /* SDL_sysjoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE0812E6671700899322 /* SDL_sysjoystick_c.h */; }; + DB313F8D17554B71006C0E22 /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE1712E6671700899322 /* SDL_joystick_c.h */; }; + DB313F8E17554B71006C0E22 /* SDL_sysjoystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE1812E6671700899322 /* SDL_sysjoystick.h */; }; + DB313F8F17554B71006C0E22 /* SDL_assert_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE5512E6671700899322 /* SDL_assert_c.h */; }; + DB313F9017554B71006C0E22 /* SDL_error_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE5812E6671700899322 /* SDL_error_c.h */; }; + DB313F9217554B71006C0E22 /* SDL_sysmutex_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8012E6671800899322 /* SDL_sysmutex_c.h */; }; + DB313F9317554B71006C0E22 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8312E6671800899322 /* SDL_systhread_c.h */; }; + DB313F9417554B71006C0E22 /* SDL_systhread.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8B12E6671800899322 /* SDL_systhread.h */; }; + DB313F9517554B71006C0E22 /* SDL_thread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFE8D12E6671800899322 /* SDL_thread_c.h */; }; + DB313F9617554B71006C0E22 /* SDL_timer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEA012E6671800899322 /* SDL_timer_c.h */; }; + DB313F9717554B71006C0E22 /* SDL_cocoaclipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC212E6671800899322 /* SDL_cocoaclipboard.h */; }; + DB313F9817554B71006C0E22 /* SDL_cocoaevents.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC412E6671800899322 /* SDL_cocoaevents.h */; }; + DB313F9917554B71006C0E22 /* SDL_cocoakeyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC612E6671800899322 /* SDL_cocoakeyboard.h */; }; + DB313F9A17554B71006C0E22 /* SDL_cocoamodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEC812E6671800899322 /* SDL_cocoamodes.h */; }; + DB313F9B17554B71006C0E22 /* SDL_cocoamouse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECA12E6671800899322 /* SDL_cocoamouse.h */; }; + DB313F9C17554B71006C0E22 /* SDL_cocoaopengl.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECC12E6671800899322 /* SDL_cocoaopengl.h */; }; + DB313F9D17554B71006C0E22 /* SDL_cocoashape.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFECE12E6671800899322 /* SDL_cocoashape.h */; }; + DB313F9E17554B71006C0E22 /* SDL_cocoavideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFED012E6671800899322 /* SDL_cocoavideo.h */; }; + DB313F9F17554B71006C0E22 /* SDL_cocoawindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFED212E6671800899322 /* SDL_cocoawindow.h */; }; + DB313FA017554B71006C0E22 /* SDL_nullevents_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEE912E6671800899322 /* SDL_nullevents_c.h */; }; + DB313FA117554B71006C0E22 /* SDL_nullvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFEED12E6671800899322 /* SDL_nullvideo.h */; }; + DB313FA217554B71006C0E22 /* SDL_blit.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF4F12E6671800899322 /* SDL_blit.h */; }; + DB313FA317554B71006C0E22 /* SDL_blit_auto.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5412E6671800899322 /* SDL_blit_auto.h */; }; + DB313FA417554B71006C0E22 /* SDL_blit_copy.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5612E6671800899322 /* SDL_blit_copy.h */; }; + DB313FA517554B71006C0E22 /* SDL_blit_slow.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF5912E6671800899322 /* SDL_blit_slow.h */; }; + DB313FA617554B71006C0E22 /* SDL_pixels_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF6612E6671800899322 /* SDL_pixels_c.h */; }; + DB313FA717554B71006C0E22 /* SDL_RLEaccel_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7012E6671800899322 /* SDL_RLEaccel_c.h */; }; + DB313FA817554B71006C0E22 /* SDL_shape_internals.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7212E6671800899322 /* SDL_shape_internals.h */; }; + DB313FA917554B71006C0E22 /* SDL_sysvideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFF7512E6671800899322 /* SDL_sysvideo.h */; }; + DB313FAA17554B71006C0E22 /* imKStoUCS.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFB912E6671800899322 /* imKStoUCS.h */; }; + DB313FAB17554B71006C0E22 /* SDL_x11clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBB12E6671800899322 /* SDL_x11clipboard.h */; }; + DB313FAC17554B71006C0E22 /* SDL_x11dyn.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBD12E6671800899322 /* SDL_x11dyn.h */; }; + DB313FAD17554B71006C0E22 /* SDL_x11events.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFBF12E6671800899322 /* SDL_x11events.h */; }; + DB313FAE17554B71006C0E22 /* SDL_x11keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC312E6671800899322 /* SDL_x11keyboard.h */; }; + DB313FAF17554B71006C0E22 /* SDL_x11modes.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC512E6671800899322 /* SDL_x11modes.h */; }; + DB313FB017554B71006C0E22 /* SDL_x11mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC712E6671800899322 /* SDL_x11mouse.h */; }; + DB313FB117554B71006C0E22 /* SDL_x11opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFC912E6671800899322 /* SDL_x11opengl.h */; }; + DB313FB217554B71006C0E22 /* SDL_x11opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFCB12E6671800899322 /* SDL_x11opengles.h */; }; + DB313FB317554B71006C0E22 /* SDL_x11shape.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFCF12E6671800899322 /* SDL_x11shape.h */; }; + DB313FB417554B71006C0E22 /* SDL_x11sym.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD012E6671800899322 /* SDL_x11sym.h */; }; + DB313FB517554B71006C0E22 /* SDL_x11touch.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD212E6671800899322 /* SDL_x11touch.h */; }; + DB313FB617554B71006C0E22 /* SDL_x11video.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD412E6671800899322 /* SDL_x11video.h */; }; + DB313FB717554B71006C0E22 /* SDL_x11window.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BDFFD612E6671800899322 /* SDL_x11window.h */; }; + DB313FB817554B71006C0E22 /* SDL_sysrender.h in Headers */ = {isa = PBXBuildFile; fileRef = 041B2C9F12FA0D680087D585 /* SDL_sysrender.h */; }; + DB313FB917554B71006C0E22 /* mmx.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409B8D12FA97ED00FB9AA8 /* mmx.h */; }; + DB313FBA17554B71006C0E22 /* SDL_yuv_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04409B8F12FA97ED00FB9AA8 /* SDL_yuv_sw_c.h */; }; + DB313FBB17554B71006C0E22 /* SDL_nullframebuffer_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7803712FB748500FC43C0 /* SDL_nullframebuffer_c.h */; }; + DB313FBC17554B71006C0E22 /* SDL_blendfillrect.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7803E12FB74A200FC43C0 /* SDL_blendfillrect.h */; }; + DB313FBD17554B71006C0E22 /* SDL_blendline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804012FB74A200FC43C0 /* SDL_blendline.h */; }; + DB313FBE17554B71006C0E22 /* SDL_blendpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804212FB74A200FC43C0 /* SDL_blendpoint.h */; }; + DB313FBF17554B71006C0E22 /* SDL_draw.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804312FB74A200FC43C0 /* SDL_draw.h */; }; + DB313FC017554B71006C0E22 /* SDL_drawline.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804512FB74A200FC43C0 /* SDL_drawline.h */; }; + DB313FC117554B71006C0E22 /* SDL_drawpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F7804712FB74A200FC43C0 /* SDL_drawpoint.h */; }; + DB313FC217554B71006C0E22 /* SDL_render_sw_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC1A12FE1BCB004C9285 /* SDL_render_sw_c.h */; }; + DB313FC317554B71006C0E22 /* SDL_x11framebuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442EC5912FE1C60004C9285 /* SDL_x11framebuffer.h */; }; + DB313FC417554B71006C0E22 /* SDL_glfuncs.h in Headers */ = {isa = PBXBuildFile; fileRef = 04043BBA12FEB1BE0076DB1F /* SDL_glfuncs.h */; }; + DB313FC517554B71006C0E22 /* SDL_shaders_gl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0435673D1303160F00BA5428 /* SDL_shaders_gl.h */; }; + DB313FC617554B71006C0E22 /* SDL_rotate.h in Headers */ = {isa = PBXBuildFile; fileRef = AA628AC9159367B7005138DD /* SDL_rotate.h */; }; + DB313FC717554B71006C0E22 /* SDL_x11xinput2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA628AD0159367F2005138DD /* SDL_x11xinput2.h */; }; + DB313FC817554B71006C0E22 /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C71595D4D800BBD41B /* begin_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FC917554B71006C0E22 /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C81595D4D800BBD41B /* close_code.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FCA17554B71006C0E22 /* SDL_assert.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557C91595D4D800BBD41B /* SDL_assert.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FCB17554B71006C0E22 /* SDL_atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CA1595D4D800BBD41B /* SDL_atomic.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FCC17554B71006C0E22 /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CB1595D4D800BBD41B /* SDL_audio.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FCD17554B71006C0E22 /* SDL_blendmode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FCE17554B71006C0E22 /* SDL_clipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FCF17554B71006C0E22 /* SDL_config_macosx.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CE1595D4D800BBD41B /* SDL_config_macosx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD017554B71006C0E22 /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557CF1595D4D800BBD41B /* SDL_config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD117554B71006C0E22 /* SDL_copying.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D01595D4D800BBD41B /* SDL_copying.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD217554B71006C0E22 /* SDL_cpuinfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD317554B71006C0E22 /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D21595D4D800BBD41B /* SDL_endian.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD417554B71006C0E22 /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D31595D4D800BBD41B /* SDL_error.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD517554B71006C0E22 /* SDL_events.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D41595D4D800BBD41B /* SDL_events.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD617554B71006C0E22 /* SDL_gesture.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D51595D4D800BBD41B /* SDL_gesture.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD717554B71006C0E22 /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D61595D4D800BBD41B /* SDL_haptic.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD817554B71006C0E22 /* SDL_hints.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D71595D4D800BBD41B /* SDL_hints.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FD917554B71006C0E22 /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557D91595D4D800BBD41B /* SDL_joystick.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FDA17554B71006C0E22 /* SDL_keyboard.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FDB17554B71006C0E22 /* SDL_keycode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DB1595D4D800BBD41B /* SDL_keycode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FDC17554B71006C0E22 /* SDL_loadso.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DC1595D4D800BBD41B /* SDL_loadso.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FDD17554B71006C0E22 /* SDL_log.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DD1595D4D800BBD41B /* SDL_log.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FDE17554B71006C0E22 /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DE1595D4D800BBD41B /* SDL_main.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FDF17554B71006C0E22 /* SDL_mouse.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557DF1595D4D800BBD41B /* SDL_mouse.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE017554B71006C0E22 /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E01595D4D800BBD41B /* SDL_mutex.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE117554B71006C0E22 /* SDL_name.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E11595D4D800BBD41B /* SDL_name.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE217554B71006C0E22 /* SDL_opengl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E21595D4D800BBD41B /* SDL_opengl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE317554B71006C0E22 /* SDL_opengles.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E31595D4D800BBD41B /* SDL_opengles.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE417554B71006C0E22 /* SDL_opengles2.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E41595D4D800BBD41B /* SDL_opengles2.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE517554B71006C0E22 /* SDL_pixels.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E51595D4D800BBD41B /* SDL_pixels.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE617554B71006C0E22 /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E61595D4D800BBD41B /* SDL_platform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE717554B71006C0E22 /* SDL_power.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E71595D4D800BBD41B /* SDL_power.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE817554B71006C0E22 /* SDL_quit.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E81595D4D800BBD41B /* SDL_quit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FE917554B71006C0E22 /* SDL_rect.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557E91595D4D800BBD41B /* SDL_rect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FEA17554B71006C0E22 /* SDL_render.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EA1595D4D800BBD41B /* SDL_render.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FEB17554B71006C0E22 /* SDL_revision.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EB1595D4D800BBD41B /* SDL_revision.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FEC17554B71006C0E22 /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EC1595D4D800BBD41B /* SDL_rwops.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FED17554B71006C0E22 /* SDL_scancode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557ED1595D4D800BBD41B /* SDL_scancode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FEE17554B71006C0E22 /* SDL_shape.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EE1595D4D800BBD41B /* SDL_shape.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FEF17554B71006C0E22 /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF017554B71006C0E22 /* SDL_surface.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F01595D4D800BBD41B /* SDL_surface.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF117554B71006C0E22 /* SDL_system.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F11595D4D800BBD41B /* SDL_system.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF217554B71006C0E22 /* SDL_syswm.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F21595D4D800BBD41B /* SDL_syswm.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF317554B71006C0E22 /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F31595D4D800BBD41B /* SDL_thread.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF417554B71006C0E22 /* SDL_timer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F41595D4D800BBD41B /* SDL_timer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF517554B71006C0E22 /* SDL_touch.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F51595D4D800BBD41B /* SDL_touch.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF617554B71006C0E22 /* SDL_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F61595D4D800BBD41B /* SDL_types.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF717554B71006C0E22 /* SDL_version.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F71595D4D800BBD41B /* SDL_version.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF817554B71006C0E22 /* SDL_video.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F81595D4D800BBD41B /* SDL_video.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FF917554B71006C0E22 /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = AA7557F91595D4D800BBD41B /* SDL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FFA17554B71006C0E22 /* SDL_cocoamessagebox.h in Headers */ = {isa = PBXBuildFile; fileRef = AABCC38B164063D200AB8930 /* SDL_cocoamessagebox.h */; }; + DB313FFB17554B71006C0E22 /* SDL_gamecontroller.h in Headers */ = {isa = PBXBuildFile; fileRef = A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FFC17554B71006C0E22 /* SDL_bits.h in Headers */ = {isa = PBXBuildFile; fileRef = AADA5B8616CCAB3000107CF7 /* SDL_bits.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB313FFE17554B71006C0E22 /* SDL_atomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD7412E6671700899322 /* SDL_atomic.c */; }; + DB313FFF17554B71006C0E22 /* SDL_spinlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD7512E6671700899322 /* SDL_spinlock.c */; }; + DB31400017554B71006C0E22 /* SDL_diskaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD8812E6671700899322 /* SDL_diskaudio.c */; }; + DB31400117554B71006C0E22 /* SDL_dummyaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFD9412E6671700899322 /* SDL_dummyaudio.c */; }; + DB31400217554B71006C0E22 /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDA012E6671700899322 /* SDL_coreaudio.c */; }; + DB31400317554B71006C0E22 /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB412E6671700899322 /* SDL_audio.c */; }; + DB31400417554B71006C0E22 /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB612E6671700899322 /* SDL_audiocvt.c */; }; + DB31400517554B71006C0E22 /* SDL_audiodev.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDB712E6671700899322 /* SDL_audiodev.c */; }; + DB31400617554B71006C0E22 /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDBA12E6671700899322 /* SDL_audiotypecvt.c */; }; + DB31400717554B71006C0E22 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDBB12E6671700899322 /* SDL_mixer.c */; }; + DB31400817554B71006C0E22 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDC312E6671700899322 /* SDL_wave.c */; }; + DB31400917554B71006C0E22 /* SDL_cpuinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDD412E6671700899322 /* SDL_cpuinfo.c */; }; + DB31400A17554B71006C0E22 /* SDL_clipboardevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDDC12E6671700899322 /* SDL_clipboardevents.c */; }; + DB31400B17554B71006C0E22 /* SDL_events.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDDE12E6671700899322 /* SDL_events.c */; }; + DB31400C17554B71006C0E22 /* SDL_dropevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 566CDE8E148F0AC200C5A9BB /* SDL_dropevents.c */; }; + DB31400D17554B71006C0E22 /* SDL_gesture.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE012E6671700899322 /* SDL_gesture.c */; }; + DB31400E17554B71006C0E22 /* SDL_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE212E6671700899322 /* SDL_keyboard.c */; }; + DB31400F17554B71006C0E22 /* SDL_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE412E6671700899322 /* SDL_mouse.c */; }; + DB31401017554B71006C0E22 /* SDL_quit.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE612E6671700899322 /* SDL_quit.c */; }; + DB31401117554B71006C0E22 /* SDL_touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDE812E6671700899322 /* SDL_touch.c */; }; + DB31401217554B71006C0E22 /* SDL_windowevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDEA12E6671700899322 /* SDL_windowevents.c */; }; + DB31401317554B71006C0E22 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDEF12E6671700899322 /* SDL_rwopsbundlesupport.m */; }; + DB31401417554B71006C0E22 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDF012E6671700899322 /* SDL_rwops.c */; }; + DB31401517554B71006C0E22 /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDF312E6671700899322 /* SDL_syshaptic.c */; }; + DB31401617554B71006C0E22 /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFDFA12E6671700899322 /* SDL_haptic.c */; }; + DB31401717554B71006C0E22 /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE0712E6671700899322 /* SDL_sysjoystick.c */; }; + DB31401817554B71006C0E22 /* SDL_gamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = BBFC088A164C6514003E6A99 /* SDL_gamecontroller.c */; }; + DB31401917554B71006C0E22 /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE1612E6671700899322 /* SDL_joystick.c */; }; + DB31401A17554B71006C0E22 /* SDL_sysloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE3312E6671700899322 /* SDL_sysloadso.c */; }; + DB31401B17554B71006C0E22 /* SDL_syspower.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE4B12E6671700899322 /* SDL_syspower.c */; }; + DB31401C17554B71006C0E22 /* SDL_power.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE4E12E6671700899322 /* SDL_power.c */; }; + DB31401D17554B71006C0E22 /* SDL_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5612E6671700899322 /* SDL_assert.c */; }; + DB31401E17554B71006C0E22 /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5912E6671700899322 /* SDL_error.c */; }; + DB31402017554B71006C0E22 /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5C12E6671700899322 /* SDL.c */; }; + DB31402117554B71006C0E22 /* SDL_getenv.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5E12E6671700899322 /* SDL_getenv.c */; }; + DB31402217554B71006C0E22 /* SDL_iconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE5F12E6671700899322 /* SDL_iconv.c */; }; + DB31402317554B71006C0E22 /* SDL_malloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6012E6671700899322 /* SDL_malloc.c */; }; + DB31402417554B71006C0E22 /* SDL_qsort.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6112E6671700899322 /* SDL_qsort.c */; }; + DB31402517554B71006C0E22 /* SDL_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6212E6671700899322 /* SDL_stdlib.c */; }; + DB31402617554B71006C0E22 /* SDL_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE6312E6671700899322 /* SDL_string.c */; }; + DB31402717554B71006C0E22 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE7E12E6671800899322 /* SDL_syscond.c */; }; + DB31402817554B71006C0E22 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE7F12E6671800899322 /* SDL_sysmutex.c */; }; + DB31402917554B71006C0E22 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8112E6671800899322 /* SDL_syssem.c */; }; + DB31402A17554B71006C0E22 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8212E6671800899322 /* SDL_systhread.c */; }; + DB31402B17554B71006C0E22 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE8C12E6671800899322 /* SDL_thread.c */; }; + DB31402C17554B71006C0E22 /* SDL_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFE9F12E6671800899322 /* SDL_timer.c */; }; + DB31402D17554B71006C0E22 /* SDL_systimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEA212E6671800899322 /* SDL_systimer.c */; }; + DB31402E17554B71006C0E22 /* SDL_cocoaclipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC312E6671800899322 /* SDL_cocoaclipboard.m */; }; + DB31402F17554B71006C0E22 /* SDL_cocoaevents.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC512E6671800899322 /* SDL_cocoaevents.m */; }; + DB31403017554B71006C0E22 /* SDL_cocoakeyboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC712E6671800899322 /* SDL_cocoakeyboard.m */; }; + DB31403117554B71006C0E22 /* SDL_cocoamodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEC912E6671800899322 /* SDL_cocoamodes.m */; }; + DB31403217554B71006C0E22 /* SDL_cocoamouse.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECB12E6671800899322 /* SDL_cocoamouse.m */; }; + DB31403317554B71006C0E22 /* SDL_cocoaopengl.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECD12E6671800899322 /* SDL_cocoaopengl.m */; }; + DB31403417554B71006C0E22 /* SDL_cocoashape.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFECF12E6671800899322 /* SDL_cocoashape.m */; }; + DB31403517554B71006C0E22 /* SDL_cocoavideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFED112E6671800899322 /* SDL_cocoavideo.m */; }; + DB31403617554B71006C0E22 /* SDL_cocoawindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFED312E6671800899322 /* SDL_cocoawindow.m */; }; + DB31403717554B71006C0E22 /* SDL_nullevents.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEE812E6671800899322 /* SDL_nullevents.c */; }; + DB31403817554B71006C0E22 /* SDL_nullvideo.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFEEC12E6671800899322 /* SDL_nullvideo.c */; }; + DB31403917554B71006C0E22 /* SDL_blit.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF4E12E6671800899322 /* SDL_blit.c */; }; + DB31403A17554B71006C0E22 /* SDL_blit_0.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5012E6671800899322 /* SDL_blit_0.c */; }; + DB31403B17554B71006C0E22 /* SDL_blit_1.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5112E6671800899322 /* SDL_blit_1.c */; }; + DB31403C17554B71006C0E22 /* SDL_blit_A.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5212E6671800899322 /* SDL_blit_A.c */; }; + DB31403D17554B71006C0E22 /* SDL_blit_auto.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5312E6671800899322 /* SDL_blit_auto.c */; }; + DB31403E17554B71006C0E22 /* SDL_blit_copy.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5512E6671800899322 /* SDL_blit_copy.c */; }; + DB31403F17554B71006C0E22 /* SDL_blit_N.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5712E6671800899322 /* SDL_blit_N.c */; }; + DB31404017554B71006C0E22 /* SDL_blit_slow.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5812E6671800899322 /* SDL_blit_slow.c */; }; + DB31404117554B71006C0E22 /* SDL_bmp.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5A12E6671800899322 /* SDL_bmp.c */; }; + DB31404217554B71006C0E22 /* SDL_clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF5B12E6671800899322 /* SDL_clipboard.c */; }; + DB31404317554B71006C0E22 /* SDL_fillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6012E6671800899322 /* SDL_fillrect.c */; }; + DB31404417554B71006C0E22 /* SDL_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6512E6671800899322 /* SDL_pixels.c */; }; + DB31404517554B71006C0E22 /* SDL_rect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6712E6671800899322 /* SDL_rect.c */; }; + DB31404617554B71006C0E22 /* SDL_RLEaccel.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF6F12E6671800899322 /* SDL_RLEaccel.c */; }; + DB31404717554B71006C0E22 /* SDL_shape.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7112E6671800899322 /* SDL_shape.c */; }; + DB31404817554B71006C0E22 /* SDL_stretch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7312E6671800899322 /* SDL_stretch.c */; }; + DB31404917554B71006C0E22 /* SDL_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7412E6671800899322 /* SDL_surface.c */; }; + DB31404A17554B71006C0E22 /* SDL_video.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFF7612E6671800899322 /* SDL_video.c */; }; + DB31404B17554B71006C0E22 /* imKStoUCS.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFB812E6671800899322 /* imKStoUCS.c */; }; + DB31404C17554B71006C0E22 /* SDL_x11clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBA12E6671800899322 /* SDL_x11clipboard.c */; }; + DB31404D17554B71006C0E22 /* SDL_x11dyn.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBC12E6671800899322 /* SDL_x11dyn.c */; }; + DB31404E17554B71006C0E22 /* SDL_x11events.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFBE12E6671800899322 /* SDL_x11events.c */; }; + DB31404F17554B71006C0E22 /* SDL_x11keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC212E6671800899322 /* SDL_x11keyboard.c */; }; + DB31405017554B71006C0E22 /* SDL_x11modes.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC412E6671800899322 /* SDL_x11modes.c */; }; + DB31405117554B71006C0E22 /* SDL_x11mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC612E6671800899322 /* SDL_x11mouse.c */; }; + DB31405217554B71006C0E22 /* SDL_x11opengl.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFC812E6671800899322 /* SDL_x11opengl.c */; }; + DB31405317554B71006C0E22 /* SDL_x11opengles.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFCA12E6671800899322 /* SDL_x11opengles.c */; }; + DB31405417554B71006C0E22 /* SDL_x11shape.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFCE12E6671800899322 /* SDL_x11shape.c */; }; + DB31405517554B71006C0E22 /* SDL_x11touch.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD112E6671800899322 /* SDL_x11touch.c */; }; + DB31405617554B71006C0E22 /* SDL_x11video.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD312E6671800899322 /* SDL_x11video.c */; }; + DB31405717554B71006C0E22 /* SDL_x11window.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BDFFD512E6671800899322 /* SDL_x11window.c */; }; + DB31405817554B71006C0E22 /* SDL_render.c in Sources */ = {isa = PBXBuildFile; fileRef = 041B2C9E12FA0D680087D585 /* SDL_render.c */; }; + DB31405917554B71006C0E22 /* SDL_yuv_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409B8E12FA97ED00FB9AA8 /* SDL_yuv_mmx.c */; }; + DB31405A17554B71006C0E22 /* SDL_yuv_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 04409B9012FA97ED00FB9AA8 /* SDL_yuv_sw.c */; }; + DB31405B17554B71006C0E22 /* SDL_nullframebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803812FB748500FC43C0 /* SDL_nullframebuffer.c */; }; + DB31405C17554B71006C0E22 /* SDL_blendfillrect.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803D12FB74A200FC43C0 /* SDL_blendfillrect.c */; }; + DB31405D17554B71006C0E22 /* SDL_blendline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7803F12FB74A200FC43C0 /* SDL_blendline.c */; }; + DB31405E17554B71006C0E22 /* SDL_blendpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804112FB74A200FC43C0 /* SDL_blendpoint.c */; }; + DB31405F17554B71006C0E22 /* SDL_drawline.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804412FB74A200FC43C0 /* SDL_drawline.c */; }; + DB31406017554B71006C0E22 /* SDL_drawpoint.c in Sources */ = {isa = PBXBuildFile; fileRef = 04F7804612FB74A200FC43C0 /* SDL_drawpoint.c */; }; + DB31406117554B71006C0E22 /* SDL_render_gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC1712FE1BBA004C9285 /* SDL_render_gl.c */; }; + DB31406217554B71006C0E22 /* SDL_render_sw.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC1B12FE1BCB004C9285 /* SDL_render_sw.c */; }; + DB31406317554B71006C0E22 /* SDL_x11framebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5812FE1C60004C9285 /* SDL_x11framebuffer.c */; }; + DB31406417554B71006C0E22 /* SDL_hints.c in Sources */ = {isa = PBXBuildFile; fileRef = 0442EC5E12FE1C75004C9285 /* SDL_hints.c */; }; + DB31406517554B71006C0E22 /* SDL_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 04BAC0C71300C2160055DE28 /* SDL_log.c */; }; + DB31406617554B71006C0E22 /* SDL_shaders_gl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0435673C1303160F00BA5428 /* SDL_shaders_gl.c */; }; + DB31406717554B71006C0E22 /* SDL_rotate.c in Sources */ = {isa = PBXBuildFile; fileRef = AA628AC8159367B7005138DD /* SDL_rotate.c */; }; + DB31406817554B71006C0E22 /* SDL_x11xinput2.c in Sources */ = {isa = PBXBuildFile; fileRef = AA628ACF159367F2005138DD /* SDL_x11xinput2.c */; }; + DB31406917554B71006C0E22 /* SDL_x11messagebox.c in Sources */ = {isa = PBXBuildFile; fileRef = AA9E4092163BE51E007A2AD0 /* SDL_x11messagebox.c */; }; + DB31406A17554B71006C0E22 /* SDL_cocoamessagebox.m in Sources */ = {isa = PBXBuildFile; fileRef = AABCC38C164063D200AB8930 /* SDL_cocoamessagebox.m */; }; + DB31406C17554B71006C0E22 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */; }; + DB31406D17554B71006C0E22 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179C0858DECD00B2BC32 /* AudioUnit.framework */; }; + DB31406E17554B71006C0E22 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179D0858DECD00B2BC32 /* Cocoa.framework */; }; + DB31406F17554B71006C0E22 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179E0858DECD00B2BC32 /* CoreAudio.framework */; }; + DB31407017554B71006C0E22 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0073179F0858DECD00B2BC32 /* IOKit.framework */; }; + DB31407217554B71006C0E22 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 007317C10858E15000B2BC32 /* Carbon.framework */; }; + DB31408B17554D37006C0E22 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00CFA89C106B4BA100758660 /* ForceFeedback.framework */; }; + DB31408D17554D3C006C0E22 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00CFA89C106B4BA100758660 /* ForceFeedback.framework */; }; + FA73671D19A540EF004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73671C19A540EF004122E4 /* CoreVideo.framework */; }; + FA73671E19A54140004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73671C19A540EF004122E4 /* CoreVideo.framework */; }; + FA73671F19A54144004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73671C19A540EF004122E4 /* CoreVideo.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + BECDF6C50761BA81005FE872 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 0867D690FE84028FC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BECDF5FE0761BA81005FE872; + remoteInfo = "Framework (Upgraded)"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = /System/Library/Frameworks/AudioToolbox.framework; sourceTree = ""; }; + 0073179C0858DECD00B2BC32 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = /System/Library/Frameworks/AudioUnit.framework; sourceTree = ""; }; + 0073179D0858DECD00B2BC32 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 0073179E0858DECD00B2BC32 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = ""; }; + 0073179F0858DECD00B2BC32 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; + 007317C10858E15000B2BC32 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; + 00794D3F09D0C461003FC8A1 /* License.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = License.txt; sourceTree = ""; }; + 00CFA89C106B4BA100758660 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ForceFeedback.framework; path = /System/Library/Frameworks/ForceFeedback.framework; sourceTree = ""; }; + 00D0D08310675DD9004B05EF /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = ""; }; + 04043BBA12FEB1BE0076DB1F /* SDL_glfuncs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_glfuncs.h; sourceTree = ""; }; + 041B2C9E12FA0D680087D585 /* SDL_render.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render.c; sourceTree = ""; }; + 041B2C9F12FA0D680087D585 /* SDL_sysrender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysrender.h; sourceTree = ""; }; + 0435673C1303160F00BA5428 /* SDL_shaders_gl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_shaders_gl.c; sourceTree = ""; }; + 0435673D1303160F00BA5428 /* SDL_shaders_gl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_shaders_gl.h; sourceTree = ""; }; + 04409B8D12FA97ED00FB9AA8 /* mmx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmx.h; sourceTree = ""; }; + 04409B8E12FA97ED00FB9AA8 /* SDL_yuv_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_mmx.c; sourceTree = ""; }; + 04409B8F12FA97ED00FB9AA8 /* SDL_yuv_sw_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_yuv_sw_c.h; sourceTree = ""; }; + 04409B9012FA97ED00FB9AA8 /* SDL_yuv_sw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_yuv_sw.c; sourceTree = ""; }; + 0442EC1712FE1BBA004C9285 /* SDL_render_gl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_gl.c; sourceTree = ""; }; + 0442EC1A12FE1BCB004C9285 /* SDL_render_sw_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_render_sw_c.h; sourceTree = ""; }; + 0442EC1B12FE1BCB004C9285 /* SDL_render_sw.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_render_sw.c; sourceTree = ""; }; + 0442EC5812FE1C60004C9285 /* SDL_x11framebuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11framebuffer.c; sourceTree = ""; }; + 0442EC5912FE1C60004C9285 /* SDL_x11framebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11framebuffer.h; sourceTree = ""; }; + 0442EC5E12FE1C75004C9285 /* SDL_hints.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_hints.c; path = ../../src/SDL_hints.c; sourceTree = SOURCE_ROOT; }; + 04BAC0C71300C2160055DE28 /* SDL_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_log.c; path = ../../src/SDL_log.c; sourceTree = SOURCE_ROOT; }; + 04BDFD7412E6671700899322 /* SDL_atomic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_atomic.c; sourceTree = ""; }; + 04BDFD7512E6671700899322 /* SDL_spinlock.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_spinlock.c; sourceTree = ""; }; + 04BDFD8812E6671700899322 /* SDL_diskaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_diskaudio.c; sourceTree = ""; }; + 04BDFD8912E6671700899322 /* SDL_diskaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_diskaudio.h; sourceTree = ""; }; + 04BDFD9412E6671700899322 /* SDL_dummyaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_dummyaudio.c; sourceTree = ""; }; + 04BDFD9512E6671700899322 /* SDL_dummyaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_dummyaudio.h; sourceTree = ""; }; + 04BDFDA012E6671700899322 /* SDL_coreaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_coreaudio.c; sourceTree = ""; }; + 04BDFDA112E6671700899322 /* SDL_coreaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_coreaudio.h; sourceTree = ""; }; + 04BDFDB412E6671700899322 /* SDL_audio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audio.c; sourceTree = ""; }; + 04BDFDB512E6671700899322 /* SDL_audio_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audio_c.h; sourceTree = ""; }; + 04BDFDB612E6671700899322 /* SDL_audiocvt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audiocvt.c; sourceTree = ""; }; + 04BDFDB712E6671700899322 /* SDL_audiodev.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audiodev.c; sourceTree = ""; }; + 04BDFDB812E6671700899322 /* SDL_audiodev_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audiodev_c.h; sourceTree = ""; }; + 04BDFDB912E6671700899322 /* SDL_audiomem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audiomem.h; sourceTree = ""; }; + 04BDFDBA12E6671700899322 /* SDL_audiotypecvt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_audiotypecvt.c; sourceTree = ""; }; + 04BDFDBB12E6671700899322 /* SDL_mixer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mixer.c; sourceTree = ""; }; + 04BDFDC212E6671700899322 /* SDL_sysaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysaudio.h; sourceTree = ""; }; + 04BDFDC312E6671700899322 /* SDL_wave.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_wave.c; sourceTree = ""; }; + 04BDFDC412E6671700899322 /* SDL_wave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_wave.h; sourceTree = ""; }; + 04BDFDD412E6671700899322 /* SDL_cpuinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_cpuinfo.c; sourceTree = ""; }; + 04BDFDD612E6671700899322 /* blank_cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blank_cursor.h; sourceTree = ""; }; + 04BDFDD712E6671700899322 /* default_cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = default_cursor.h; sourceTree = ""; }; + 04BDFDD812E6671700899322 /* scancodes_darwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_darwin.h; sourceTree = ""; }; + 04BDFDD912E6671700899322 /* scancodes_linux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_linux.h; sourceTree = ""; }; + 04BDFDDB12E6671700899322 /* scancodes_xfree86.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scancodes_xfree86.h; sourceTree = ""; }; + 04BDFDDC12E6671700899322 /* SDL_clipboardevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_clipboardevents.c; sourceTree = ""; }; + 04BDFDDD12E6671700899322 /* SDL_clipboardevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_clipboardevents_c.h; sourceTree = ""; }; + 04BDFDDE12E6671700899322 /* SDL_events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_events.c; sourceTree = ""; }; + 04BDFDDF12E6671700899322 /* SDL_events_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_events_c.h; sourceTree = ""; }; + 04BDFDE012E6671700899322 /* SDL_gesture.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_gesture.c; sourceTree = ""; }; + 04BDFDE112E6671700899322 /* SDL_gesture_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gesture_c.h; sourceTree = ""; }; + 04BDFDE212E6671700899322 /* SDL_keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_keyboard.c; sourceTree = ""; }; + 04BDFDE312E6671700899322 /* SDL_keyboard_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keyboard_c.h; sourceTree = ""; }; + 04BDFDE412E6671700899322 /* SDL_mouse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_mouse.c; sourceTree = ""; }; + 04BDFDE512E6671700899322 /* SDL_mouse_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mouse_c.h; sourceTree = ""; }; + 04BDFDE612E6671700899322 /* SDL_quit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_quit.c; sourceTree = ""; }; + 04BDFDE712E6671700899322 /* SDL_sysevents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysevents.h; sourceTree = ""; }; + 04BDFDE812E6671700899322 /* SDL_touch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_touch.c; sourceTree = ""; }; + 04BDFDE912E6671700899322 /* SDL_touch_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_touch_c.h; sourceTree = ""; }; + 04BDFDEA12E6671700899322 /* SDL_windowevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_windowevents.c; sourceTree = ""; }; + 04BDFDEB12E6671700899322 /* SDL_windowevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_windowevents_c.h; sourceTree = ""; }; + 04BDFDEE12E6671700899322 /* SDL_rwopsbundlesupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rwopsbundlesupport.h; sourceTree = ""; }; + 04BDFDEF12E6671700899322 /* SDL_rwopsbundlesupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_rwopsbundlesupport.m; sourceTree = ""; }; + 04BDFDF012E6671700899322 /* SDL_rwops.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rwops.c; sourceTree = ""; }; + 04BDFDF312E6671700899322 /* SDL_syshaptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syshaptic.c; sourceTree = ""; }; + 04BDFDFA12E6671700899322 /* SDL_haptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_haptic.c; sourceTree = ""; }; + 04BDFDFB12E6671700899322 /* SDL_haptic_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_haptic_c.h; sourceTree = ""; }; + 04BDFDFC12E6671700899322 /* SDL_syshaptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_syshaptic.h; sourceTree = ""; }; + 04BDFE0712E6671700899322 /* SDL_sysjoystick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysjoystick.c; sourceTree = ""; }; + 04BDFE0812E6671700899322 /* SDL_sysjoystick_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysjoystick_c.h; sourceTree = ""; }; + 04BDFE1612E6671700899322 /* SDL_joystick.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_joystick.c; sourceTree = ""; }; + 04BDFE1712E6671700899322 /* SDL_joystick_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_joystick_c.h; sourceTree = ""; }; + 04BDFE1812E6671700899322 /* SDL_sysjoystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysjoystick.h; sourceTree = ""; }; + 04BDFE3312E6671700899322 /* SDL_sysloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysloadso.c; sourceTree = ""; }; + 04BDFE4B12E6671700899322 /* SDL_syspower.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syspower.c; sourceTree = ""; }; + 04BDFE4E12E6671700899322 /* SDL_power.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_power.c; sourceTree = ""; }; + 04BDFE5512E6671700899322 /* SDL_assert_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_assert_c.h; path = ../../src/SDL_assert_c.h; sourceTree = SOURCE_ROOT; }; + 04BDFE5612E6671700899322 /* SDL_assert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_assert.c; path = ../../src/SDL_assert.c; sourceTree = SOURCE_ROOT; }; + 04BDFE5812E6671700899322 /* SDL_error_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_error_c.h; path = ../../src/SDL_error_c.h; sourceTree = SOURCE_ROOT; }; + 04BDFE5912E6671700899322 /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_error.c; path = ../../src/SDL_error.c; sourceTree = SOURCE_ROOT; }; + 04BDFE5C12E6671700899322 /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL.c; path = ../../src/SDL.c; sourceTree = SOURCE_ROOT; }; + 04BDFE5E12E6671700899322 /* SDL_getenv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_getenv.c; sourceTree = ""; }; + 04BDFE5F12E6671700899322 /* SDL_iconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_iconv.c; sourceTree = ""; }; + 04BDFE6012E6671700899322 /* SDL_malloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_malloc.c; sourceTree = ""; }; + 04BDFE6112E6671700899322 /* SDL_qsort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_qsort.c; sourceTree = ""; }; + 04BDFE6212E6671700899322 /* SDL_stdlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_stdlib.c; sourceTree = ""; }; + 04BDFE6312E6671700899322 /* SDL_string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_string.c; sourceTree = ""; }; + 04BDFE7E12E6671800899322 /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syscond.c; sourceTree = ""; }; + 04BDFE7F12E6671800899322 /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_sysmutex.c; sourceTree = ""; }; + 04BDFE8012E6671800899322 /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysmutex_c.h; sourceTree = ""; }; + 04BDFE8112E6671800899322 /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_syssem.c; sourceTree = ""; }; + 04BDFE8212E6671800899322 /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systhread.c; sourceTree = ""; }; + 04BDFE8312E6671800899322 /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_systhread_c.h; sourceTree = ""; }; + 04BDFE8B12E6671800899322 /* SDL_systhread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_systhread.h; sourceTree = ""; }; + 04BDFE8C12E6671800899322 /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_thread.c; sourceTree = ""; }; + 04BDFE8D12E6671800899322 /* SDL_thread_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_thread_c.h; sourceTree = ""; }; + 04BDFE9F12E6671800899322 /* SDL_timer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_timer.c; sourceTree = ""; }; + 04BDFEA012E6671800899322 /* SDL_timer_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_timer_c.h; sourceTree = ""; }; + 04BDFEA212E6671800899322 /* SDL_systimer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systimer.c; sourceTree = ""; }; + 04BDFEC212E6671800899322 /* SDL_cocoaclipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoaclipboard.h; sourceTree = ""; }; + 04BDFEC312E6671800899322 /* SDL_cocoaclipboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoaclipboard.m; sourceTree = ""; }; + 04BDFEC412E6671800899322 /* SDL_cocoaevents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoaevents.h; sourceTree = ""; }; + 04BDFEC512E6671800899322 /* SDL_cocoaevents.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoaevents.m; sourceTree = ""; }; + 04BDFEC612E6671800899322 /* SDL_cocoakeyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoakeyboard.h; sourceTree = ""; }; + 04BDFEC712E6671800899322 /* SDL_cocoakeyboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoakeyboard.m; sourceTree = ""; }; + 04BDFEC812E6671800899322 /* SDL_cocoamodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoamodes.h; sourceTree = ""; }; + 04BDFEC912E6671800899322 /* SDL_cocoamodes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoamodes.m; sourceTree = ""; }; + 04BDFECA12E6671800899322 /* SDL_cocoamouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoamouse.h; sourceTree = ""; }; + 04BDFECB12E6671800899322 /* SDL_cocoamouse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoamouse.m; sourceTree = ""; }; + 04BDFECC12E6671800899322 /* SDL_cocoaopengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoaopengl.h; sourceTree = ""; }; + 04BDFECD12E6671800899322 /* SDL_cocoaopengl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoaopengl.m; sourceTree = ""; }; + 04BDFECE12E6671800899322 /* SDL_cocoashape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoashape.h; sourceTree = ""; }; + 04BDFECF12E6671800899322 /* SDL_cocoashape.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoashape.m; sourceTree = ""; }; + 04BDFED012E6671800899322 /* SDL_cocoavideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoavideo.h; sourceTree = ""; }; + 04BDFED112E6671800899322 /* SDL_cocoavideo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoavideo.m; sourceTree = ""; }; + 04BDFED212E6671800899322 /* SDL_cocoawindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoawindow.h; sourceTree = ""; }; + 04BDFED312E6671800899322 /* SDL_cocoawindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoawindow.m; sourceTree = ""; }; + 04BDFEE812E6671800899322 /* SDL_nullevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullevents.c; sourceTree = ""; }; + 04BDFEE912E6671800899322 /* SDL_nullevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullevents_c.h; sourceTree = ""; }; + 04BDFEEC12E6671800899322 /* SDL_nullvideo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullvideo.c; sourceTree = ""; }; + 04BDFEED12E6671800899322 /* SDL_nullvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullvideo.h; sourceTree = ""; }; + 04BDFF4E12E6671800899322 /* SDL_blit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit.c; sourceTree = ""; }; + 04BDFF4F12E6671800899322 /* SDL_blit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit.h; sourceTree = ""; }; + 04BDFF5012E6671800899322 /* SDL_blit_0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_0.c; sourceTree = ""; }; + 04BDFF5112E6671800899322 /* SDL_blit_1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_1.c; sourceTree = ""; }; + 04BDFF5212E6671800899322 /* SDL_blit_A.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_A.c; sourceTree = ""; }; + 04BDFF5312E6671800899322 /* SDL_blit_auto.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_auto.c; sourceTree = ""; }; + 04BDFF5412E6671800899322 /* SDL_blit_auto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_auto.h; sourceTree = ""; }; + 04BDFF5512E6671800899322 /* SDL_blit_copy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_copy.c; sourceTree = ""; }; + 04BDFF5612E6671800899322 /* SDL_blit_copy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_copy.h; sourceTree = ""; }; + 04BDFF5712E6671800899322 /* SDL_blit_N.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_N.c; sourceTree = ""; }; + 04BDFF5812E6671800899322 /* SDL_blit_slow.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blit_slow.c; sourceTree = ""; }; + 04BDFF5912E6671800899322 /* SDL_blit_slow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blit_slow.h; sourceTree = ""; }; + 04BDFF5A12E6671800899322 /* SDL_bmp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_bmp.c; sourceTree = ""; }; + 04BDFF5B12E6671800899322 /* SDL_clipboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_clipboard.c; sourceTree = ""; }; + 04BDFF6012E6671800899322 /* SDL_fillrect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_fillrect.c; sourceTree = ""; }; + 04BDFF6512E6671800899322 /* SDL_pixels.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_pixels.c; sourceTree = ""; }; + 04BDFF6612E6671800899322 /* SDL_pixels_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_pixels_c.h; sourceTree = ""; }; + 04BDFF6712E6671800899322 /* SDL_rect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rect.c; sourceTree = ""; }; + 04BDFF6F12E6671800899322 /* SDL_RLEaccel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_RLEaccel.c; sourceTree = ""; }; + 04BDFF7012E6671800899322 /* SDL_RLEaccel_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_RLEaccel_c.h; sourceTree = ""; }; + 04BDFF7112E6671800899322 /* SDL_shape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_shape.c; sourceTree = ""; }; + 04BDFF7212E6671800899322 /* SDL_shape_internals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_shape_internals.h; sourceTree = ""; }; + 04BDFF7312E6671800899322 /* SDL_stretch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_stretch.c; sourceTree = ""; }; + 04BDFF7412E6671800899322 /* SDL_surface.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_surface.c; sourceTree = ""; }; + 04BDFF7512E6671800899322 /* SDL_sysvideo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_sysvideo.h; sourceTree = ""; }; + 04BDFF7612E6671800899322 /* SDL_video.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_video.c; sourceTree = ""; }; + 04BDFFB812E6671800899322 /* imKStoUCS.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = imKStoUCS.c; sourceTree = ""; }; + 04BDFFB912E6671800899322 /* imKStoUCS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = imKStoUCS.h; sourceTree = ""; }; + 04BDFFBA12E6671800899322 /* SDL_x11clipboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11clipboard.c; sourceTree = ""; }; + 04BDFFBB12E6671800899322 /* SDL_x11clipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11clipboard.h; sourceTree = ""; }; + 04BDFFBC12E6671800899322 /* SDL_x11dyn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11dyn.c; sourceTree = ""; }; + 04BDFFBD12E6671800899322 /* SDL_x11dyn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11dyn.h; sourceTree = ""; }; + 04BDFFBE12E6671800899322 /* SDL_x11events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11events.c; sourceTree = ""; }; + 04BDFFBF12E6671800899322 /* SDL_x11events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11events.h; sourceTree = ""; }; + 04BDFFC212E6671800899322 /* SDL_x11keyboard.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11keyboard.c; sourceTree = ""; }; + 04BDFFC312E6671800899322 /* SDL_x11keyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11keyboard.h; sourceTree = ""; }; + 04BDFFC412E6671800899322 /* SDL_x11modes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11modes.c; sourceTree = ""; }; + 04BDFFC512E6671800899322 /* SDL_x11modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11modes.h; sourceTree = ""; }; + 04BDFFC612E6671800899322 /* SDL_x11mouse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11mouse.c; sourceTree = ""; }; + 04BDFFC712E6671800899322 /* SDL_x11mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11mouse.h; sourceTree = ""; }; + 04BDFFC812E6671800899322 /* SDL_x11opengl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11opengl.c; sourceTree = ""; }; + 04BDFFC912E6671800899322 /* SDL_x11opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11opengl.h; sourceTree = ""; }; + 04BDFFCA12E6671800899322 /* SDL_x11opengles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11opengles.c; sourceTree = ""; }; + 04BDFFCB12E6671800899322 /* SDL_x11opengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11opengles.h; sourceTree = ""; }; + 04BDFFCE12E6671800899322 /* SDL_x11shape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11shape.c; sourceTree = ""; }; + 04BDFFCF12E6671800899322 /* SDL_x11shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11shape.h; sourceTree = ""; }; + 04BDFFD012E6671800899322 /* SDL_x11sym.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11sym.h; sourceTree = ""; }; + 04BDFFD112E6671800899322 /* SDL_x11touch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11touch.c; sourceTree = ""; }; + 04BDFFD212E6671800899322 /* SDL_x11touch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11touch.h; sourceTree = ""; }; + 04BDFFD312E6671800899322 /* SDL_x11video.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11video.c; sourceTree = ""; }; + 04BDFFD412E6671800899322 /* SDL_x11video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11video.h; sourceTree = ""; }; + 04BDFFD512E6671800899322 /* SDL_x11window.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11window.c; sourceTree = ""; }; + 04BDFFD612E6671800899322 /* SDL_x11window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11window.h; sourceTree = ""; }; + 04F7803712FB748500FC43C0 /* SDL_nullframebuffer_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_nullframebuffer_c.h; sourceTree = ""; }; + 04F7803812FB748500FC43C0 /* SDL_nullframebuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_nullframebuffer.c; sourceTree = ""; }; + 04F7803D12FB74A200FC43C0 /* SDL_blendfillrect.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendfillrect.c; sourceTree = ""; }; + 04F7803E12FB74A200FC43C0 /* SDL_blendfillrect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendfillrect.h; sourceTree = ""; }; + 04F7803F12FB74A200FC43C0 /* SDL_blendline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendline.c; sourceTree = ""; }; + 04F7804012FB74A200FC43C0 /* SDL_blendline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendline.h; sourceTree = ""; }; + 04F7804112FB74A200FC43C0 /* SDL_blendpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_blendpoint.c; sourceTree = ""; }; + 04F7804212FB74A200FC43C0 /* SDL_blendpoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendpoint.h; sourceTree = ""; }; + 04F7804312FB74A200FC43C0 /* SDL_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_draw.h; sourceTree = ""; }; + 04F7804412FB74A200FC43C0 /* SDL_drawline.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_drawline.c; sourceTree = ""; }; + 04F7804512FB74A200FC43C0 /* SDL_drawline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_drawline.h; sourceTree = ""; }; + 04F7804612FB74A200FC43C0 /* SDL_drawpoint.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_drawpoint.c; sourceTree = ""; }; + 04F7804712FB74A200FC43C0 /* SDL_drawpoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_drawpoint.h; sourceTree = ""; }; + 566CDE8D148F0AC200C5A9BB /* SDL_dropevents_c.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_dropevents_c.h; sourceTree = ""; }; + 566CDE8E148F0AC200C5A9BB /* SDL_dropevents.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_dropevents.c; sourceTree = ""; }; + 567E2F1B17C44BB2005F1892 /* SDL_sysfilesystem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDL_sysfilesystem.m; path = ../../src/filesystem/cocoa/SDL_sysfilesystem.m; sourceTree = ""; }; + 567E2F2017C44C35005F1892 /* SDL_filesystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_filesystem.h; sourceTree = ""; }; + 56A670081856545C0007D20F /* SDL_internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_internal.h; path = ../../src/SDL_internal.h; sourceTree = ""; }; + 56A6701D185654B40007D20F /* SDL_dynapi_procs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_dynapi_procs.h; path = ../../src/dynapi/SDL_dynapi_procs.h; sourceTree = ""; }; + 56A6701E185654B40007D20F /* SDL_dynapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_dynapi.c; path = ../../src/dynapi/SDL_dynapi.c; sourceTree = ""; }; + 56A6701F185654B40007D20F /* SDL_dynapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_dynapi.h; path = ../../src/dynapi/SDL_dynapi.h; sourceTree = ""; }; + 56A67020185654B40007D20F /* SDL_dynapi_overrides.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDL_dynapi_overrides.h; path = ../../src/dynapi/SDL_dynapi_overrides.h; sourceTree = ""; }; + A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gamecontroller.h; sourceTree = ""; }; + AA0F8490178D5ECC00823F9D /* SDL_systls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_systls.c; sourceTree = ""; }; + AA628AC8159367B7005138DD /* SDL_rotate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_rotate.c; sourceTree = ""; }; + AA628AC9159367B7005138DD /* SDL_rotate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rotate.h; sourceTree = ""; }; + AA628ACF159367F2005138DD /* SDL_x11xinput2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11xinput2.c; sourceTree = ""; }; + AA628AD0159367F2005138DD /* SDL_x11xinput2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_x11xinput2.h; sourceTree = ""; }; + AA7557C71595D4D800BBD41B /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = begin_code.h; sourceTree = ""; }; + AA7557C81595D4D800BBD41B /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = close_code.h; sourceTree = ""; }; + AA7557C91595D4D800BBD41B /* SDL_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_assert.h; sourceTree = ""; }; + AA7557CA1595D4D800BBD41B /* SDL_atomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_atomic.h; sourceTree = ""; }; + AA7557CB1595D4D800BBD41B /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_audio.h; sourceTree = ""; }; + AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_blendmode.h; sourceTree = ""; }; + AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_clipboard.h; sourceTree = ""; }; + AA7557CE1595D4D800BBD41B /* SDL_config_macosx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_config_macosx.h; sourceTree = ""; }; + AA7557CF1595D4D800BBD41B /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_config.h; sourceTree = ""; }; + AA7557D01595D4D800BBD41B /* SDL_copying.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_copying.h; sourceTree = ""; }; + AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cpuinfo.h; sourceTree = ""; }; + AA7557D21595D4D800BBD41B /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_endian.h; sourceTree = ""; }; + AA7557D31595D4D800BBD41B /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_error.h; sourceTree = ""; }; + AA7557D41595D4D800BBD41B /* SDL_events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_events.h; sourceTree = ""; }; + AA7557D51595D4D800BBD41B /* SDL_gesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_gesture.h; sourceTree = ""; }; + AA7557D61595D4D800BBD41B /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_haptic.h; sourceTree = ""; }; + AA7557D71595D4D800BBD41B /* SDL_hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_hints.h; sourceTree = ""; }; + AA7557D91595D4D800BBD41B /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_joystick.h; sourceTree = ""; }; + AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keyboard.h; sourceTree = ""; }; + AA7557DB1595D4D800BBD41B /* SDL_keycode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_keycode.h; sourceTree = ""; }; + AA7557DC1595D4D800BBD41B /* SDL_loadso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_loadso.h; sourceTree = ""; }; + AA7557DD1595D4D800BBD41B /* SDL_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_log.h; sourceTree = ""; }; + AA7557DE1595D4D800BBD41B /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_main.h; sourceTree = ""; }; + AA7557DF1595D4D800BBD41B /* SDL_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mouse.h; sourceTree = ""; }; + AA7557E01595D4D800BBD41B /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_mutex.h; sourceTree = ""; }; + AA7557E11595D4D800BBD41B /* SDL_name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_name.h; sourceTree = ""; }; + AA7557E21595D4D800BBD41B /* SDL_opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengl.h; sourceTree = ""; }; + AA7557E31595D4D800BBD41B /* SDL_opengles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles.h; sourceTree = ""; }; + AA7557E41595D4D800BBD41B /* SDL_opengles2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2.h; sourceTree = ""; }; + AA7557E51595D4D800BBD41B /* SDL_pixels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_pixels.h; sourceTree = ""; }; + AA7557E61595D4D800BBD41B /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_platform.h; sourceTree = ""; }; + AA7557E71595D4D800BBD41B /* SDL_power.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_power.h; sourceTree = ""; }; + AA7557E81595D4D800BBD41B /* SDL_quit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_quit.h; sourceTree = ""; }; + AA7557E91595D4D800BBD41B /* SDL_rect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rect.h; sourceTree = ""; }; + AA7557EA1595D4D800BBD41B /* SDL_render.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_render.h; sourceTree = ""; }; + AA7557EB1595D4D800BBD41B /* SDL_revision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_revision.h; sourceTree = ""; }; + AA7557EC1595D4D800BBD41B /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_rwops.h; sourceTree = ""; }; + AA7557ED1595D4D800BBD41B /* SDL_scancode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_scancode.h; sourceTree = ""; }; + AA7557EE1595D4D800BBD41B /* SDL_shape.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_shape.h; sourceTree = ""; }; + AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_stdinc.h; sourceTree = ""; }; + AA7557F01595D4D800BBD41B /* SDL_surface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_surface.h; sourceTree = ""; }; + AA7557F11595D4D800BBD41B /* SDL_system.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_system.h; sourceTree = ""; }; + AA7557F21595D4D800BBD41B /* SDL_syswm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_syswm.h; sourceTree = ""; }; + AA7557F31595D4D800BBD41B /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_thread.h; sourceTree = ""; }; + AA7557F41595D4D800BBD41B /* SDL_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_timer.h; sourceTree = ""; }; + AA7557F51595D4D800BBD41B /* SDL_touch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_touch.h; sourceTree = ""; }; + AA7557F61595D4D800BBD41B /* SDL_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_types.h; sourceTree = ""; }; + AA7557F71595D4D800BBD41B /* SDL_version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_version.h; sourceTree = ""; }; + AA7557F81595D4D800BBD41B /* SDL_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_video.h; sourceTree = ""; }; + AA7557F91595D4D800BBD41B /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL.h; sourceTree = ""; }; + AA9E4092163BE51E007A2AD0 /* SDL_x11messagebox.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_x11messagebox.c; sourceTree = ""; }; + AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_messagebox.h; sourceTree = ""; }; + AABCC38B164063D200AB8930 /* SDL_cocoamessagebox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoamessagebox.h; sourceTree = ""; }; + AABCC38C164063D200AB8930 /* SDL_cocoamessagebox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoamessagebox.m; sourceTree = ""; }; + AAC070F4195606770073DCDF /* SDL_opengl_glext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengl_glext.h; sourceTree = ""; }; + AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_gl2.h; sourceTree = ""; }; + AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_gl2ext.h; sourceTree = ""; }; + AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_gl2platform.h; sourceTree = ""; }; + AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_opengles2_khrplatform.h; sourceTree = ""; }; + AADA5B8616CCAB3000107CF7 /* SDL_bits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_bits.h; sourceTree = ""; }; + BBFC088A164C6514003E6A99 /* SDL_gamecontroller.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = SDL_gamecontroller.c; sourceTree = ""; }; + BECDF66B0761BA81005FE872 /* Info-Framework.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Info-Framework.plist"; sourceTree = ""; }; + BECDF66C0761BA81005FE872 /* SDL2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDL2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BECDF6B30761BA81005FE872 /* libSDL2.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL2.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BECDF6BE0761BA81005FE872 /* Standard DMG */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "Standard DMG"; sourceTree = BUILT_PRODUCTS_DIR; }; + D55A1B7F179F262300625D7C /* SDL_cocoamousetap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDL_cocoamousetap.h; sourceTree = ""; }; + D55A1B80179F262300625D7C /* SDL_cocoamousetap.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDL_cocoamousetap.m; sourceTree = ""; }; + DB31407717554B71006C0E22 /* libSDL2.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libSDL2.dylib; sourceTree = BUILT_PRODUCTS_DIR; }; + DB89958518A1A5C50092407C /* SDL_syshaptic_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_syshaptic_c.h; sourceTree = ""; }; + F59C710300D5CB5801000001 /* ReadMe.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ReadMe.txt; sourceTree = ""; }; + F59C710600D5CB5801000001 /* SDL.info */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SDL.info; sourceTree = ""; }; + F5A2EF3900C6A39A01000001 /* BUGS.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = BUGS.txt; path = ../../BUGS.txt; sourceTree = SOURCE_ROOT; }; + FA73671C19A540EF004122E4 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = /System/Library/Frameworks/CoreVideo.framework; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + BECDF6680761BA81005FE872 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73671D19A540EF004122E4 /* CoreVideo.framework in Frameworks */, + 007317A20858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */, + 007317A30858DECD00B2BC32 /* AudioUnit.framework in Frameworks */, + 007317A40858DECD00B2BC32 /* Cocoa.framework in Frameworks */, + 007317A50858DECD00B2BC32 /* CoreAudio.framework in Frameworks */, + 007317A60858DECD00B2BC32 /* IOKit.framework in Frameworks */, + 00D0D08410675DD9004B05EF /* CoreFoundation.framework in Frameworks */, + 00D0D0D810675E46004B05EF /* Carbon.framework in Frameworks */, + 00CFA89D106B4BA100758660 /* ForceFeedback.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6B10761BA81005FE872 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73671E19A54140004122E4 /* CoreVideo.framework in Frameworks */, + 007317A90858DECD00B2BC32 /* AudioToolbox.framework in Frameworks */, + 007317AA0858DECD00B2BC32 /* AudioUnit.framework in Frameworks */, + 007317AB0858DECD00B2BC32 /* Cocoa.framework in Frameworks */, + 007317AC0858DECD00B2BC32 /* CoreAudio.framework in Frameworks */, + 007317AD0858DECD00B2BC32 /* IOKit.framework in Frameworks */, + 007317C30858E15000B2BC32 /* Carbon.framework in Frameworks */, + DB31408B17554D37006C0E22 /* ForceFeedback.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB31406B17554B71006C0E22 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73671F19A54144004122E4 /* CoreVideo.framework in Frameworks */, + DB31406C17554B71006C0E22 /* AudioToolbox.framework in Frameworks */, + DB31406D17554B71006C0E22 /* AudioUnit.framework in Frameworks */, + DB31406E17554B71006C0E22 /* Cocoa.framework in Frameworks */, + DB31406F17554B71006C0E22 /* CoreAudio.framework in Frameworks */, + DB31407017554B71006C0E22 /* IOKit.framework in Frameworks */, + DB31407217554B71006C0E22 /* Carbon.framework in Frameworks */, + DB31408D17554D3C006C0E22 /* ForceFeedback.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0153844A006D81B07F000001 /* Public Headers */ = { + isa = PBXGroup; + children = ( + AA7557C71595D4D800BBD41B /* begin_code.h */, + AA7557C81595D4D800BBD41B /* close_code.h */, + AA7557F91595D4D800BBD41B /* SDL.h */, + AA7557C91595D4D800BBD41B /* SDL_assert.h */, + AA7557CA1595D4D800BBD41B /* SDL_atomic.h */, + AA7557CB1595D4D800BBD41B /* SDL_audio.h */, + AADA5B8616CCAB3000107CF7 /* SDL_bits.h */, + AA7557CC1595D4D800BBD41B /* SDL_blendmode.h */, + AA7557CD1595D4D800BBD41B /* SDL_clipboard.h */, + AA7557CF1595D4D800BBD41B /* SDL_config.h */, + AA7557CE1595D4D800BBD41B /* SDL_config_macosx.h */, + AA7557D01595D4D800BBD41B /* SDL_copying.h */, + AA7557D11595D4D800BBD41B /* SDL_cpuinfo.h */, + AA7557D21595D4D800BBD41B /* SDL_endian.h */, + AA7557D31595D4D800BBD41B /* SDL_error.h */, + AA7557D41595D4D800BBD41B /* SDL_events.h */, + 567E2F2017C44C35005F1892 /* SDL_filesystem.h */, + A77E6EB3167AB0A90010E40B /* SDL_gamecontroller.h */, + AA7557D51595D4D800BBD41B /* SDL_gesture.h */, + AA7557D61595D4D800BBD41B /* SDL_haptic.h */, + AA7557D71595D4D800BBD41B /* SDL_hints.h */, + AA7557D91595D4D800BBD41B /* SDL_joystick.h */, + AA7557DA1595D4D800BBD41B /* SDL_keyboard.h */, + AA7557DB1595D4D800BBD41B /* SDL_keycode.h */, + AA7557DC1595D4D800BBD41B /* SDL_loadso.h */, + AA7557DD1595D4D800BBD41B /* SDL_log.h */, + AA7557DE1595D4D800BBD41B /* SDL_main.h */, + AA9FF9591637CBF9000DF050 /* SDL_messagebox.h */, + AA7557DF1595D4D800BBD41B /* SDL_mouse.h */, + AA7557E01595D4D800BBD41B /* SDL_mutex.h */, + AA7557E11595D4D800BBD41B /* SDL_name.h */, + AA7557E21595D4D800BBD41B /* SDL_opengl.h */, + AAC070F4195606770073DCDF /* SDL_opengl_glext.h */, + AA7557E31595D4D800BBD41B /* SDL_opengles.h */, + AA7557E41595D4D800BBD41B /* SDL_opengles2.h */, + AAC070F5195606770073DCDF /* SDL_opengles2_gl2.h */, + AAC070F6195606770073DCDF /* SDL_opengles2_gl2ext.h */, + AAC070F7195606770073DCDF /* SDL_opengles2_gl2platform.h */, + AAC070F8195606770073DCDF /* SDL_opengles2_khrplatform.h */, + AA7557E51595D4D800BBD41B /* SDL_pixels.h */, + AA7557E61595D4D800BBD41B /* SDL_platform.h */, + AA7557E71595D4D800BBD41B /* SDL_power.h */, + AA7557E81595D4D800BBD41B /* SDL_quit.h */, + AA7557E91595D4D800BBD41B /* SDL_rect.h */, + AA7557EA1595D4D800BBD41B /* SDL_render.h */, + AA7557EB1595D4D800BBD41B /* SDL_revision.h */, + AA7557EC1595D4D800BBD41B /* SDL_rwops.h */, + AA7557ED1595D4D800BBD41B /* SDL_scancode.h */, + AA7557EE1595D4D800BBD41B /* SDL_shape.h */, + AA7557EF1595D4D800BBD41B /* SDL_stdinc.h */, + AA7557F01595D4D800BBD41B /* SDL_surface.h */, + AA7557F11595D4D800BBD41B /* SDL_system.h */, + AA7557F21595D4D800BBD41B /* SDL_syswm.h */, + AA7557F31595D4D800BBD41B /* SDL_thread.h */, + AA7557F41595D4D800BBD41B /* SDL_timer.h */, + AA7557F51595D4D800BBD41B /* SDL_touch.h */, + AA7557F61595D4D800BBD41B /* SDL_types.h */, + AA7557F71595D4D800BBD41B /* SDL_version.h */, + AA7557F81595D4D800BBD41B /* SDL_video.h */, + ); + name = "Public Headers"; + path = ../../include; + sourceTree = ""; + }; + 034768DDFF38A45A11DB9C8B /* Products */ = { + isa = PBXGroup; + children = ( + 089C1665FE841158C02AAC07 /* Resources */, + BECDF66C0761BA81005FE872 /* SDL2.framework */, + BECDF6B30761BA81005FE872 /* libSDL2.a */, + BECDF6BE0761BA81005FE872 /* Standard DMG */, + DB31407717554B71006C0E22 /* libSDL2.dylib */, + ); + name = Products; + sourceTree = ""; + }; + 041B2C9712FA0D680087D585 /* render */ = { + isa = PBXGroup; + children = ( + 041B2C9A12FA0D680087D585 /* opengl */, + 041B2CA012FA0D680087D585 /* software */, + 04409B8D12FA97ED00FB9AA8 /* mmx.h */, + 041B2C9E12FA0D680087D585 /* SDL_render.c */, + 041B2C9F12FA0D680087D585 /* SDL_sysrender.h */, + 04409B8E12FA97ED00FB9AA8 /* SDL_yuv_mmx.c */, + 04409B8F12FA97ED00FB9AA8 /* SDL_yuv_sw_c.h */, + 04409B9012FA97ED00FB9AA8 /* SDL_yuv_sw.c */, + ); + name = render; + path = ../../src/render; + sourceTree = SOURCE_ROOT; + }; + 041B2C9A12FA0D680087D585 /* opengl */ = { + isa = PBXGroup; + children = ( + 04043BBA12FEB1BE0076DB1F /* SDL_glfuncs.h */, + 0442EC1712FE1BBA004C9285 /* SDL_render_gl.c */, + 0435673C1303160F00BA5428 /* SDL_shaders_gl.c */, + 0435673D1303160F00BA5428 /* SDL_shaders_gl.h */, + ); + path = opengl; + sourceTree = ""; + }; + 041B2CA012FA0D680087D585 /* software */ = { + isa = PBXGroup; + children = ( + 04F7803D12FB74A200FC43C0 /* SDL_blendfillrect.c */, + 04F7803E12FB74A200FC43C0 /* SDL_blendfillrect.h */, + 04F7803F12FB74A200FC43C0 /* SDL_blendline.c */, + 04F7804012FB74A200FC43C0 /* SDL_blendline.h */, + 04F7804112FB74A200FC43C0 /* SDL_blendpoint.c */, + 04F7804212FB74A200FC43C0 /* SDL_blendpoint.h */, + 04F7804312FB74A200FC43C0 /* SDL_draw.h */, + 04F7804412FB74A200FC43C0 /* SDL_drawline.c */, + 04F7804512FB74A200FC43C0 /* SDL_drawline.h */, + 04F7804612FB74A200FC43C0 /* SDL_drawpoint.c */, + 04F7804712FB74A200FC43C0 /* SDL_drawpoint.h */, + 0442EC1B12FE1BCB004C9285 /* SDL_render_sw.c */, + 0442EC1A12FE1BCB004C9285 /* SDL_render_sw_c.h */, + AA628AC8159367B7005138DD /* SDL_rotate.c */, + AA628AC9159367B7005138DD /* SDL_rotate.h */, + ); + path = software; + sourceTree = ""; + }; + 04BDFD7312E6671700899322 /* atomic */ = { + isa = PBXGroup; + children = ( + 04BDFD7412E6671700899322 /* SDL_atomic.c */, + 04BDFD7512E6671700899322 /* SDL_spinlock.c */, + ); + name = atomic; + path = ../../src/atomic; + sourceTree = SOURCE_ROOT; + }; + 04BDFD7612E6671700899322 /* audio */ = { + isa = PBXGroup; + children = ( + 04BDFD8712E6671700899322 /* disk */, + 04BDFD9312E6671700899322 /* dummy */, + 04BDFD9F12E6671700899322 /* coreaudio */, + 04BDFDB412E6671700899322 /* SDL_audio.c */, + 04BDFDB512E6671700899322 /* SDL_audio_c.h */, + 04BDFDB612E6671700899322 /* SDL_audiocvt.c */, + 04BDFDB712E6671700899322 /* SDL_audiodev.c */, + 04BDFDB812E6671700899322 /* SDL_audiodev_c.h */, + 04BDFDB912E6671700899322 /* SDL_audiomem.h */, + 04BDFDBA12E6671700899322 /* SDL_audiotypecvt.c */, + 04BDFDBB12E6671700899322 /* SDL_mixer.c */, + 04BDFDC212E6671700899322 /* SDL_sysaudio.h */, + 04BDFDC312E6671700899322 /* SDL_wave.c */, + 04BDFDC412E6671700899322 /* SDL_wave.h */, + ); + name = audio; + path = ../../src/audio; + sourceTree = SOURCE_ROOT; + }; + 04BDFD8712E6671700899322 /* disk */ = { + isa = PBXGroup; + children = ( + 04BDFD8812E6671700899322 /* SDL_diskaudio.c */, + 04BDFD8912E6671700899322 /* SDL_diskaudio.h */, + ); + path = disk; + sourceTree = ""; + }; + 04BDFD9312E6671700899322 /* dummy */ = { + isa = PBXGroup; + children = ( + 04BDFD9412E6671700899322 /* SDL_dummyaudio.c */, + 04BDFD9512E6671700899322 /* SDL_dummyaudio.h */, + ); + path = dummy; + sourceTree = ""; + }; + 04BDFD9F12E6671700899322 /* coreaudio */ = { + isa = PBXGroup; + children = ( + 04BDFDA012E6671700899322 /* SDL_coreaudio.c */, + 04BDFDA112E6671700899322 /* SDL_coreaudio.h */, + ); + path = coreaudio; + sourceTree = ""; + }; + 04BDFDD312E6671700899322 /* cpuinfo */ = { + isa = PBXGroup; + children = ( + 04BDFDD412E6671700899322 /* SDL_cpuinfo.c */, + ); + name = cpuinfo; + path = ../../src/cpuinfo; + sourceTree = SOURCE_ROOT; + }; + 04BDFDD512E6671700899322 /* events */ = { + isa = PBXGroup; + children = ( + 04BDFDD612E6671700899322 /* blank_cursor.h */, + 04BDFDD712E6671700899322 /* default_cursor.h */, + 04BDFDD812E6671700899322 /* scancodes_darwin.h */, + 04BDFDD912E6671700899322 /* scancodes_linux.h */, + 04BDFDDB12E6671700899322 /* scancodes_xfree86.h */, + 04BDFDDC12E6671700899322 /* SDL_clipboardevents.c */, + 04BDFDDD12E6671700899322 /* SDL_clipboardevents_c.h */, + 566CDE8D148F0AC200C5A9BB /* SDL_dropevents_c.h */, + 566CDE8E148F0AC200C5A9BB /* SDL_dropevents.c */, + 04BDFDDE12E6671700899322 /* SDL_events.c */, + 04BDFDDF12E6671700899322 /* SDL_events_c.h */, + 04BDFDE012E6671700899322 /* SDL_gesture.c */, + 04BDFDE112E6671700899322 /* SDL_gesture_c.h */, + 04BDFDE212E6671700899322 /* SDL_keyboard.c */, + 04BDFDE312E6671700899322 /* SDL_keyboard_c.h */, + 04BDFDE412E6671700899322 /* SDL_mouse.c */, + 04BDFDE512E6671700899322 /* SDL_mouse_c.h */, + 04BDFDE612E6671700899322 /* SDL_quit.c */, + 04BDFDE712E6671700899322 /* SDL_sysevents.h */, + 04BDFDE812E6671700899322 /* SDL_touch.c */, + 04BDFDE912E6671700899322 /* SDL_touch_c.h */, + 04BDFDEA12E6671700899322 /* SDL_windowevents.c */, + 04BDFDEB12E6671700899322 /* SDL_windowevents_c.h */, + ); + name = events; + path = ../../src/events; + sourceTree = SOURCE_ROOT; + }; + 04BDFDEC12E6671700899322 /* file */ = { + isa = PBXGroup; + children = ( + 04BDFDED12E6671700899322 /* cocoa */, + 04BDFDF012E6671700899322 /* SDL_rwops.c */, + ); + name = file; + path = ../../src/file; + sourceTree = SOURCE_ROOT; + }; + 04BDFDED12E6671700899322 /* cocoa */ = { + isa = PBXGroup; + children = ( + 04BDFDEE12E6671700899322 /* SDL_rwopsbundlesupport.h */, + 04BDFDEF12E6671700899322 /* SDL_rwopsbundlesupport.m */, + ); + path = cocoa; + sourceTree = ""; + }; + 04BDFDF112E6671700899322 /* haptic */ = { + isa = PBXGroup; + children = ( + 04BDFDF212E6671700899322 /* darwin */, + 04BDFDFA12E6671700899322 /* SDL_haptic.c */, + 04BDFDFB12E6671700899322 /* SDL_haptic_c.h */, + 04BDFDFC12E6671700899322 /* SDL_syshaptic.h */, + ); + name = haptic; + path = ../../src/haptic; + sourceTree = SOURCE_ROOT; + }; + 04BDFDF212E6671700899322 /* darwin */ = { + isa = PBXGroup; + children = ( + 04BDFDF312E6671700899322 /* SDL_syshaptic.c */, + DB89958518A1A5C50092407C /* SDL_syshaptic_c.h */, + ); + path = darwin; + sourceTree = ""; + }; + 04BDFDFF12E6671700899322 /* joystick */ = { + isa = PBXGroup; + children = ( + 04BDFE0612E6671700899322 /* darwin */, + 04BDFE1612E6671700899322 /* SDL_joystick.c */, + 04BDFE1712E6671700899322 /* SDL_joystick_c.h */, + BBFC088A164C6514003E6A99 /* SDL_gamecontroller.c */, + 04BDFE1812E6671700899322 /* SDL_sysjoystick.h */, + ); + name = joystick; + path = ../../src/joystick; + sourceTree = SOURCE_ROOT; + }; + 04BDFE0612E6671700899322 /* darwin */ = { + isa = PBXGroup; + children = ( + 04BDFE0712E6671700899322 /* SDL_sysjoystick.c */, + 04BDFE0812E6671700899322 /* SDL_sysjoystick_c.h */, + ); + path = darwin; + sourceTree = ""; + }; + 04BDFE2F12E6671700899322 /* loadso */ = { + isa = PBXGroup; + children = ( + 04BDFE3212E6671700899322 /* dlopen */, + ); + name = loadso; + path = ../../src/loadso; + sourceTree = SOURCE_ROOT; + }; + 04BDFE3212E6671700899322 /* dlopen */ = { + isa = PBXGroup; + children = ( + 04BDFE3312E6671700899322 /* SDL_sysloadso.c */, + ); + path = dlopen; + sourceTree = ""; + }; + 04BDFE4512E6671700899322 /* power */ = { + isa = PBXGroup; + children = ( + 04BDFE4A12E6671700899322 /* macosx */, + 04BDFE4E12E6671700899322 /* SDL_power.c */, + ); + name = power; + path = ../../src/power; + sourceTree = SOURCE_ROOT; + }; + 04BDFE4A12E6671700899322 /* macosx */ = { + isa = PBXGroup; + children = ( + 04BDFE4B12E6671700899322 /* SDL_syspower.c */, + ); + path = macosx; + sourceTree = ""; + }; + 04BDFE5D12E6671700899322 /* stdlib */ = { + isa = PBXGroup; + children = ( + 04BDFE5E12E6671700899322 /* SDL_getenv.c */, + 04BDFE5F12E6671700899322 /* SDL_iconv.c */, + 04BDFE6012E6671700899322 /* SDL_malloc.c */, + 04BDFE6112E6671700899322 /* SDL_qsort.c */, + 04BDFE6212E6671700899322 /* SDL_stdlib.c */, + 04BDFE6312E6671700899322 /* SDL_string.c */, + ); + name = stdlib; + path = ../../src/stdlib; + sourceTree = SOURCE_ROOT; + }; + 04BDFE6412E6671800899322 /* thread */ = { + isa = PBXGroup; + children = ( + 04BDFE7D12E6671800899322 /* pthread */, + 04BDFE8B12E6671800899322 /* SDL_systhread.h */, + 04BDFE8C12E6671800899322 /* SDL_thread.c */, + 04BDFE8D12E6671800899322 /* SDL_thread_c.h */, + ); + name = thread; + path = ../../src/thread; + sourceTree = SOURCE_ROOT; + }; + 04BDFE7D12E6671800899322 /* pthread */ = { + isa = PBXGroup; + children = ( + 04BDFE7E12E6671800899322 /* SDL_syscond.c */, + 04BDFE7F12E6671800899322 /* SDL_sysmutex.c */, + 04BDFE8012E6671800899322 /* SDL_sysmutex_c.h */, + 04BDFE8112E6671800899322 /* SDL_syssem.c */, + 04BDFE8212E6671800899322 /* SDL_systhread.c */, + 04BDFE8312E6671800899322 /* SDL_systhread_c.h */, + AA0F8490178D5ECC00823F9D /* SDL_systls.c */, + ); + path = pthread; + sourceTree = ""; + }; + 04BDFE9512E6671800899322 /* timer */ = { + isa = PBXGroup; + children = ( + 04BDFEA112E6671800899322 /* unix */, + 04BDFE9F12E6671800899322 /* SDL_timer.c */, + 04BDFEA012E6671800899322 /* SDL_timer_c.h */, + ); + name = timer; + path = ../../src/timer; + sourceTree = SOURCE_ROOT; + }; + 04BDFEA112E6671800899322 /* unix */ = { + isa = PBXGroup; + children = ( + 04BDFEA212E6671800899322 /* SDL_systimer.c */, + ); + path = unix; + sourceTree = ""; + }; + 04BDFEA712E6671800899322 /* video */ = { + isa = PBXGroup; + children = ( + 04BDFEC112E6671800899322 /* cocoa */, + 04BDFEE712E6671800899322 /* dummy */, + 04BDFFB712E6671800899322 /* x11 */, + 04BDFF4E12E6671800899322 /* SDL_blit.c */, + 04BDFF4F12E6671800899322 /* SDL_blit.h */, + 04BDFF5012E6671800899322 /* SDL_blit_0.c */, + 04BDFF5112E6671800899322 /* SDL_blit_1.c */, + 04BDFF5212E6671800899322 /* SDL_blit_A.c */, + 04BDFF5312E6671800899322 /* SDL_blit_auto.c */, + 04BDFF5412E6671800899322 /* SDL_blit_auto.h */, + 04BDFF5512E6671800899322 /* SDL_blit_copy.c */, + 04BDFF5612E6671800899322 /* SDL_blit_copy.h */, + 04BDFF5712E6671800899322 /* SDL_blit_N.c */, + 04BDFF5812E6671800899322 /* SDL_blit_slow.c */, + 04BDFF5912E6671800899322 /* SDL_blit_slow.h */, + 04BDFF5A12E6671800899322 /* SDL_bmp.c */, + 04BDFF5B12E6671800899322 /* SDL_clipboard.c */, + 04BDFF6012E6671800899322 /* SDL_fillrect.c */, + 04BDFF6512E6671800899322 /* SDL_pixels.c */, + 04BDFF6612E6671800899322 /* SDL_pixels_c.h */, + 04BDFF6712E6671800899322 /* SDL_rect.c */, + 04BDFF6F12E6671800899322 /* SDL_RLEaccel.c */, + 04BDFF7012E6671800899322 /* SDL_RLEaccel_c.h */, + 04BDFF7112E6671800899322 /* SDL_shape.c */, + 04BDFF7212E6671800899322 /* SDL_shape_internals.h */, + 04BDFF7312E6671800899322 /* SDL_stretch.c */, + 04BDFF7412E6671800899322 /* SDL_surface.c */, + 04BDFF7512E6671800899322 /* SDL_sysvideo.h */, + 04BDFF7612E6671800899322 /* SDL_video.c */, + ); + name = video; + path = ../../src/video; + sourceTree = SOURCE_ROOT; + }; + 04BDFEC112E6671800899322 /* cocoa */ = { + isa = PBXGroup; + children = ( + 04BDFEC212E6671800899322 /* SDL_cocoaclipboard.h */, + 04BDFEC312E6671800899322 /* SDL_cocoaclipboard.m */, + 04BDFEC412E6671800899322 /* SDL_cocoaevents.h */, + 04BDFEC512E6671800899322 /* SDL_cocoaevents.m */, + 04BDFEC612E6671800899322 /* SDL_cocoakeyboard.h */, + 04BDFEC712E6671800899322 /* SDL_cocoakeyboard.m */, + AABCC38B164063D200AB8930 /* SDL_cocoamessagebox.h */, + AABCC38C164063D200AB8930 /* SDL_cocoamessagebox.m */, + 04BDFEC812E6671800899322 /* SDL_cocoamodes.h */, + 04BDFEC912E6671800899322 /* SDL_cocoamodes.m */, + 04BDFECA12E6671800899322 /* SDL_cocoamouse.h */, + 04BDFECB12E6671800899322 /* SDL_cocoamouse.m */, + D55A1B7F179F262300625D7C /* SDL_cocoamousetap.h */, + D55A1B80179F262300625D7C /* SDL_cocoamousetap.m */, + 04BDFECC12E6671800899322 /* SDL_cocoaopengl.h */, + 04BDFECD12E6671800899322 /* SDL_cocoaopengl.m */, + 04BDFECE12E6671800899322 /* SDL_cocoashape.h */, + 04BDFECF12E6671800899322 /* SDL_cocoashape.m */, + 04BDFED012E6671800899322 /* SDL_cocoavideo.h */, + 04BDFED112E6671800899322 /* SDL_cocoavideo.m */, + 04BDFED212E6671800899322 /* SDL_cocoawindow.h */, + 04BDFED312E6671800899322 /* SDL_cocoawindow.m */, + ); + path = cocoa; + sourceTree = ""; + }; + 04BDFEE712E6671800899322 /* dummy */ = { + isa = PBXGroup; + children = ( + 04BDFEE812E6671800899322 /* SDL_nullevents.c */, + 04BDFEE912E6671800899322 /* SDL_nullevents_c.h */, + 04F7803712FB748500FC43C0 /* SDL_nullframebuffer_c.h */, + 04F7803812FB748500FC43C0 /* SDL_nullframebuffer.c */, + 04BDFEEC12E6671800899322 /* SDL_nullvideo.c */, + 04BDFEED12E6671800899322 /* SDL_nullvideo.h */, + ); + path = dummy; + sourceTree = ""; + }; + 04BDFFB712E6671800899322 /* x11 */ = { + isa = PBXGroup; + children = ( + 04BDFFB812E6671800899322 /* imKStoUCS.c */, + 04BDFFB912E6671800899322 /* imKStoUCS.h */, + 04BDFFBA12E6671800899322 /* SDL_x11clipboard.c */, + 04BDFFBB12E6671800899322 /* SDL_x11clipboard.h */, + 04BDFFBC12E6671800899322 /* SDL_x11dyn.c */, + 04BDFFBD12E6671800899322 /* SDL_x11dyn.h */, + 04BDFFBE12E6671800899322 /* SDL_x11events.c */, + 04BDFFBF12E6671800899322 /* SDL_x11events.h */, + 0442EC5812FE1C60004C9285 /* SDL_x11framebuffer.c */, + 0442EC5912FE1C60004C9285 /* SDL_x11framebuffer.h */, + 04BDFFC212E6671800899322 /* SDL_x11keyboard.c */, + 04BDFFC312E6671800899322 /* SDL_x11keyboard.h */, + AA9E4092163BE51E007A2AD0 /* SDL_x11messagebox.c */, + 04BDFFC412E6671800899322 /* SDL_x11modes.c */, + 04BDFFC512E6671800899322 /* SDL_x11modes.h */, + 04BDFFC612E6671800899322 /* SDL_x11mouse.c */, + 04BDFFC712E6671800899322 /* SDL_x11mouse.h */, + 04BDFFC812E6671800899322 /* SDL_x11opengl.c */, + 04BDFFC912E6671800899322 /* SDL_x11opengl.h */, + 04BDFFCA12E6671800899322 /* SDL_x11opengles.c */, + 04BDFFCB12E6671800899322 /* SDL_x11opengles.h */, + 04BDFFCE12E6671800899322 /* SDL_x11shape.c */, + 04BDFFCF12E6671800899322 /* SDL_x11shape.h */, + 04BDFFD012E6671800899322 /* SDL_x11sym.h */, + 04BDFFD112E6671800899322 /* SDL_x11touch.c */, + 04BDFFD212E6671800899322 /* SDL_x11touch.h */, + 04BDFFD312E6671800899322 /* SDL_x11video.c */, + 04BDFFD412E6671800899322 /* SDL_x11video.h */, + 04BDFFD512E6671800899322 /* SDL_x11window.c */, + 04BDFFD612E6671800899322 /* SDL_x11window.h */, + AA628ACF159367F2005138DD /* SDL_x11xinput2.c */, + AA628AD0159367F2005138DD /* SDL_x11xinput2.h */, + ); + path = x11; + sourceTree = ""; + }; + 0867D691FE84028FC02AAC07 /* SDLFramework */ = { + isa = PBXGroup; + children = ( + F5A2EF3900C6A39A01000001 /* BUGS.txt */, + F59C70FC00D5CB5801000001 /* pkg-support */, + 0153844A006D81B07F000001 /* Public Headers */, + 08FB77ACFE841707C02AAC07 /* Library Source */, + 034768DDFF38A45A11DB9C8B /* Products */, + BECDF66B0761BA81005FE872 /* Info-Framework.plist */, + BEC562FE0761C0E800A33029 /* Linked Frameworks */, + ); + comments = "To build Universal Binaries, we have experimented with a variety of different options.\nThe complication is that we must retain compatibility with at least 10.2. \nThe Universal Binary defaults only work for > 10.3.9\n\nSo far, we have found:\ngcc 4.0.0 with Xcode 2.1 always links against libgcc_s. gcc 4.0.1 from Xcode 2.2 fixes this problem.\n\nBut gcc 4.0 will not work with < 10.3.9 because we continue to get an undefined symbol to _fprintf$LDBL128.\nSo we must use gcc 3.3 on PPC to accomplish 10.2 support. (But 4.0 is required for i386.)\n\nSetting the deployment target to 10.4 will disable prebinding, so for PPC, we set it less than 10.4 to preserve prebinding for legacy support.\n\nSetting the PPC SDKROOT to /Developers/SDKs/MacOSX10.2.8.sdk will link to 63.0.0 libSystem.B.dylib. Leaving it at current or 10.4u links to 88.1.2. However, as long as we are using gcc 3.3, it doesn't seem to matter as testing has demonstrated both will run. We have decided not to invoke the 10.2.8 SDK because it is not a default installed component with Xcode which will probably cause most people problems. However, rather than deleting the SDKROOT_ppc entry entirely, we have mapped it to 10.4u in case we decide we need to change this setting.\n\nTo use Altivec or SSE, we needed architecture specific flags:\nOTHER_CFLAGS_ppc\nOTHER_CFLAGS_i386\nOTHER_CFLAGS=$(OTHER_CFLAGS_($CURRENT_ARCH))\n\nThe general OTHER_CFLAGS needed to be manually mapped to architecture specific options because Xcode didn't do this automatically for us.\n\n\n"; + indentWidth = 4; + name = SDLFramework; + sourceTree = ""; + tabWidth = 4; + usesTabs = 0; + }; + 089C1665FE841158C02AAC07 /* Resources */ = { + isa = PBXGroup; + children = ( + ); + name = Resources; + sourceTree = ""; + }; + 08FB77ACFE841707C02AAC07 /* Library Source */ = { + isa = PBXGroup; + children = ( + 04BDFD7312E6671700899322 /* atomic */, + 04BDFD7612E6671700899322 /* audio */, + 04BDFDD312E6671700899322 /* cpuinfo */, + 56A6701C1856549B0007D20F /* dynapi */, + 04BDFDD512E6671700899322 /* events */, + 567E2F1F17C44BBB005F1892 /* filesystem */, + 04BDFDEC12E6671700899322 /* file */, + 04BDFDF112E6671700899322 /* haptic */, + 04BDFDFF12E6671700899322 /* joystick */, + 04BDFE2F12E6671700899322 /* loadso */, + 04BDFE4512E6671700899322 /* power */, + 041B2C9712FA0D680087D585 /* render */, + 04BDFE5D12E6671700899322 /* stdlib */, + 04BDFE6412E6671800899322 /* thread */, + 04BDFE9512E6671800899322 /* timer */, + 04BDFEA712E6671800899322 /* video */, + 56A670081856545C0007D20F /* SDL_internal.h */, + 04BDFE5512E6671700899322 /* SDL_assert_c.h */, + 04BDFE5612E6671700899322 /* SDL_assert.c */, + 04BDFE5812E6671700899322 /* SDL_error_c.h */, + 04BDFE5912E6671700899322 /* SDL_error.c */, + 0442EC5E12FE1C75004C9285 /* SDL_hints.c */, + 04BAC0C71300C2160055DE28 /* SDL_log.c */, + 04BDFE5C12E6671700899322 /* SDL.c */, + ); + name = "Library Source"; + sourceTree = ""; + }; + 567E2F1F17C44BBB005F1892 /* filesystem */ = { + isa = PBXGroup; + children = ( + 567E2F1B17C44BB2005F1892 /* SDL_sysfilesystem.m */, + ); + name = filesystem; + sourceTree = ""; + }; + 56A6701C1856549B0007D20F /* dynapi */ = { + isa = PBXGroup; + children = ( + 56A6701D185654B40007D20F /* SDL_dynapi_procs.h */, + 56A6701E185654B40007D20F /* SDL_dynapi.c */, + 56A6701F185654B40007D20F /* SDL_dynapi.h */, + 56A67020185654B40007D20F /* SDL_dynapi_overrides.h */, + ); + name = dynapi; + sourceTree = ""; + }; + BEC562FE0761C0E800A33029 /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + FA73671C19A540EF004122E4 /* CoreVideo.framework */, + 00D0D08310675DD9004B05EF /* CoreFoundation.framework */, + 007317C10858E15000B2BC32 /* Carbon.framework */, + 0073179B0858DECD00B2BC32 /* AudioToolbox.framework */, + 0073179C0858DECD00B2BC32 /* AudioUnit.framework */, + 0073179D0858DECD00B2BC32 /* Cocoa.framework */, + 0073179E0858DECD00B2BC32 /* CoreAudio.framework */, + 0073179F0858DECD00B2BC32 /* IOKit.framework */, + 00CFA89C106B4BA100758660 /* ForceFeedback.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + F59C70FC00D5CB5801000001 /* pkg-support */ = { + isa = PBXGroup; + children = ( + F59C710100D5CB5801000001 /* resources */, + F59C710600D5CB5801000001 /* SDL.info */, + ); + path = "pkg-support"; + sourceTree = SOURCE_ROOT; + }; + F59C710100D5CB5801000001 /* resources */ = { + isa = PBXGroup; + children = ( + 00794D3F09D0C461003FC8A1 /* License.txt */, + F59C710300D5CB5801000001 /* ReadMe.txt */, + ); + path = resources; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + BECDF5FF0761BA81005FE872 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + AA7557FA1595D4D800BBD41B /* begin_code.h in Headers */, + AA7557FC1595D4D800BBD41B /* close_code.h in Headers */, + AA75585E1595D4D800BBD41B /* SDL.h in Headers */, + AA7557FE1595D4D800BBD41B /* SDL_assert.h in Headers */, + AA7558001595D4D800BBD41B /* SDL_atomic.h in Headers */, + AA7558021595D4D800BBD41B /* SDL_audio.h in Headers */, + AADA5B8716CCAB3000107CF7 /* SDL_bits.h in Headers */, + AA7558041595D4D800BBD41B /* SDL_blendmode.h in Headers */, + AA7558061595D4D800BBD41B /* SDL_clipboard.h in Headers */, + AA7558081595D4D800BBD41B /* SDL_config_macosx.h in Headers */, + AA75580A1595D4D800BBD41B /* SDL_config.h in Headers */, + 56A670091856545C0007D20F /* SDL_internal.h in Headers */, + AA75580C1595D4D800BBD41B /* SDL_copying.h in Headers */, + AA75580E1595D4D800BBD41B /* SDL_cpuinfo.h in Headers */, + AA7558101595D4D800BBD41B /* SDL_endian.h in Headers */, + AA7558121595D4D800BBD41B /* SDL_error.h in Headers */, + AA7558141595D4D800BBD41B /* SDL_events.h in Headers */, + 567E2F2117C44C35005F1892 /* SDL_filesystem.h in Headers */, + A77E6EB4167AB0A90010E40B /* SDL_gamecontroller.h in Headers */, + AA7558161595D4D800BBD41B /* SDL_gesture.h in Headers */, + AA7558181595D4D800BBD41B /* SDL_haptic.h in Headers */, + AA75581A1595D4D800BBD41B /* SDL_hints.h in Headers */, + AA75581E1595D4D800BBD41B /* SDL_joystick.h in Headers */, + AA7558201595D4D800BBD41B /* SDL_keyboard.h in Headers */, + AA7558221595D4D800BBD41B /* SDL_keycode.h in Headers */, + AA7558241595D4D800BBD41B /* SDL_loadso.h in Headers */, + AA7558261595D4D800BBD41B /* SDL_log.h in Headers */, + AA7558281595D4D800BBD41B /* SDL_main.h in Headers */, + AA9FF95A1637CBF9000DF050 /* SDL_messagebox.h in Headers */, + AA75582A1595D4D800BBD41B /* SDL_mouse.h in Headers */, + AA75582C1595D4D800BBD41B /* SDL_mutex.h in Headers */, + AA75582E1595D4D800BBD41B /* SDL_name.h in Headers */, + AA7558301595D4D800BBD41B /* SDL_opengl.h in Headers */, + AAC070F9195606770073DCDF /* SDL_opengl_glext.h in Headers */, + AA7558321595D4D800BBD41B /* SDL_opengles.h in Headers */, + AA7558341595D4D800BBD41B /* SDL_opengles2.h in Headers */, + AAC070FC195606770073DCDF /* SDL_opengles2_gl2.h in Headers */, + AAC070FF195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */, + AAC07102195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */, + AAC07105195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */, + AA7558361595D4D800BBD41B /* SDL_pixels.h in Headers */, + AA7558381595D4D800BBD41B /* SDL_platform.h in Headers */, + AA75583A1595D4D800BBD41B /* SDL_power.h in Headers */, + AA75583C1595D4D800BBD41B /* SDL_quit.h in Headers */, + AA75583E1595D4D800BBD41B /* SDL_rect.h in Headers */, + AA7558401595D4D800BBD41B /* SDL_render.h in Headers */, + AA7558421595D4D800BBD41B /* SDL_revision.h in Headers */, + AA7558441595D4D800BBD41B /* SDL_rwops.h in Headers */, + AA7558461595D4D800BBD41B /* SDL_scancode.h in Headers */, + AA7558481595D4D800BBD41B /* SDL_shape.h in Headers */, + AA75584A1595D4D800BBD41B /* SDL_stdinc.h in Headers */, + AA75584C1595D4D800BBD41B /* SDL_surface.h in Headers */, + AA75584E1595D4D800BBD41B /* SDL_system.h in Headers */, + AA7558501595D4D800BBD41B /* SDL_syswm.h in Headers */, + AA7558521595D4D800BBD41B /* SDL_thread.h in Headers */, + AA7558541595D4D800BBD41B /* SDL_timer.h in Headers */, + AA7558561595D4D800BBD41B /* SDL_touch.h in Headers */, + AA7558581595D4D800BBD41B /* SDL_types.h in Headers */, + AA75585A1595D4D800BBD41B /* SDL_version.h in Headers */, + AA75585C1595D4D800BBD41B /* SDL_video.h in Headers */, + 04BD000912E6671800899322 /* SDL_diskaudio.h in Headers */, + 04BD001112E6671800899322 /* SDL_dummyaudio.h in Headers */, + 04BD001912E6671800899322 /* SDL_coreaudio.h in Headers */, + 04BD002712E6671800899322 /* SDL_audio_c.h in Headers */, + 04BD002A12E6671800899322 /* SDL_audiodev_c.h in Headers */, + 04BD002B12E6671800899322 /* SDL_audiomem.h in Headers */, + 04BD003412E6671800899322 /* SDL_sysaudio.h in Headers */, + 04BD003612E6671800899322 /* SDL_wave.h in Headers */, + 04BD004212E6671800899322 /* blank_cursor.h in Headers */, + 04BD004312E6671800899322 /* default_cursor.h in Headers */, + 04BD004412E6671800899322 /* scancodes_darwin.h in Headers */, + 04BD004512E6671800899322 /* scancodes_linux.h in Headers */, + 04BD004712E6671800899322 /* scancodes_xfree86.h in Headers */, + 04BD004912E6671800899322 /* SDL_clipboardevents_c.h in Headers */, + 56A6702A185654B40007D20F /* SDL_dynapi_overrides.h in Headers */, + 04BD004B12E6671800899322 /* SDL_events_c.h in Headers */, + 04BD004D12E6671800899322 /* SDL_gesture_c.h in Headers */, + 04BD004F12E6671800899322 /* SDL_keyboard_c.h in Headers */, + 04BD005112E6671800899322 /* SDL_mouse_c.h in Headers */, + 04BD005312E6671800899322 /* SDL_sysevents.h in Headers */, + 04BD005512E6671800899322 /* SDL_touch_c.h in Headers */, + 04BD005712E6671800899322 /* SDL_windowevents_c.h in Headers */, + 04BD005812E6671800899322 /* SDL_rwopsbundlesupport.h in Headers */, + 04BD006012E6671800899322 /* SDL_haptic_c.h in Headers */, + 04BD006112E6671800899322 /* SDL_syshaptic.h in Headers */, + 04BD006712E6671800899322 /* SDL_sysjoystick_c.h in Headers */, + 04BD007112E6671800899322 /* SDL_joystick_c.h in Headers */, + 04BD007212E6671800899322 /* SDL_sysjoystick.h in Headers */, + 04BD009B12E6671800899322 /* SDL_assert_c.h in Headers */, + 04BD009E12E6671800899322 /* SDL_error_c.h in Headers */, + 04BD00BF12E6671800899322 /* SDL_sysmutex_c.h in Headers */, + 04BD00C212E6671800899322 /* SDL_systhread_c.h in Headers */, + 04BD00C912E6671800899322 /* SDL_systhread.h in Headers */, + 04BD00CB12E6671800899322 /* SDL_thread_c.h in Headers */, + 04BD00D812E6671800899322 /* SDL_timer_c.h in Headers */, + 04BD00F312E6671800899322 /* SDL_cocoaclipboard.h in Headers */, + 04BD00F512E6671800899322 /* SDL_cocoaevents.h in Headers */, + 04BD00F712E6671800899322 /* SDL_cocoakeyboard.h in Headers */, + 04BD00F912E6671800899322 /* SDL_cocoamodes.h in Headers */, + 04BD00FB12E6671800899322 /* SDL_cocoamouse.h in Headers */, + 04BD00FD12E6671800899322 /* SDL_cocoaopengl.h in Headers */, + 04BD00FF12E6671800899322 /* SDL_cocoashape.h in Headers */, + 04BD010112E6671800899322 /* SDL_cocoavideo.h in Headers */, + 04BD010312E6671800899322 /* SDL_cocoawindow.h in Headers */, + 04BD011812E6671800899322 /* SDL_nullevents_c.h in Headers */, + 04BD011C12E6671800899322 /* SDL_nullvideo.h in Headers */, + 04BD017612E6671800899322 /* SDL_blit.h in Headers */, + 04BD017B12E6671800899322 /* SDL_blit_auto.h in Headers */, + 04BD017D12E6671800899322 /* SDL_blit_copy.h in Headers */, + 04BD018012E6671800899322 /* SDL_blit_slow.h in Headers */, + 04BD018D12E6671800899322 /* SDL_pixels_c.h in Headers */, + 04BD019712E6671800899322 /* SDL_RLEaccel_c.h in Headers */, + 04BD019912E6671800899322 /* SDL_shape_internals.h in Headers */, + 04BD019C12E6671800899322 /* SDL_sysvideo.h in Headers */, + 04BD01DC12E6671800899322 /* imKStoUCS.h in Headers */, + 04BD01DE12E6671800899322 /* SDL_x11clipboard.h in Headers */, + 04BD01E012E6671800899322 /* SDL_x11dyn.h in Headers */, + 04BD01E212E6671800899322 /* SDL_x11events.h in Headers */, + 04BD01E612E6671800899322 /* SDL_x11keyboard.h in Headers */, + 04BD01E812E6671800899322 /* SDL_x11modes.h in Headers */, + 04BD01EA12E6671800899322 /* SDL_x11mouse.h in Headers */, + 04BD01EC12E6671800899322 /* SDL_x11opengl.h in Headers */, + 04BD01EE12E6671800899322 /* SDL_x11opengles.h in Headers */, + 04BD01F212E6671800899322 /* SDL_x11shape.h in Headers */, + 04BD01F312E6671800899322 /* SDL_x11sym.h in Headers */, + 56A67021185654B40007D20F /* SDL_dynapi_procs.h in Headers */, + 04BD01F512E6671800899322 /* SDL_x11touch.h in Headers */, + 04BD01F712E6671800899322 /* SDL_x11video.h in Headers */, + 04BD01F912E6671800899322 /* SDL_x11window.h in Headers */, + 041B2CA612FA0D680087D585 /* SDL_sysrender.h in Headers */, + 04409B9112FA97ED00FB9AA8 /* mmx.h in Headers */, + 04409B9312FA97ED00FB9AA8 /* SDL_yuv_sw_c.h in Headers */, + 04F7803912FB748500FC43C0 /* SDL_nullframebuffer_c.h in Headers */, + 04F7804A12FB74A200FC43C0 /* SDL_blendfillrect.h in Headers */, + 04F7804C12FB74A200FC43C0 /* SDL_blendline.h in Headers */, + 04F7804E12FB74A200FC43C0 /* SDL_blendpoint.h in Headers */, + 56A67027185654B40007D20F /* SDL_dynapi.h in Headers */, + 04F7804F12FB74A200FC43C0 /* SDL_draw.h in Headers */, + 04F7805112FB74A200FC43C0 /* SDL_drawline.h in Headers */, + 04F7805312FB74A200FC43C0 /* SDL_drawpoint.h in Headers */, + 0442EC1C12FE1BCB004C9285 /* SDL_render_sw_c.h in Headers */, + 0442EC5B12FE1C60004C9285 /* SDL_x11framebuffer.h in Headers */, + 04043BBB12FEB1BE0076DB1F /* SDL_glfuncs.h in Headers */, + 0435673F1303160F00BA5428 /* SDL_shaders_gl.h in Headers */, + 566CDE8F148F0AC200C5A9BB /* SDL_dropevents_c.h in Headers */, + AA628ACC159367B7005138DD /* SDL_rotate.h in Headers */, + AA628AD3159367F2005138DD /* SDL_x11xinput2.h in Headers */, + AABCC38D164063D200AB8930 /* SDL_cocoamessagebox.h in Headers */, + D55A1B81179F262300625D7C /* SDL_cocoamousetap.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF66E0761BA81005FE872 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DB0F490B17CA57ED008798C5 /* SDL_filesystem.h in Headers */, + AA7557FB1595D4D800BBD41B /* begin_code.h in Headers */, + AA7557FD1595D4D800BBD41B /* close_code.h in Headers */, + AA75585F1595D4D800BBD41B /* SDL.h in Headers */, + AA7557FF1595D4D800BBD41B /* SDL_assert.h in Headers */, + AA7558011595D4D800BBD41B /* SDL_atomic.h in Headers */, + AA7558031595D4D800BBD41B /* SDL_audio.h in Headers */, + AADA5B8816CCAB3000107CF7 /* SDL_bits.h in Headers */, + AA7558051595D4D800BBD41B /* SDL_blendmode.h in Headers */, + AA7558071595D4D800BBD41B /* SDL_clipboard.h in Headers */, + AA75580B1595D4D800BBD41B /* SDL_config.h in Headers */, + AA7558091595D4D800BBD41B /* SDL_config_macosx.h in Headers */, + AA75580D1595D4D800BBD41B /* SDL_copying.h in Headers */, + AA75580F1595D4D800BBD41B /* SDL_cpuinfo.h in Headers */, + AA7558111595D4D800BBD41B /* SDL_endian.h in Headers */, + AA7558131595D4D800BBD41B /* SDL_error.h in Headers */, + AA7558151595D4D800BBD41B /* SDL_events.h in Headers */, + A77E6EB5167AB0A90010E40B /* SDL_gamecontroller.h in Headers */, + AA7558171595D4D800BBD41B /* SDL_gesture.h in Headers */, + AA7558191595D4D800BBD41B /* SDL_haptic.h in Headers */, + AA75581B1595D4D800BBD41B /* SDL_hints.h in Headers */, + AA75581F1595D4D800BBD41B /* SDL_joystick.h in Headers */, + AA7558211595D4D800BBD41B /* SDL_keyboard.h in Headers */, + AA7558231595D4D800BBD41B /* SDL_keycode.h in Headers */, + AA7558251595D4D800BBD41B /* SDL_loadso.h in Headers */, + AA7558271595D4D800BBD41B /* SDL_log.h in Headers */, + AA7558291595D4D800BBD41B /* SDL_main.h in Headers */, + AAC07106195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */, + DB0F489417C400ED008798C5 /* SDL_messagebox.h in Headers */, + AA75582B1595D4D800BBD41B /* SDL_mouse.h in Headers */, + AA75582D1595D4D800BBD41B /* SDL_mutex.h in Headers */, + AA75582F1595D4D800BBD41B /* SDL_name.h in Headers */, + AA7558311595D4D800BBD41B /* SDL_opengl.h in Headers */, + AA7558331595D4D800BBD41B /* SDL_opengles.h in Headers */, + 56A67028185654B40007D20F /* SDL_dynapi.h in Headers */, + AA7558351595D4D800BBD41B /* SDL_opengles2.h in Headers */, + AA7558371595D4D800BBD41B /* SDL_pixels.h in Headers */, + AA7558391595D4D800BBD41B /* SDL_platform.h in Headers */, + AA75583B1595D4D800BBD41B /* SDL_power.h in Headers */, + AA75583D1595D4D800BBD41B /* SDL_quit.h in Headers */, + AA75583F1595D4D800BBD41B /* SDL_rect.h in Headers */, + AA7558411595D4D800BBD41B /* SDL_render.h in Headers */, + AA7558431595D4D800BBD41B /* SDL_revision.h in Headers */, + AA7558451595D4D800BBD41B /* SDL_rwops.h in Headers */, + AA7558471595D4D800BBD41B /* SDL_scancode.h in Headers */, + AA7558491595D4D800BBD41B /* SDL_shape.h in Headers */, + 56A6702B185654B40007D20F /* SDL_dynapi_overrides.h in Headers */, + AA75584B1595D4D800BBD41B /* SDL_stdinc.h in Headers */, + AA75584D1595D4D800BBD41B /* SDL_surface.h in Headers */, + AA75584F1595D4D800BBD41B /* SDL_system.h in Headers */, + AA7558511595D4D800BBD41B /* SDL_syswm.h in Headers */, + AAC070FA195606770073DCDF /* SDL_opengl_glext.h in Headers */, + AA7558531595D4D800BBD41B /* SDL_thread.h in Headers */, + AA7558551595D4D800BBD41B /* SDL_timer.h in Headers */, + AA7558571595D4D800BBD41B /* SDL_touch.h in Headers */, + AA7558591595D4D800BBD41B /* SDL_types.h in Headers */, + AA75585B1595D4D800BBD41B /* SDL_version.h in Headers */, + AA75585D1595D4D800BBD41B /* SDL_video.h in Headers */, + 04BD022512E6671800899322 /* SDL_diskaudio.h in Headers */, + 56A6700A1856545C0007D20F /* SDL_internal.h in Headers */, + 04BD022D12E6671800899322 /* SDL_dummyaudio.h in Headers */, + 04BD023512E6671800899322 /* SDL_coreaudio.h in Headers */, + 04BD024312E6671800899322 /* SDL_audio_c.h in Headers */, + 04BD024612E6671800899322 /* SDL_audiodev_c.h in Headers */, + AAC070FD195606770073DCDF /* SDL_opengles2_gl2.h in Headers */, + 04BD024712E6671800899322 /* SDL_audiomem.h in Headers */, + 04BD025012E6671800899322 /* SDL_sysaudio.h in Headers */, + 04BD025212E6671800899322 /* SDL_wave.h in Headers */, + 04BD025D12E6671800899322 /* blank_cursor.h in Headers */, + 04BD025E12E6671800899322 /* default_cursor.h in Headers */, + 04BD025F12E6671800899322 /* scancodes_darwin.h in Headers */, + 04BD026012E6671800899322 /* scancodes_linux.h in Headers */, + 04BD026212E6671800899322 /* scancodes_xfree86.h in Headers */, + 04BD026412E6671800899322 /* SDL_clipboardevents_c.h in Headers */, + 04BD026612E6671800899322 /* SDL_events_c.h in Headers */, + 56A67022185654B40007D20F /* SDL_dynapi_procs.h in Headers */, + 04BD026812E6671800899322 /* SDL_gesture_c.h in Headers */, + 04BD026A12E6671800899322 /* SDL_keyboard_c.h in Headers */, + 04BD026C12E6671800899322 /* SDL_mouse_c.h in Headers */, + 04BD026E12E6671800899322 /* SDL_sysevents.h in Headers */, + 04BD027012E6671800899322 /* SDL_touch_c.h in Headers */, + 04BD027212E6671800899322 /* SDL_windowevents_c.h in Headers */, + 04BD027312E6671800899322 /* SDL_rwopsbundlesupport.h in Headers */, + 04BD027B12E6671800899322 /* SDL_haptic_c.h in Headers */, + 04BD027C12E6671800899322 /* SDL_syshaptic.h in Headers */, + 04BD028212E6671800899322 /* SDL_sysjoystick_c.h in Headers */, + 04BD028C12E6671800899322 /* SDL_joystick_c.h in Headers */, + 04BD028D12E6671800899322 /* SDL_sysjoystick.h in Headers */, + 04BD02B512E6671800899322 /* SDL_assert_c.h in Headers */, + 04BD02B812E6671800899322 /* SDL_error_c.h in Headers */, + 04BD02D912E6671800899322 /* SDL_sysmutex_c.h in Headers */, + 04BD02DC12E6671800899322 /* SDL_systhread_c.h in Headers */, + 04BD02E312E6671800899322 /* SDL_systhread.h in Headers */, + 04BD02E512E6671800899322 /* SDL_thread_c.h in Headers */, + 04BD02F212E6671800899322 /* SDL_timer_c.h in Headers */, + 04BD030D12E6671800899322 /* SDL_cocoaclipboard.h in Headers */, + 04BD030F12E6671800899322 /* SDL_cocoaevents.h in Headers */, + 04BD031112E6671800899322 /* SDL_cocoakeyboard.h in Headers */, + 04BD031312E6671800899322 /* SDL_cocoamodes.h in Headers */, + 04BD031512E6671800899322 /* SDL_cocoamouse.h in Headers */, + 04BD031712E6671800899322 /* SDL_cocoaopengl.h in Headers */, + 04BD031912E6671800899322 /* SDL_cocoashape.h in Headers */, + AAC07103195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */, + 04BD031B12E6671800899322 /* SDL_cocoavideo.h in Headers */, + 04BD031D12E6671800899322 /* SDL_cocoawindow.h in Headers */, + 04BD033212E6671800899322 /* SDL_nullevents_c.h in Headers */, + 04BD033612E6671800899322 /* SDL_nullvideo.h in Headers */, + 04BD039012E6671800899322 /* SDL_blit.h in Headers */, + 04BD039512E6671800899322 /* SDL_blit_auto.h in Headers */, + 04BD039712E6671800899322 /* SDL_blit_copy.h in Headers */, + 04BD039A12E6671800899322 /* SDL_blit_slow.h in Headers */, + 04BD03A712E6671800899322 /* SDL_pixels_c.h in Headers */, + 04BD03B112E6671800899322 /* SDL_RLEaccel_c.h in Headers */, + 04BD03B312E6671800899322 /* SDL_shape_internals.h in Headers */, + 04BD03B612E6671800899322 /* SDL_sysvideo.h in Headers */, + 04BD03F412E6671800899322 /* imKStoUCS.h in Headers */, + 04BD03F612E6671800899322 /* SDL_x11clipboard.h in Headers */, + 04BD03F812E6671800899322 /* SDL_x11dyn.h in Headers */, + 04BD03FA12E6671800899322 /* SDL_x11events.h in Headers */, + 04BD03FE12E6671800899322 /* SDL_x11keyboard.h in Headers */, + 04BD040012E6671800899322 /* SDL_x11modes.h in Headers */, + 04BD040212E6671800899322 /* SDL_x11mouse.h in Headers */, + 04BD040412E6671800899322 /* SDL_x11opengl.h in Headers */, + 04BD040612E6671800899322 /* SDL_x11opengles.h in Headers */, + 04BD040A12E6671800899322 /* SDL_x11shape.h in Headers */, + 04BD040B12E6671800899322 /* SDL_x11sym.h in Headers */, + 04BD040D12E6671800899322 /* SDL_x11touch.h in Headers */, + 04BD040F12E6671800899322 /* SDL_x11video.h in Headers */, + AAC07100195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */, + 04BD041112E6671800899322 /* SDL_x11window.h in Headers */, + 041B2CAC12FA0D680087D585 /* SDL_sysrender.h in Headers */, + 04409B9512FA97ED00FB9AA8 /* mmx.h in Headers */, + 04409B9712FA97ED00FB9AA8 /* SDL_yuv_sw_c.h in Headers */, + 04F7803B12FB748500FC43C0 /* SDL_nullframebuffer_c.h in Headers */, + 04F7805612FB74A200FC43C0 /* SDL_blendfillrect.h in Headers */, + 04F7805812FB74A200FC43C0 /* SDL_blendline.h in Headers */, + 04F7805A12FB74A200FC43C0 /* SDL_blendpoint.h in Headers */, + 04F7805B12FB74A200FC43C0 /* SDL_draw.h in Headers */, + 04F7805D12FB74A200FC43C0 /* SDL_drawline.h in Headers */, + 04F7805F12FB74A200FC43C0 /* SDL_drawpoint.h in Headers */, + 0442EC1E12FE1BCB004C9285 /* SDL_render_sw_c.h in Headers */, + 0442EC5D12FE1C60004C9285 /* SDL_x11framebuffer.h in Headers */, + 04043BBC12FEB1BE0076DB1F /* SDL_glfuncs.h in Headers */, + 043567411303160F00BA5428 /* SDL_shaders_gl.h in Headers */, + AA628ACD159367B7005138DD /* SDL_rotate.h in Headers */, + AA628AD4159367F2005138DD /* SDL_x11xinput2.h in Headers */, + AABCC38E164063D200AB8930 /* SDL_cocoamessagebox.h in Headers */, + D55A1B85179F278E00625D7C /* SDL_cocoamousetap.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB313F7317554B71006C0E22 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DB0F490C17CA57ED008798C5 /* SDL_filesystem.h in Headers */, + DB313FC817554B71006C0E22 /* begin_code.h in Headers */, + DB313FC917554B71006C0E22 /* close_code.h in Headers */, + DB313FF917554B71006C0E22 /* SDL.h in Headers */, + DB313FCA17554B71006C0E22 /* SDL_assert.h in Headers */, + DB313FCB17554B71006C0E22 /* SDL_atomic.h in Headers */, + DB313FCC17554B71006C0E22 /* SDL_audio.h in Headers */, + DB313FFC17554B71006C0E22 /* SDL_bits.h in Headers */, + DB313FCD17554B71006C0E22 /* SDL_blendmode.h in Headers */, + DB313FCE17554B71006C0E22 /* SDL_clipboard.h in Headers */, + DB313FD017554B71006C0E22 /* SDL_config.h in Headers */, + DB313FCF17554B71006C0E22 /* SDL_config_macosx.h in Headers */, + DB313FD117554B71006C0E22 /* SDL_copying.h in Headers */, + DB313FD217554B71006C0E22 /* SDL_cpuinfo.h in Headers */, + DB313FD317554B71006C0E22 /* SDL_endian.h in Headers */, + DB313FD417554B71006C0E22 /* SDL_error.h in Headers */, + DB313FD517554B71006C0E22 /* SDL_events.h in Headers */, + DB313FFB17554B71006C0E22 /* SDL_gamecontroller.h in Headers */, + DB313FD617554B71006C0E22 /* SDL_gesture.h in Headers */, + DB313FD717554B71006C0E22 /* SDL_haptic.h in Headers */, + DB313FD817554B71006C0E22 /* SDL_hints.h in Headers */, + DB313FD917554B71006C0E22 /* SDL_joystick.h in Headers */, + DB313FDA17554B71006C0E22 /* SDL_keyboard.h in Headers */, + DB313FDB17554B71006C0E22 /* SDL_keycode.h in Headers */, + DB313FDC17554B71006C0E22 /* SDL_loadso.h in Headers */, + DB313FDD17554B71006C0E22 /* SDL_log.h in Headers */, + DB313FDE17554B71006C0E22 /* SDL_main.h in Headers */, + AAC07107195606770073DCDF /* SDL_opengles2_khrplatform.h in Headers */, + DB0F489317C400E6008798C5 /* SDL_messagebox.h in Headers */, + DB313FDF17554B71006C0E22 /* SDL_mouse.h in Headers */, + DB313FE017554B71006C0E22 /* SDL_mutex.h in Headers */, + DB313FE117554B71006C0E22 /* SDL_name.h in Headers */, + DB313FE217554B71006C0E22 /* SDL_opengl.h in Headers */, + DB313FE317554B71006C0E22 /* SDL_opengles.h in Headers */, + 56A67029185654B40007D20F /* SDL_dynapi.h in Headers */, + DB313FE417554B71006C0E22 /* SDL_opengles2.h in Headers */, + DB313FE517554B71006C0E22 /* SDL_pixels.h in Headers */, + DB313FE617554B71006C0E22 /* SDL_platform.h in Headers */, + DB313FE717554B71006C0E22 /* SDL_power.h in Headers */, + DB313FE817554B71006C0E22 /* SDL_quit.h in Headers */, + DB313FE917554B71006C0E22 /* SDL_rect.h in Headers */, + DB313FEA17554B71006C0E22 /* SDL_render.h in Headers */, + DB313FEB17554B71006C0E22 /* SDL_revision.h in Headers */, + DB313FEC17554B71006C0E22 /* SDL_rwops.h in Headers */, + DB313FED17554B71006C0E22 /* SDL_scancode.h in Headers */, + DB313FEE17554B71006C0E22 /* SDL_shape.h in Headers */, + 56A6702C185654B40007D20F /* SDL_dynapi_overrides.h in Headers */, + DB313FEF17554B71006C0E22 /* SDL_stdinc.h in Headers */, + DB313FF017554B71006C0E22 /* SDL_surface.h in Headers */, + DB313FF117554B71006C0E22 /* SDL_system.h in Headers */, + DB313FF217554B71006C0E22 /* SDL_syswm.h in Headers */, + AAC070FB195606770073DCDF /* SDL_opengl_glext.h in Headers */, + DB313FF317554B71006C0E22 /* SDL_thread.h in Headers */, + DB313FF417554B71006C0E22 /* SDL_timer.h in Headers */, + DB313FF517554B71006C0E22 /* SDL_touch.h in Headers */, + DB313FF617554B71006C0E22 /* SDL_types.h in Headers */, + DB313FF717554B71006C0E22 /* SDL_version.h in Headers */, + DB313FF817554B71006C0E22 /* SDL_video.h in Headers */, + DB313F7417554B71006C0E22 /* SDL_diskaudio.h in Headers */, + 56A6700B1856545C0007D20F /* SDL_internal.h in Headers */, + DB313F7517554B71006C0E22 /* SDL_dummyaudio.h in Headers */, + DB313F7617554B71006C0E22 /* SDL_coreaudio.h in Headers */, + DB313F7717554B71006C0E22 /* SDL_audio_c.h in Headers */, + DB313F7817554B71006C0E22 /* SDL_audiodev_c.h in Headers */, + AAC070FE195606770073DCDF /* SDL_opengles2_gl2.h in Headers */, + DB313F7917554B71006C0E22 /* SDL_audiomem.h in Headers */, + DB313F7A17554B71006C0E22 /* SDL_sysaudio.h in Headers */, + DB313F7B17554B71006C0E22 /* SDL_wave.h in Headers */, + DB313F7C17554B71006C0E22 /* blank_cursor.h in Headers */, + DB313F7D17554B71006C0E22 /* default_cursor.h in Headers */, + DB313F7E17554B71006C0E22 /* scancodes_darwin.h in Headers */, + DB313F7F17554B71006C0E22 /* scancodes_linux.h in Headers */, + DB313F8017554B71006C0E22 /* scancodes_xfree86.h in Headers */, + DB313F8117554B71006C0E22 /* SDL_clipboardevents_c.h in Headers */, + DB313F8217554B71006C0E22 /* SDL_events_c.h in Headers */, + 56A67023185654B40007D20F /* SDL_dynapi_procs.h in Headers */, + DB313F8317554B71006C0E22 /* SDL_gesture_c.h in Headers */, + DB313F8417554B71006C0E22 /* SDL_keyboard_c.h in Headers */, + DB313F8517554B71006C0E22 /* SDL_mouse_c.h in Headers */, + DB313F8617554B71006C0E22 /* SDL_sysevents.h in Headers */, + DB313F8717554B71006C0E22 /* SDL_touch_c.h in Headers */, + DB313F8817554B71006C0E22 /* SDL_windowevents_c.h in Headers */, + DB313F8917554B71006C0E22 /* SDL_rwopsbundlesupport.h in Headers */, + DB313F8A17554B71006C0E22 /* SDL_haptic_c.h in Headers */, + DB313F8B17554B71006C0E22 /* SDL_syshaptic.h in Headers */, + DB313F8C17554B71006C0E22 /* SDL_sysjoystick_c.h in Headers */, + DB313F8D17554B71006C0E22 /* SDL_joystick_c.h in Headers */, + DB313F8E17554B71006C0E22 /* SDL_sysjoystick.h in Headers */, + DB313F8F17554B71006C0E22 /* SDL_assert_c.h in Headers */, + DB313F9017554B71006C0E22 /* SDL_error_c.h in Headers */, + DB313F9217554B71006C0E22 /* SDL_sysmutex_c.h in Headers */, + DB313F9317554B71006C0E22 /* SDL_systhread_c.h in Headers */, + DB313F9417554B71006C0E22 /* SDL_systhread.h in Headers */, + DB313F9517554B71006C0E22 /* SDL_thread_c.h in Headers */, + DB313F9617554B71006C0E22 /* SDL_timer_c.h in Headers */, + DB313F9717554B71006C0E22 /* SDL_cocoaclipboard.h in Headers */, + DB313F9817554B71006C0E22 /* SDL_cocoaevents.h in Headers */, + DB313F9917554B71006C0E22 /* SDL_cocoakeyboard.h in Headers */, + DB313F9A17554B71006C0E22 /* SDL_cocoamodes.h in Headers */, + DB313F9B17554B71006C0E22 /* SDL_cocoamouse.h in Headers */, + DB313F9C17554B71006C0E22 /* SDL_cocoaopengl.h in Headers */, + DB313F9D17554B71006C0E22 /* SDL_cocoashape.h in Headers */, + AAC07104195606770073DCDF /* SDL_opengles2_gl2platform.h in Headers */, + DB313F9E17554B71006C0E22 /* SDL_cocoavideo.h in Headers */, + DB313F9F17554B71006C0E22 /* SDL_cocoawindow.h in Headers */, + DB313FA017554B71006C0E22 /* SDL_nullevents_c.h in Headers */, + DB313FA117554B71006C0E22 /* SDL_nullvideo.h in Headers */, + DB313FA217554B71006C0E22 /* SDL_blit.h in Headers */, + DB313FA317554B71006C0E22 /* SDL_blit_auto.h in Headers */, + DB313FA417554B71006C0E22 /* SDL_blit_copy.h in Headers */, + DB313FA517554B71006C0E22 /* SDL_blit_slow.h in Headers */, + DB313FA617554B71006C0E22 /* SDL_pixels_c.h in Headers */, + DB313FA717554B71006C0E22 /* SDL_RLEaccel_c.h in Headers */, + DB313FA817554B71006C0E22 /* SDL_shape_internals.h in Headers */, + DB313FA917554B71006C0E22 /* SDL_sysvideo.h in Headers */, + DB313FAA17554B71006C0E22 /* imKStoUCS.h in Headers */, + DB313FAB17554B71006C0E22 /* SDL_x11clipboard.h in Headers */, + DB313FAC17554B71006C0E22 /* SDL_x11dyn.h in Headers */, + DB313FAD17554B71006C0E22 /* SDL_x11events.h in Headers */, + DB313FAE17554B71006C0E22 /* SDL_x11keyboard.h in Headers */, + DB313FAF17554B71006C0E22 /* SDL_x11modes.h in Headers */, + DB313FB017554B71006C0E22 /* SDL_x11mouse.h in Headers */, + DB313FB117554B71006C0E22 /* SDL_x11opengl.h in Headers */, + DB313FB217554B71006C0E22 /* SDL_x11opengles.h in Headers */, + DB313FB317554B71006C0E22 /* SDL_x11shape.h in Headers */, + DB313FB417554B71006C0E22 /* SDL_x11sym.h in Headers */, + DB313FB517554B71006C0E22 /* SDL_x11touch.h in Headers */, + DB313FB617554B71006C0E22 /* SDL_x11video.h in Headers */, + AAC07101195606770073DCDF /* SDL_opengles2_gl2ext.h in Headers */, + DB313FB717554B71006C0E22 /* SDL_x11window.h in Headers */, + DB313FB817554B71006C0E22 /* SDL_sysrender.h in Headers */, + DB313FB917554B71006C0E22 /* mmx.h in Headers */, + DB313FBA17554B71006C0E22 /* SDL_yuv_sw_c.h in Headers */, + DB313FBB17554B71006C0E22 /* SDL_nullframebuffer_c.h in Headers */, + DB313FBC17554B71006C0E22 /* SDL_blendfillrect.h in Headers */, + DB313FBD17554B71006C0E22 /* SDL_blendline.h in Headers */, + DB313FBE17554B71006C0E22 /* SDL_blendpoint.h in Headers */, + DB313FBF17554B71006C0E22 /* SDL_draw.h in Headers */, + DB313FC017554B71006C0E22 /* SDL_drawline.h in Headers */, + DB313FC117554B71006C0E22 /* SDL_drawpoint.h in Headers */, + DB313FC217554B71006C0E22 /* SDL_render_sw_c.h in Headers */, + DB313FC317554B71006C0E22 /* SDL_x11framebuffer.h in Headers */, + DB313FC417554B71006C0E22 /* SDL_glfuncs.h in Headers */, + DB313FC517554B71006C0E22 /* SDL_shaders_gl.h in Headers */, + DB313FC617554B71006C0E22 /* SDL_rotate.h in Headers */, + DB313FC717554B71006C0E22 /* SDL_x11xinput2.h in Headers */, + DB313FFA17554B71006C0E22 /* SDL_cocoamessagebox.h in Headers */, + D55A1B86179F278F00625D7C /* SDL_cocoamousetap.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + BECDF5FE0761BA81005FE872 /* Framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0073177A0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Framework" */; + buildPhases = ( + BECDF5FF0761BA81005FE872 /* Headers */, + BECDF62A0761BA81005FE872 /* Resources */, + BECDF62C0761BA81005FE872 /* Sources */, + BECDF6680761BA81005FE872 /* Frameworks */, + ); + buildRules = ( + ); + comments = "We recommend installing to /Library/Frameworks\nAn alternative is $(HOME)/Library/Frameworks for per-user if permissions are an issue.\n\nAdd the framework to the Groups & Files panel (under Linked Frameworks is a good place) and enable the check box for the targets that need to link to it. You can also manually add \"-framework SDL\" to your linker flags if you don't like the check box system.\n\nAdd /Library/Frameworks/SDL.framework/Headers to your header search path\nAdd /Library/Frameworks to your library search path\n(Adjust the two above if installed in $(HOME)/Library/Frameworks. You can also list both paths if you want robustness.)\n\nWe used to use an exports file. It was becoming a maintenance issue we kept neglecting, so we have removed it. If you need it back, set the \"Exported Symbols File\" option to:\n../../src/main/macosx/exports/SDL.x\n(You may need to regenerate the exports list. There is a Makefile in that directory that you can run from the command line to rebuild it.)\nLong term, we want to utilize gcc 4.0's new visibility feature (analogous to declspec on Windows). Other platforms would benefit from this change too. The downside is that we still use gcc 3.3 for the PowerPC build here so only our x86 builds will cull the symbols if we go down this route (and don't use the exports file).\n\n"; + dependencies = ( + ); + name = Framework; + productInstallPath = "@executable_path/../Frameworks"; + productName = SDL; + productReference = BECDF66C0761BA81005FE872 /* SDL2.framework */; + productType = "com.apple.product-type.framework"; + }; + BECDF66D0761BA81005FE872 /* Static Library */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0073177E0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Static Library" */; + buildPhases = ( + BECDF66E0761BA81005FE872 /* Headers */, + BECDF6790761BA81005FE872 /* Sources */, + BECDF6B10761BA81005FE872 /* Frameworks */, + BECDF6B20761BA81005FE872 /* Rez */, + ); + buildRules = ( + ); + comments = "This produces libsdl.a, which is the static build of SDL. You will have to link to the Cocoa and OpenGL frameworks in your application."; + dependencies = ( + ); + name = "Static Library"; + productInstallPath = /usr/local/lib; + productName = "Static Library"; + productReference = BECDF6B30761BA81005FE872 /* libSDL2.a */; + productType = "com.apple.product-type.library.static"; + }; + BECDF6BB0761BA81005FE872 /* Standard DMG */ = { + isa = PBXNativeTarget; + buildConfigurationList = 007317860858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Standard DMG" */; + buildPhases = ( + BECDF6BD0761BA81005FE872 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + BECDF6C60761BA81005FE872 /* PBXTargetDependency */, + ); + name = "Standard DMG"; + productInstallPath = /usr/local/bin; + productName = "Standard Package"; + productReference = BECDF6BE0761BA81005FE872 /* Standard DMG */; + productType = "com.apple.product-type.tool"; + }; + DB313F7217554B71006C0E22 /* Shared Library */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB31407417554B71006C0E22 /* Build configuration list for PBXNativeTarget "Shared Library" */; + buildPhases = ( + DB313F7317554B71006C0E22 /* Headers */, + DB313FFD17554B71006C0E22 /* Sources */, + DB31406B17554B71006C0E22 /* Frameworks */, + DB31407317554B71006C0E22 /* Rez */, + ); + buildRules = ( + ); + comments = "This produces libSDL2.dylib, which is the shared build of SDL."; + dependencies = ( + ); + name = "Shared Library"; + productInstallPath = /usr/local/lib; + productName = "Shared Library"; + productReference = DB31407717554B71006C0E22 /* libSDL2.dylib */; + productType = "com.apple.product-type.library.dynamic"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 0867D690FE84028FC02AAC07 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0630; + TargetAttributes = { + BECDF5FE0761BA81005FE872 = { + DevelopmentTeam = EH385AYQ6F; + }; + BECDF6BB0761BA81005FE872 = { + DevelopmentTeam = EH385AYQ6F; + }; + }; + }; + buildConfigurationList = 0073178E0858DB0500B2BC32 /* Build configuration list for PBXProject "SDL" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + ); + mainGroup = 0867D691FE84028FC02AAC07 /* SDLFramework */; + productRefGroup = 034768DDFF38A45A11DB9C8B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + BECDF5FE0761BA81005FE872 /* Framework */, + BECDF66D0761BA81005FE872 /* Static Library */, + DB313F7217554B71006C0E22 /* Shared Library */, + BECDF6BB0761BA81005FE872 /* Standard DMG */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + BECDF62A0761BA81005FE872 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXRezBuildPhase section */ + BECDF6B20761BA81005FE872 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB31407317554B71006C0E22 /* Rez */ = { + isa = PBXRezBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXRezBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + BECDF6BD0761BA81005FE872 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 12; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Sign framework\nif [ \"$SDL_CODESIGN_IDENTITY\" != \"\" ]; then\n codesign --force --deep --sign \"$SDL_CODESIGN_IDENTITY\" $TARGET_BUILD_DIR/SDL2.framework/Versions/A\nfi\n\n# clean up the framework, remove headers, extra files\nmkdir -p build/dmg-tmp\nxcrun CpMac -r $TARGET_BUILD_DIR/SDL2.framework build/dmg-tmp/\n\ncp pkg-support/resources/License.txt build/dmg-tmp\ncp pkg-support/resources/ReadMe.txt build/dmg-tmp\n\n# remove the .DS_Store files if any (we may want to provide one in the future for fancy .dmgs)\nfind build/dmg-tmp -name .DS_Store -exec rm -f \"{}\" \\;\n\n# for fancy .dmg\nmkdir -p build/dmg-tmp/.logo\ncp pkg-support/resources/SDL_DS_Store build/dmg-tmp/.DS_Store\ncp pkg-support/sdl_logo.pdf build/dmg-tmp/.logo\n\n# create the dmg\nhdiutil create -ov -fs HFS+ -volname SDL2 -srcfolder build/dmg-tmp build/SDL2.dmg\n\n# clean up\nrm -rf build/dmg-tmp"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + BECDF62C0761BA81005FE872 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BDFFFB12E6671800899322 /* SDL_atomic.c in Sources */, + 04BDFFFC12E6671800899322 /* SDL_spinlock.c in Sources */, + 04BD000812E6671800899322 /* SDL_diskaudio.c in Sources */, + 04BD001012E6671800899322 /* SDL_dummyaudio.c in Sources */, + 04BD001812E6671800899322 /* SDL_coreaudio.c in Sources */, + 04BD002612E6671800899322 /* SDL_audio.c in Sources */, + 04BD002812E6671800899322 /* SDL_audiocvt.c in Sources */, + 04BD002912E6671800899322 /* SDL_audiodev.c in Sources */, + 04BD002C12E6671800899322 /* SDL_audiotypecvt.c in Sources */, + 04BD002D12E6671800899322 /* SDL_mixer.c in Sources */, + 04BD003512E6671800899322 /* SDL_wave.c in Sources */, + 04BD004112E6671800899322 /* SDL_cpuinfo.c in Sources */, + 04BD004812E6671800899322 /* SDL_clipboardevents.c in Sources */, + 04BD004A12E6671800899322 /* SDL_events.c in Sources */, + 04BD004C12E6671800899322 /* SDL_gesture.c in Sources */, + 04BD004E12E6671800899322 /* SDL_keyboard.c in Sources */, + 04BD005012E6671800899322 /* SDL_mouse.c in Sources */, + 04BD005212E6671800899322 /* SDL_quit.c in Sources */, + 04BD005412E6671800899322 /* SDL_touch.c in Sources */, + 04BD005612E6671800899322 /* SDL_windowevents.c in Sources */, + 04BD005912E6671800899322 /* SDL_rwopsbundlesupport.m in Sources */, + 04BD005A12E6671800899322 /* SDL_rwops.c in Sources */, + 04BD005B12E6671800899322 /* SDL_syshaptic.c in Sources */, + 04BD005F12E6671800899322 /* SDL_haptic.c in Sources */, + 04BD006612E6671800899322 /* SDL_sysjoystick.c in Sources */, + 04BD007012E6671800899322 /* SDL_joystick.c in Sources */, + 04BD008812E6671800899322 /* SDL_sysloadso.c in Sources */, + 04BD009412E6671800899322 /* SDL_syspower.c in Sources */, + 04BD009612E6671800899322 /* SDL_power.c in Sources */, + 04BD009C12E6671800899322 /* SDL_assert.c in Sources */, + 04BD009F12E6671800899322 /* SDL_error.c in Sources */, + 04BD00A212E6671800899322 /* SDL.c in Sources */, + 04BD00A312E6671800899322 /* SDL_getenv.c in Sources */, + 04BD00A412E6671800899322 /* SDL_iconv.c in Sources */, + 04BD00A512E6671800899322 /* SDL_malloc.c in Sources */, + 04BD00A612E6671800899322 /* SDL_qsort.c in Sources */, + 04BD00A712E6671800899322 /* SDL_stdlib.c in Sources */, + 04BD00A812E6671800899322 /* SDL_string.c in Sources */, + 04BD00BD12E6671800899322 /* SDL_syscond.c in Sources */, + 04BD00BE12E6671800899322 /* SDL_sysmutex.c in Sources */, + 04BD00C012E6671800899322 /* SDL_syssem.c in Sources */, + 04BD00C112E6671800899322 /* SDL_systhread.c in Sources */, + 04BD00CA12E6671800899322 /* SDL_thread.c in Sources */, + 04BD00D712E6671800899322 /* SDL_timer.c in Sources */, + 04BD00D912E6671800899322 /* SDL_systimer.c in Sources */, + 04BD00F412E6671800899322 /* SDL_cocoaclipboard.m in Sources */, + 04BD00F612E6671800899322 /* SDL_cocoaevents.m in Sources */, + 04BD00F812E6671800899322 /* SDL_cocoakeyboard.m in Sources */, + 04BD00FA12E6671800899322 /* SDL_cocoamodes.m in Sources */, + 04BD00FC12E6671800899322 /* SDL_cocoamouse.m in Sources */, + 04BD00FE12E6671800899322 /* SDL_cocoaopengl.m in Sources */, + 04BD010012E6671800899322 /* SDL_cocoashape.m in Sources */, + 04BD010212E6671800899322 /* SDL_cocoavideo.m in Sources */, + 04BD010412E6671800899322 /* SDL_cocoawindow.m in Sources */, + 04BD011712E6671800899322 /* SDL_nullevents.c in Sources */, + 04BD011B12E6671800899322 /* SDL_nullvideo.c in Sources */, + 04BD017512E6671800899322 /* SDL_blit.c in Sources */, + 04BD017712E6671800899322 /* SDL_blit_0.c in Sources */, + 04BD017812E6671800899322 /* SDL_blit_1.c in Sources */, + 04BD017912E6671800899322 /* SDL_blit_A.c in Sources */, + 04BD017A12E6671800899322 /* SDL_blit_auto.c in Sources */, + 04BD017C12E6671800899322 /* SDL_blit_copy.c in Sources */, + 04BD017E12E6671800899322 /* SDL_blit_N.c in Sources */, + 04BD017F12E6671800899322 /* SDL_blit_slow.c in Sources */, + 04BD018112E6671800899322 /* SDL_bmp.c in Sources */, + 04BD018212E6671800899322 /* SDL_clipboard.c in Sources */, + 04BD018712E6671800899322 /* SDL_fillrect.c in Sources */, + 04BD018C12E6671800899322 /* SDL_pixels.c in Sources */, + 04BD018E12E6671800899322 /* SDL_rect.c in Sources */, + 04BD019612E6671800899322 /* SDL_RLEaccel.c in Sources */, + 04BD019812E6671800899322 /* SDL_shape.c in Sources */, + 04BD019A12E6671800899322 /* SDL_stretch.c in Sources */, + 04BD019B12E6671800899322 /* SDL_surface.c in Sources */, + 04BD019D12E6671800899322 /* SDL_video.c in Sources */, + 04BD01DB12E6671800899322 /* imKStoUCS.c in Sources */, + 04BD01DD12E6671800899322 /* SDL_x11clipboard.c in Sources */, + 04BD01DF12E6671800899322 /* SDL_x11dyn.c in Sources */, + 04BD01E112E6671800899322 /* SDL_x11events.c in Sources */, + 04BD01E512E6671800899322 /* SDL_x11keyboard.c in Sources */, + 04BD01E712E6671800899322 /* SDL_x11modes.c in Sources */, + 04BD01E912E6671800899322 /* SDL_x11mouse.c in Sources */, + 04BD01EB12E6671800899322 /* SDL_x11opengl.c in Sources */, + 04BD01ED12E6671800899322 /* SDL_x11opengles.c in Sources */, + 04BD01F112E6671800899322 /* SDL_x11shape.c in Sources */, + 04BD01F412E6671800899322 /* SDL_x11touch.c in Sources */, + 04BD01F612E6671800899322 /* SDL_x11video.c in Sources */, + 04BD01F812E6671800899322 /* SDL_x11window.c in Sources */, + 041B2CA512FA0D680087D585 /* SDL_render.c in Sources */, + 04409B9212FA97ED00FB9AA8 /* SDL_yuv_mmx.c in Sources */, + 04409B9412FA97ED00FB9AA8 /* SDL_yuv_sw.c in Sources */, + 04F7803A12FB748500FC43C0 /* SDL_nullframebuffer.c in Sources */, + 04F7804912FB74A200FC43C0 /* SDL_blendfillrect.c in Sources */, + 04F7804B12FB74A200FC43C0 /* SDL_blendline.c in Sources */, + 04F7804D12FB74A200FC43C0 /* SDL_blendpoint.c in Sources */, + 04F7805012FB74A200FC43C0 /* SDL_drawline.c in Sources */, + 04F7805212FB74A200FC43C0 /* SDL_drawpoint.c in Sources */, + 0442EC1812FE1BBA004C9285 /* SDL_render_gl.c in Sources */, + 0442EC1D12FE1BCB004C9285 /* SDL_render_sw.c in Sources */, + 0442EC5A12FE1C60004C9285 /* SDL_x11framebuffer.c in Sources */, + 0442EC5F12FE1C75004C9285 /* SDL_hints.c in Sources */, + 56A67024185654B40007D20F /* SDL_dynapi.c in Sources */, + 04BAC0C81300C2160055DE28 /* SDL_log.c in Sources */, + 0435673E1303160F00BA5428 /* SDL_shaders_gl.c in Sources */, + 566CDE90148F0AC200C5A9BB /* SDL_dropevents.c in Sources */, + AA628ACA159367B7005138DD /* SDL_rotate.c in Sources */, + AA628AD1159367F2005138DD /* SDL_x11xinput2.c in Sources */, + AA9E4093163BE51E007A2AD0 /* SDL_x11messagebox.c in Sources */, + AABCC38F164063D200AB8930 /* SDL_cocoamessagebox.m in Sources */, + AA0AD09D16648D1700CE5896 /* SDL_gamecontroller.c in Sources */, + AA0F8491178D5ECC00823F9D /* SDL_systls.c in Sources */, + D55A1B82179F262300625D7C /* SDL_cocoamousetap.m in Sources */, + 567E2F1C17C44BB2005F1892 /* SDL_sysfilesystem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BECDF6790761BA81005FE872 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 04BD021712E6671800899322 /* SDL_atomic.c in Sources */, + 04BD021812E6671800899322 /* SDL_spinlock.c in Sources */, + 04BD022412E6671800899322 /* SDL_diskaudio.c in Sources */, + 04BD022C12E6671800899322 /* SDL_dummyaudio.c in Sources */, + 04BD023412E6671800899322 /* SDL_coreaudio.c in Sources */, + 04BD024212E6671800899322 /* SDL_audio.c in Sources */, + 04BD024412E6671800899322 /* SDL_audiocvt.c in Sources */, + 04BD024512E6671800899322 /* SDL_audiodev.c in Sources */, + 04BD024812E6671800899322 /* SDL_audiotypecvt.c in Sources */, + 04BD024912E6671800899322 /* SDL_mixer.c in Sources */, + 04BD025112E6671800899322 /* SDL_wave.c in Sources */, + 04BD025C12E6671800899322 /* SDL_cpuinfo.c in Sources */, + 04BD026312E6671800899322 /* SDL_clipboardevents.c in Sources */, + 04BD026512E6671800899322 /* SDL_events.c in Sources */, + AA41F88014B8F1F500993C4F /* SDL_dropevents.c in Sources */, + 04BD026712E6671800899322 /* SDL_gesture.c in Sources */, + 04BD026912E6671800899322 /* SDL_keyboard.c in Sources */, + 04BD026B12E6671800899322 /* SDL_mouse.c in Sources */, + 04BD026D12E6671800899322 /* SDL_quit.c in Sources */, + 04BD026F12E6671800899322 /* SDL_touch.c in Sources */, + 04BD027112E6671800899322 /* SDL_windowevents.c in Sources */, + 04BD027412E6671800899322 /* SDL_rwopsbundlesupport.m in Sources */, + 04BD027512E6671800899322 /* SDL_rwops.c in Sources */, + 04BD027612E6671800899322 /* SDL_syshaptic.c in Sources */, + 04BD027A12E6671800899322 /* SDL_haptic.c in Sources */, + 04BD028112E6671800899322 /* SDL_sysjoystick.c in Sources */, + BBFC088D164C6647003E6A99 /* SDL_gamecontroller.c in Sources */, + 04BD028B12E6671800899322 /* SDL_joystick.c in Sources */, + 04BD02A312E6671800899322 /* SDL_sysloadso.c in Sources */, + 04BD02AE12E6671800899322 /* SDL_syspower.c in Sources */, + 04BD02B012E6671800899322 /* SDL_power.c in Sources */, + 04BD02B612E6671800899322 /* SDL_assert.c in Sources */, + 04BD02B912E6671800899322 /* SDL_error.c in Sources */, + 04BD02BC12E6671800899322 /* SDL.c in Sources */, + 04BD02BD12E6671800899322 /* SDL_getenv.c in Sources */, + 04BD02BE12E6671800899322 /* SDL_iconv.c in Sources */, + 04BD02BF12E6671800899322 /* SDL_malloc.c in Sources */, + 04BD02C012E6671800899322 /* SDL_qsort.c in Sources */, + 04BD02C112E6671800899322 /* SDL_stdlib.c in Sources */, + 04BD02C212E6671800899322 /* SDL_string.c in Sources */, + 04BD02D712E6671800899322 /* SDL_syscond.c in Sources */, + 04BD02D812E6671800899322 /* SDL_sysmutex.c in Sources */, + 04BD02DA12E6671800899322 /* SDL_syssem.c in Sources */, + 04BD02DB12E6671800899322 /* SDL_systhread.c in Sources */, + 04BD02E412E6671800899322 /* SDL_thread.c in Sources */, + 04BD02F112E6671800899322 /* SDL_timer.c in Sources */, + 04BD02F312E6671800899322 /* SDL_systimer.c in Sources */, + 04BD030E12E6671800899322 /* SDL_cocoaclipboard.m in Sources */, + 04BD031012E6671800899322 /* SDL_cocoaevents.m in Sources */, + 04BD031212E6671800899322 /* SDL_cocoakeyboard.m in Sources */, + 04BD031412E6671800899322 /* SDL_cocoamodes.m in Sources */, + 04BD031612E6671800899322 /* SDL_cocoamouse.m in Sources */, + 04BD031812E6671800899322 /* SDL_cocoaopengl.m in Sources */, + 04BD031A12E6671800899322 /* SDL_cocoashape.m in Sources */, + 04BD031C12E6671800899322 /* SDL_cocoavideo.m in Sources */, + 04BD031E12E6671800899322 /* SDL_cocoawindow.m in Sources */, + 04BD033112E6671800899322 /* SDL_nullevents.c in Sources */, + 04BD033512E6671800899322 /* SDL_nullvideo.c in Sources */, + 04BD038F12E6671800899322 /* SDL_blit.c in Sources */, + 04BD039112E6671800899322 /* SDL_blit_0.c in Sources */, + 04BD039212E6671800899322 /* SDL_blit_1.c in Sources */, + 04BD039312E6671800899322 /* SDL_blit_A.c in Sources */, + 04BD039412E6671800899322 /* SDL_blit_auto.c in Sources */, + 04BD039612E6671800899322 /* SDL_blit_copy.c in Sources */, + 04BD039812E6671800899322 /* SDL_blit_N.c in Sources */, + 04BD039912E6671800899322 /* SDL_blit_slow.c in Sources */, + 04BD039B12E6671800899322 /* SDL_bmp.c in Sources */, + 04BD039C12E6671800899322 /* SDL_clipboard.c in Sources */, + 04BD03A112E6671800899322 /* SDL_fillrect.c in Sources */, + 04BD03A612E6671800899322 /* SDL_pixels.c in Sources */, + 04BD03A812E6671800899322 /* SDL_rect.c in Sources */, + 04BD03B012E6671800899322 /* SDL_RLEaccel.c in Sources */, + 04BD03B212E6671800899322 /* SDL_shape.c in Sources */, + 04BD03B412E6671800899322 /* SDL_stretch.c in Sources */, + 04BD03B512E6671800899322 /* SDL_surface.c in Sources */, + 04BD03B712E6671800899322 /* SDL_video.c in Sources */, + 04BD03F312E6671800899322 /* imKStoUCS.c in Sources */, + 04BD03F512E6671800899322 /* SDL_x11clipboard.c in Sources */, + 04BD03F712E6671800899322 /* SDL_x11dyn.c in Sources */, + 04BD03F912E6671800899322 /* SDL_x11events.c in Sources */, + 04BD03FD12E6671800899322 /* SDL_x11keyboard.c in Sources */, + 04BD03FF12E6671800899322 /* SDL_x11modes.c in Sources */, + 04BD040112E6671800899322 /* SDL_x11mouse.c in Sources */, + 04BD040312E6671800899322 /* SDL_x11opengl.c in Sources */, + 04BD040512E6671800899322 /* SDL_x11opengles.c in Sources */, + 04BD040912E6671800899322 /* SDL_x11shape.c in Sources */, + 04BD040C12E6671800899322 /* SDL_x11touch.c in Sources */, + 04BD040E12E6671800899322 /* SDL_x11video.c in Sources */, + 04BD041012E6671800899322 /* SDL_x11window.c in Sources */, + 041B2CAB12FA0D680087D585 /* SDL_render.c in Sources */, + 04409B9612FA97ED00FB9AA8 /* SDL_yuv_mmx.c in Sources */, + 04409B9812FA97ED00FB9AA8 /* SDL_yuv_sw.c in Sources */, + 04F7803C12FB748500FC43C0 /* SDL_nullframebuffer.c in Sources */, + 04F7805512FB74A200FC43C0 /* SDL_blendfillrect.c in Sources */, + 04F7805712FB74A200FC43C0 /* SDL_blendline.c in Sources */, + 04F7805912FB74A200FC43C0 /* SDL_blendpoint.c in Sources */, + 04F7805C12FB74A200FC43C0 /* SDL_drawline.c in Sources */, + 04F7805E12FB74A200FC43C0 /* SDL_drawpoint.c in Sources */, + 0442EC1912FE1BBA004C9285 /* SDL_render_gl.c in Sources */, + 0442EC1F12FE1BCB004C9285 /* SDL_render_sw.c in Sources */, + 56A67025185654B40007D20F /* SDL_dynapi.c in Sources */, + 0442EC5C12FE1C60004C9285 /* SDL_x11framebuffer.c in Sources */, + 0442EC6012FE1C75004C9285 /* SDL_hints.c in Sources */, + 04BAC0C91300C2160055DE28 /* SDL_log.c in Sources */, + 043567401303160F00BA5428 /* SDL_shaders_gl.c in Sources */, + AA628ACB159367B7005138DD /* SDL_rotate.c in Sources */, + AA628AD2159367F2005138DD /* SDL_x11xinput2.c in Sources */, + AA9E4094163BE51E007A2AD0 /* SDL_x11messagebox.c in Sources */, + AABCC390164063D200AB8930 /* SDL_cocoamessagebox.m in Sources */, + AA0F8492178D5ECC00823F9D /* SDL_systls.c in Sources */, + D55A1B84179F263600625D7C /* SDL_cocoamousetap.m in Sources */, + DB0F490817CA5292008798C5 /* SDL_sysfilesystem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB313FFD17554B71006C0E22 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB313FFE17554B71006C0E22 /* SDL_atomic.c in Sources */, + DB313FFF17554B71006C0E22 /* SDL_spinlock.c in Sources */, + DB31400017554B71006C0E22 /* SDL_diskaudio.c in Sources */, + DB31400117554B71006C0E22 /* SDL_dummyaudio.c in Sources */, + DB31400217554B71006C0E22 /* SDL_coreaudio.c in Sources */, + DB31400317554B71006C0E22 /* SDL_audio.c in Sources */, + DB31400417554B71006C0E22 /* SDL_audiocvt.c in Sources */, + DB31400517554B71006C0E22 /* SDL_audiodev.c in Sources */, + DB31400617554B71006C0E22 /* SDL_audiotypecvt.c in Sources */, + DB31400717554B71006C0E22 /* SDL_mixer.c in Sources */, + DB31400817554B71006C0E22 /* SDL_wave.c in Sources */, + DB31400917554B71006C0E22 /* SDL_cpuinfo.c in Sources */, + DB31400A17554B71006C0E22 /* SDL_clipboardevents.c in Sources */, + DB31400B17554B71006C0E22 /* SDL_events.c in Sources */, + DB31400C17554B71006C0E22 /* SDL_dropevents.c in Sources */, + DB31400D17554B71006C0E22 /* SDL_gesture.c in Sources */, + DB31400E17554B71006C0E22 /* SDL_keyboard.c in Sources */, + DB31400F17554B71006C0E22 /* SDL_mouse.c in Sources */, + DB31401017554B71006C0E22 /* SDL_quit.c in Sources */, + DB31401117554B71006C0E22 /* SDL_touch.c in Sources */, + DB31401217554B71006C0E22 /* SDL_windowevents.c in Sources */, + DB31401317554B71006C0E22 /* SDL_rwopsbundlesupport.m in Sources */, + DB31401417554B71006C0E22 /* SDL_rwops.c in Sources */, + DB31401517554B71006C0E22 /* SDL_syshaptic.c in Sources */, + DB31401617554B71006C0E22 /* SDL_haptic.c in Sources */, + DB31401717554B71006C0E22 /* SDL_sysjoystick.c in Sources */, + DB31401817554B71006C0E22 /* SDL_gamecontroller.c in Sources */, + DB31401917554B71006C0E22 /* SDL_joystick.c in Sources */, + DB31401A17554B71006C0E22 /* SDL_sysloadso.c in Sources */, + DB31401B17554B71006C0E22 /* SDL_syspower.c in Sources */, + DB31401C17554B71006C0E22 /* SDL_power.c in Sources */, + DB31401D17554B71006C0E22 /* SDL_assert.c in Sources */, + DB31401E17554B71006C0E22 /* SDL_error.c in Sources */, + DB31402017554B71006C0E22 /* SDL.c in Sources */, + DB31402117554B71006C0E22 /* SDL_getenv.c in Sources */, + DB31402217554B71006C0E22 /* SDL_iconv.c in Sources */, + DB31402317554B71006C0E22 /* SDL_malloc.c in Sources */, + DB31402417554B71006C0E22 /* SDL_qsort.c in Sources */, + DB31402517554B71006C0E22 /* SDL_stdlib.c in Sources */, + DB31402617554B71006C0E22 /* SDL_string.c in Sources */, + DB31402717554B71006C0E22 /* SDL_syscond.c in Sources */, + DB31402817554B71006C0E22 /* SDL_sysmutex.c in Sources */, + DB31402917554B71006C0E22 /* SDL_syssem.c in Sources */, + DB31402A17554B71006C0E22 /* SDL_systhread.c in Sources */, + DB31402B17554B71006C0E22 /* SDL_thread.c in Sources */, + DB31402C17554B71006C0E22 /* SDL_timer.c in Sources */, + DB31402D17554B71006C0E22 /* SDL_systimer.c in Sources */, + DB31402E17554B71006C0E22 /* SDL_cocoaclipboard.m in Sources */, + DB31402F17554B71006C0E22 /* SDL_cocoaevents.m in Sources */, + DB31403017554B71006C0E22 /* SDL_cocoakeyboard.m in Sources */, + DB31403117554B71006C0E22 /* SDL_cocoamodes.m in Sources */, + DB31403217554B71006C0E22 /* SDL_cocoamouse.m in Sources */, + DB31403317554B71006C0E22 /* SDL_cocoaopengl.m in Sources */, + DB31403417554B71006C0E22 /* SDL_cocoashape.m in Sources */, + DB31403517554B71006C0E22 /* SDL_cocoavideo.m in Sources */, + DB31403617554B71006C0E22 /* SDL_cocoawindow.m in Sources */, + DB31403717554B71006C0E22 /* SDL_nullevents.c in Sources */, + DB31403817554B71006C0E22 /* SDL_nullvideo.c in Sources */, + DB31403917554B71006C0E22 /* SDL_blit.c in Sources */, + DB31403A17554B71006C0E22 /* SDL_blit_0.c in Sources */, + DB31403B17554B71006C0E22 /* SDL_blit_1.c in Sources */, + DB31403C17554B71006C0E22 /* SDL_blit_A.c in Sources */, + DB31403D17554B71006C0E22 /* SDL_blit_auto.c in Sources */, + DB31403E17554B71006C0E22 /* SDL_blit_copy.c in Sources */, + DB31403F17554B71006C0E22 /* SDL_blit_N.c in Sources */, + DB31404017554B71006C0E22 /* SDL_blit_slow.c in Sources */, + DB31404117554B71006C0E22 /* SDL_bmp.c in Sources */, + DB31404217554B71006C0E22 /* SDL_clipboard.c in Sources */, + DB31404317554B71006C0E22 /* SDL_fillrect.c in Sources */, + DB31404417554B71006C0E22 /* SDL_pixels.c in Sources */, + DB31404517554B71006C0E22 /* SDL_rect.c in Sources */, + DB31404617554B71006C0E22 /* SDL_RLEaccel.c in Sources */, + DB31404717554B71006C0E22 /* SDL_shape.c in Sources */, + DB31404817554B71006C0E22 /* SDL_stretch.c in Sources */, + DB31404917554B71006C0E22 /* SDL_surface.c in Sources */, + DB31404A17554B71006C0E22 /* SDL_video.c in Sources */, + DB31404B17554B71006C0E22 /* imKStoUCS.c in Sources */, + DB31404C17554B71006C0E22 /* SDL_x11clipboard.c in Sources */, + DB31404D17554B71006C0E22 /* SDL_x11dyn.c in Sources */, + DB31404E17554B71006C0E22 /* SDL_x11events.c in Sources */, + DB31404F17554B71006C0E22 /* SDL_x11keyboard.c in Sources */, + DB31405017554B71006C0E22 /* SDL_x11modes.c in Sources */, + DB31405117554B71006C0E22 /* SDL_x11mouse.c in Sources */, + DB31405217554B71006C0E22 /* SDL_x11opengl.c in Sources */, + DB31405317554B71006C0E22 /* SDL_x11opengles.c in Sources */, + DB31405417554B71006C0E22 /* SDL_x11shape.c in Sources */, + DB31405517554B71006C0E22 /* SDL_x11touch.c in Sources */, + DB31405617554B71006C0E22 /* SDL_x11video.c in Sources */, + DB31405717554B71006C0E22 /* SDL_x11window.c in Sources */, + DB31405817554B71006C0E22 /* SDL_render.c in Sources */, + DB31405917554B71006C0E22 /* SDL_yuv_mmx.c in Sources */, + DB31405A17554B71006C0E22 /* SDL_yuv_sw.c in Sources */, + DB31405B17554B71006C0E22 /* SDL_nullframebuffer.c in Sources */, + DB31405C17554B71006C0E22 /* SDL_blendfillrect.c in Sources */, + DB31405D17554B71006C0E22 /* SDL_blendline.c in Sources */, + DB31405E17554B71006C0E22 /* SDL_blendpoint.c in Sources */, + DB31405F17554B71006C0E22 /* SDL_drawline.c in Sources */, + DB31406017554B71006C0E22 /* SDL_drawpoint.c in Sources */, + DB31406117554B71006C0E22 /* SDL_render_gl.c in Sources */, + DB31406217554B71006C0E22 /* SDL_render_sw.c in Sources */, + 56A67026185654B40007D20F /* SDL_dynapi.c in Sources */, + DB31406317554B71006C0E22 /* SDL_x11framebuffer.c in Sources */, + DB31406417554B71006C0E22 /* SDL_hints.c in Sources */, + DB31406517554B71006C0E22 /* SDL_log.c in Sources */, + DB31406617554B71006C0E22 /* SDL_shaders_gl.c in Sources */, + DB31406717554B71006C0E22 /* SDL_rotate.c in Sources */, + DB31406817554B71006C0E22 /* SDL_x11xinput2.c in Sources */, + DB31406917554B71006C0E22 /* SDL_x11messagebox.c in Sources */, + DB31406A17554B71006C0E22 /* SDL_cocoamessagebox.m in Sources */, + AA0F8493178D5ECC00823F9D /* SDL_systls.c in Sources */, + D55A1B83179F263500625D7C /* SDL_cocoamousetap.m in Sources */, + DB0F490A17CA5293008798C5 /* SDL_sysfilesystem.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + BECDF6C60761BA81005FE872 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BECDF5FE0761BA81005FE872 /* Framework */; + targetProxy = BECDF6C50761BA81005FE872 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 00CFA621106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DEPLOYMENT_POSTPROCESSING = YES; + GCC_ALTIVEC_EXTENSIONS = YES; + GCC_AUTO_VECTORIZATION = YES; + GCC_ENABLE_SSE3_EXTENSIONS = YES; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_OPTIMIZATION_LEVEL = 3; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + MACOSX_DEPLOYMENT_TARGET = 10.6; + SDKROOT = macosx; + STRIP_STYLE = "non-global"; + }; + name = Release; + }; + 00CFA622106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_LINK_OBJC_RUNTIME = NO; + COMBINE_HIDPI_IMAGES = YES; + DYLIB_COMPATIBILITY_VERSION = 1.0.0; + DYLIB_CURRENT_VERSION = 5.0.0; + FRAMEWORK_VERSION = A; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + INFOPLIST_FILE = "Info-Framework.plist"; + INSTALL_PATH = "@rpath"; + OTHER_LDFLAGS = "-liconv"; + PRODUCT_NAME = SDL2; + PROVISIONING_PROFILE = ""; + WRAPPER_EXTENSION = framework; + }; + name = Release; + }; + 00CFA623106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + PRODUCT_NAME = SDL2; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 00CFA625106A567900758660 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Standard DMG"; + PROVISIONING_PROFILE = ""; + }; + name = Release; + }; + 00CFA627106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_ALTIVEC_EXTENSIONS = YES; + GCC_AUTO_VECTORIZATION = YES; + GCC_ENABLE_SSE3_EXTENSIONS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + MACOSX_DEPLOYMENT_TARGET = 10.6; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + STRIP_INSTALLED_PRODUCT = NO; + }; + name = Debug; + }; + 00CFA628106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_LINK_OBJC_RUNTIME = NO; + COMBINE_HIDPI_IMAGES = YES; + DYLIB_COMPATIBILITY_VERSION = 1.0.0; + DYLIB_CURRENT_VERSION = 5.0.0; + FRAMEWORK_VERSION = A; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + INFOPLIST_FILE = "Info-Framework.plist"; + INSTALL_PATH = "@rpath"; + OTHER_LDFLAGS = "-liconv"; + PRODUCT_NAME = SDL2; + PROVISIONING_PROFILE = ""; + WRAPPER_EXTENSION = framework; + }; + name = Debug; + }; + 00CFA629106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + PRODUCT_NAME = SDL2; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 00CFA62B106A568900758660 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Standard DMG"; + PROVISIONING_PROFILE = ""; + }; + name = Debug; + }; + DB31407517554B71006C0E22 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + EXECUTABLE_PREFIX = lib; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + INSTALL_PATH = "@rpath"; + PRODUCT_NAME = SDL2; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + DB31407617554B71006C0E22 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + COMBINE_HIDPI_IMAGES = YES; + EXECUTABLE_PREFIX = lib; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(GCC_PREPROCESSOR_DEFINITIONS)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_1)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_2)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_3)", + "$(GCC_PREPROCESSOR_DEFINITIONS_QUOTED_4)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + HEADER_SEARCH_PATHS = /usr/X11R6/include; + INSTALL_PATH = "@rpath"; + PRODUCT_NAME = SDL2; + SKIP_INSTALL = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 0073177A0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA628106A568900758660 /* Debug */, + 00CFA622106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0073177E0858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Static Library" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA629106A568900758660 /* Debug */, + 00CFA623106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 007317860858DB0500B2BC32 /* Build configuration list for PBXNativeTarget "Standard DMG" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA62B106A568900758660 /* Debug */, + 00CFA625106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0073178E0858DB0500B2BC32 /* Build configuration list for PBXProject "SDL" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00CFA627106A568900758660 /* Debug */, + 00CFA621106A567900758660 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB31407417554B71006C0E22 /* Build configuration list for PBXNativeTarget "Shared Library" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB31407517554B71006C0E22 /* Debug */, + DB31407617554B71006C0E22 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = 0867D690FE84028FC02AAC07 /* Project object */; +} diff --git a/SDL/Xcode/SDL/pkg-support/SDL.info b/SDL/Xcode/SDL/pkg-support/SDL.info new file mode 100755 index 0000000..f08facd --- /dev/null +++ b/SDL/Xcode/SDL/pkg-support/SDL.info @@ -0,0 +1,15 @@ +Title SDL 2.0.0 +Version 1 +Description SDL Library for Mac OS X (http://www.libsdl.org) +DefaultLocation /Library/Frameworks +Diskname (null) +DeleteWarning +NeedsAuthorization NO +DisableStop NO +UseUserMask NO +Application NO +Relocatable YES +Required NO +InstallOnly NO +RequiresReboot NO +InstallFat NO diff --git a/SDL/Xcode/SDL/pkg-support/resources/License.txt b/SDL/Xcode/SDL/pkg-support/resources/License.txt new file mode 100644 index 0000000..3c7724d --- /dev/null +++ b/SDL/Xcode/SDL/pkg-support/resources/License.txt @@ -0,0 +1,19 @@ + +Simple DirectMedia Layer +Copyright (C) 1997-2016 Sam Lantinga + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. diff --git a/SDL/Xcode/SDL/pkg-support/resources/ReadMe.txt b/SDL/Xcode/SDL/pkg-support/resources/ReadMe.txt new file mode 100755 index 0000000..40ac3a1 --- /dev/null +++ b/SDL/Xcode/SDL/pkg-support/resources/ReadMe.txt @@ -0,0 +1,32 @@ +The Simple DirectMedia Layer (SDL for short) is a cross-platform +library designed to make it easy to write multi-media software, +such as games and emulators. + +The Simple DirectMedia Layer library source code is available from: +http://www.libsdl.org/ + +This library is distributed under the terms of the zlib license: +http://zlib.net/zlib_license.html + + +This packages contains the SDL framework for OS X. +Conforming with Apple guidelines, this framework +contains both the SDL runtime component and development header files. + + +To Install: +Copy the SDL2.framework to /Library/Frameworks + +You may alternatively install it in /Library/Frameworks +if your access privileges are not high enough. + + +Additional References: + + - Screencast tutorials for getting started with OpenSceneGraph/Mac OS X are + available at: + http://www.openscenegraph.org/projects/osg/wiki/Support/Tutorials/MacOSXTips + Though these are OpenSceneGraph centric, the same exact concepts apply to + SDL, thus the videos are recommended for everybody getting started with + developing on Mac OS X. (You can skim over the PlugIns stuff since SDL + doesn't have any PlugIns to worry about.) diff --git a/SDL/Xcode/SDL/pkg-support/resources/SDL_DS_Store b/SDL/Xcode/SDL/pkg-support/resources/SDL_DS_Store new file mode 100644 index 0000000..5658d15 Binary files /dev/null and b/SDL/Xcode/SDL/pkg-support/resources/SDL_DS_Store differ diff --git a/SDL/Xcode/SDL/pkg-support/sdl_logo.pdf b/SDL/Xcode/SDL/pkg-support/sdl_logo.pdf new file mode 100644 index 0000000..a172f97 Binary files /dev/null and b/SDL/Xcode/SDL/pkg-support/sdl_logo.pdf differ diff --git a/SDL/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj b/SDL/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj new file mode 100755 index 0000000..144d24c --- /dev/null +++ b/SDL/Xcode/SDLTest/SDLTest.xcodeproj/project.pbxproj @@ -0,0 +1,4882 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXAggregateTarget section */ + BEC566920761D90300A33029 /* All */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */; + buildPhases = ( + ); + dependencies = ( + DB0F490517CA5249008798C5 /* PBXTargetDependency */, + DB0F490717CA5249008798C5 /* PBXTargetDependency */, + DB166E9816A1D7CF00A1396C /* PBXTargetDependency */, + DB166E9616A1D7CD00A1396C /* PBXTargetDependency */, + DB166E6C16A1D72000A1396C /* PBXTargetDependency */, + DB166E5616A1D6B800A1396C /* PBXTargetDependency */, + DB166E3B16A1D65A00A1396C /* PBXTargetDependency */, + DB166E2016A1D5D000A1396C /* PBXTargetDependency */, + DB166E0916A1D5A400A1396C /* PBXTargetDependency */, + DB166DF216A1D53700A1396C /* PBXTargetDependency */, + DB166DD916A1D38900A1396C /* PBXTargetDependency */, + 001799481074403E00F5D044 /* PBXTargetDependency */, + 0017994C1074403E00F5D044 /* PBXTargetDependency */, + 001799501074403E00F5D044 /* PBXTargetDependency */, + 001799521074403E00F5D044 /* PBXTargetDependency */, + 0017995A1074403E00F5D044 /* PBXTargetDependency */, + 0017995E1074403E00F5D044 /* PBXTargetDependency */, + 001799601074403E00F5D044 /* PBXTargetDependency */, + 001799661074403E00F5D044 /* PBXTargetDependency */, + 001799681074403E00F5D044 /* PBXTargetDependency */, + 0017996A1074403E00F5D044 /* PBXTargetDependency */, + 0017996C1074403E00F5D044 /* PBXTargetDependency */, + 0017996E1074403E00F5D044 /* PBXTargetDependency */, + 001799701074403E00F5D044 /* PBXTargetDependency */, + 001799721074403E00F5D044 /* PBXTargetDependency */, + 001799741074403E00F5D044 /* PBXTargetDependency */, + 001799761074403E00F5D044 /* PBXTargetDependency */, + 001799781074403E00F5D044 /* PBXTargetDependency */, + 0017997C1074403E00F5D044 /* PBXTargetDependency */, + 001799801074403E00F5D044 /* PBXTargetDependency */, + 001799841074403E00F5D044 /* PBXTargetDependency */, + 001799881074403E00F5D044 /* PBXTargetDependency */, + 0017998A1074403E00F5D044 /* PBXTargetDependency */, + 0017998C1074403E00F5D044 /* PBXTargetDependency */, + 0017998E1074403E00F5D044 /* PBXTargetDependency */, + 001799921074403E00F5D044 /* PBXTargetDependency */, + 001799941074403E00F5D044 /* PBXTargetDependency */, + 001799961074403E00F5D044 /* PBXTargetDependency */, + 0017999E1074403E00F5D044 /* PBXTargetDependency */, + 001799A21074403E00F5D044 /* PBXTargetDependency */, + DB166D7016A1CEAF00A1396C /* PBXTargetDependency */, + DB166D6E16A1CEAA00A1396C /* PBXTargetDependency */, + DB166DC316A1D32C00A1396C /* PBXTargetDependency */, + ); + name = All; + productName = "Build All"; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 001794D01073667700F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794D11073667B00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794D41073668800F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794D51073668D00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794D61073669200F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794D71073669700F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794D91073669E00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794DB107366A700F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794DC107366AC00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794DE107366B900F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794DF107366BD00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794E0107366C100F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001794E5107366D900F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 0017957C10741F7900F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017957D10741F7900F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 0017957E10741F7900F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 0017957F10741F7900F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 0017958010741F7900F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 0017958110741F7900F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 0017958310741F7900F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 0017958410741F7900F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 0017958510741F7900F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001795901074216E00F5D044 /* testatomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017958F1074216E00F5D044 /* testatomic.c */; }; + 0017959D107421BF00F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017959E107421BF00F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 0017959F107421BF00F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 001795A0107421BF00F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 001795A1107421BF00F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 001795A2107421BF00F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 001795A4107421BF00F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 001795A5107421BF00F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 001795A6107421BF00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001795B11074222D00F5D044 /* testaudioinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 001795B01074222D00F5D044 /* testaudioinfo.c */; }; + 0017971110742F3200F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017971210742F3200F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 0017971310742F3200F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 0017971410742F3200F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 0017971510742F3200F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 0017971610742F3200F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 0017971810742F3200F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 0017971910742F3200F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 0017971A10742F3200F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 0017972810742FB900F5D044 /* testgl2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017972710742FB900F5D044 /* testgl2.c */; }; + 00179738107430D600F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 00179739107430D600F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 0017973A107430D600F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 0017973B107430D600F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 0017973C107430D600F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 0017973D107430D600F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 0017973F107430D600F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 00179740107430D600F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 00179741107430D600F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 0017974F1074315700F5D044 /* testhaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017974E1074315700F5D044 /* testhaptic.c */; }; + 0017975E107431B300F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017975F107431B300F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 00179760107431B300F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 00179761107431B300F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 00179762107431B300F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 00179763107431B300F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 00179765107431B300F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 00179766107431B300F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 00179767107431B300F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001797721074320D00F5D044 /* testdraw2.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797711074320D00F5D044 /* testdraw2.c */; }; + 0017977E107432AE00F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017977F107432AE00F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 00179780107432AE00F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 00179781107432AE00F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 00179782107432AE00F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 00179783107432AE00F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 00179785107432AE00F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 00179786107432AE00F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 00179787107432AE00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 00179792107432FA00F5D044 /* testime.c in Sources */ = {isa = PBXBuildFile; fileRef = 00179791107432FA00F5D044 /* testime.c */; }; + 0017979E1074334C00F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017979F1074334C00F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 001797A01074334C00F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 001797A11074334C00F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 001797A21074334C00F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 001797A31074334C00F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 001797A51074334C00F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 001797A61074334C00F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 001797A71074334C00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001797B41074339C00F5D044 /* testintersections.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797B31074339C00F5D044 /* testintersections.c */; }; + 001797C0107433C600F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 001797C1107433C600F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 001797C2107433C600F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 001797C3107433C600F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 001797C4107433C600F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 001797C5107433C600F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 001797C7107433C600F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 001797C8107433C600F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 001797C9107433C600F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001797D41074343E00F5D044 /* testloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 001797D31074343E00F5D044 /* testloadso.c */; }; + 001798021074355200F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 001798031074355200F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 001798041074355200F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 001798051074355200F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 001798061074355200F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 001798071074355200F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 001798091074355200F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 0017980A1074355200F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 0017980B1074355200F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001798161074359B00F5D044 /* testmultiaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798151074359B00F5D044 /* testmultiaudio.c */; }; + 0017987F1074392D00F5D044 /* testnative.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017985A107436ED00F5D044 /* testnative.c */; }; + 001798801074392D00F5D044 /* testnativecocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 0017985C107436ED00F5D044 /* testnativecocoa.m */; }; + 001798811074392D00F5D044 /* testnativex11.c in Sources */ = {isa = PBXBuildFile; fileRef = 00179872107438D000F5D044 /* testnativex11.c */; }; + 001798841074392D00F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 001798851074392D00F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 001798861074392D00F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 001798871074392D00F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 001798881074392D00F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 001798891074392D00F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 0017988B1074392D00F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 0017988C1074392D00F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 0017988D1074392D00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001798A5107439DF00F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 001798A6107439DF00F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 001798A7107439DF00F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 001798A8107439DF00F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 001798A9107439DF00F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 001798AA107439DF00F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 001798AC107439DF00F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 001798AD107439DF00F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 001798AE107439DF00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001798BA10743A4900F5D044 /* testpower.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798B910743A4900F5D044 /* testpower.c */; }; + 001798E210743BEC00F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 001798E310743BEC00F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 001798E410743BEC00F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 001798E510743BEC00F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 001798E610743BEC00F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 001798E710743BEC00F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 001798E910743BEC00F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 001798EA10743BEC00F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 001798EB10743BEC00F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 001798FA10743E9200F5D044 /* testresample.c in Sources */ = {isa = PBXBuildFile; fileRef = 001798F910743E9200F5D044 /* testresample.c */; }; + 0017990610743F1000F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017990710743F1000F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 0017990810743F1000F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 0017990910743F1000F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 0017990A10743F1000F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 0017990B10743F1000F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 0017990D10743F1000F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 0017990E10743F1000F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 0017990F10743F1000F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 0017991A10743F5300F5D044 /* testsprite2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017991910743F5300F5D044 /* testsprite2.c */; }; + 0017992810743FB700F5D044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 0017992910743FB700F5D044 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 0017992A10743FB700F5D044 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 0017992B10743FB700F5D044 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 0017992C10743FB700F5D044 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 0017992D10743FB700F5D044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 0017992F10743FB700F5D044 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 0017993010743FB700F5D044 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 0017993110743FB700F5D044 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 0017993C10743FEF00F5D044 /* testwm2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0017993B10743FEF00F5D044 /* testwm2.c */; }; + 002A863010730405007319AE /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 002A864110730546007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A864210730546007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A864310730546007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A864D10730546007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A864E10730546007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A864F10730546007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A865310730547007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A865410730547007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A865510730547007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A866210730547007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A866310730547007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A866410730547007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A866B10730548007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A866C10730548007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A866D10730548007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A866E10730548007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A866F10730548007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A867010730548007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A867410730548007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A867510730548007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A867610730548007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A867710730548007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A867810730548007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A867910730549007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A867A10730549007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A867B10730549007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A867C10730549007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A868010730549007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A868110730549007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A868210730549007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A868610730549007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A868710730549007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A868810730549007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A868910730549007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A868A10730549007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A868B1073054A007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A868F1073054A007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A86901073054A007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A86911073054A007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A86951073054A007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A86961073054A007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A86971073054A007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A86981073054A007319AE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + 002A86991073054A007319AE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + 002A869A1073054A007319AE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + 002A86A310730593007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86A410730593007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86AB10730594007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86AC10730594007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86AF10730594007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86B010730594007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86B910730594007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86BA10730594007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86BF10730595007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86C010730595007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86C110730595007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86C210730595007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86C510730595007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86C610730595007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86C710730595007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86C810730595007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86C910730595007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86CA10730595007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86CD10730595007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86CE10730596007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86D110730596007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86D210730596007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86D310730596007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86D410730596007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86D710730596007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86D810730596007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86DB10730596007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86DC10730596007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A86DD10730596007319AE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + 002A86DE10730596007319AE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + 002A871610730623007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A871A10730623007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A871C10730623007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872110730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872410730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872510730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872710730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872810730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872910730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872B10730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872D10730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A872E10730624007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A873010730625007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A873210730625007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A873310730625007319AE /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + 002A873B10730675007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A873F10730675007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A874110730676007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A874610730676007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A874910730676007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A874A10730676007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A874C10730676007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A874D10730677007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A874E10730677007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A875010730677007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A875210730677007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A875310730677007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A875510730677007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A875710730678007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A875810730678007319AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + 002A875E10730745007319AE /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + 002F33AA09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33AF09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B009CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B209CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B509CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B609CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B709CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33B809CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BC09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33BF09CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F33C109CA188600EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F340B09CA1BFF00EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F341709CA1C5B00EBEB88 /* testfile.c */; }; + 002F342A09CA1F0300EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F343609CA1F6F00EBEB88 /* testiconv.c */; }; + 002F344609CA1FB300EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F345409CA202000EBEB88 /* testoverlay2.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F345209CA201C00EBEB88 /* testoverlay2.c */; }; + 002F346309CA204F00EBEB88 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + 002F347009CA20A600EBEB88 /* testplatform.c in Sources */ = {isa = PBXBuildFile; fileRef = 002F346F09CA20A600EBEB88 /* testplatform.c */; }; + 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6209D20839003FC8A1 /* sample.wav */; }; + 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6309D20839003FC8A1 /* utf8.txt */; }; + 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; }; + 453774A5120915E3002F0F45 /* testshape.c in Sources */ = {isa = PBXBuildFile; fileRef = 453774A4120915E3002F0F45 /* testshape.c */; }; + BBFC08C0164C6862003E6A99 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + BBFC08C1164C6862003E6A99 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + BBFC08C2164C6862003E6A99 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + BBFC08C3164C6862003E6A99 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + BBFC08C4164C6862003E6A99 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + BBFC08C5164C6862003E6A99 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + BBFC08C7164C6862003E6A99 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + BBFC08C8164C6862003E6A99 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + BBFC08C9164C6862003E6A99 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + BBFC08D0164C6876003E6A99 /* testgamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = BBFC088E164C6820003E6A99 /* testgamecontroller.c */; }; + BEC566B10761D90300A33029 /* checkkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D10FFB30A2C7F000001 /* checkkeys.c */; }; + BEC566CB0761D90300A33029 /* loopwave.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4872006D84C97F000001 /* loopwave.c */; }; + BEC567010761D90300A33029 /* testerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4878006D85357F000001 /* testerror.c */; }; + BEC567290761D90400A33029 /* testthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D58FFB311A97F000001 /* testthread.c */; }; + BEC567360761D90400A33029 /* testjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D62FFB312AA7F000001 /* testjoystick.c */; }; + BEC567430761D90400A33029 /* testkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D6CFFB313437F000001 /* testkeys.c */; }; + BEC567500761D90400A33029 /* testlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 092D6D75FFB313BB7F000001 /* testlock.c */; }; + BEC567780761D90500A33029 /* testsem.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E487E006D86A17F000001 /* testsem.c */; }; + BEC567930761D90500A33029 /* testtimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4880006D86A17F000001 /* testtimer.c */; }; + BEC567AD0761D90500A33029 /* testver.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4882006D86A17F000001 /* testver.c */; }; + BEC567F00761D90600A33029 /* torturethread.c in Sources */ = {isa = PBXBuildFile; fileRef = 083E4887006D86A17F000001 /* torturethread.c */; }; + DB0F48DD17CA51E5008798C5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB0F48DE17CA51E5008798C5 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB0F48DF17CA51E5008798C5 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB0F48E017CA51E5008798C5 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB0F48E117CA51E5008798C5 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB0F48E217CA51E5008798C5 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB0F48E417CA51E5008798C5 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB0F48E517CA51E5008798C5 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB0F48E617CA51E5008798C5 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB0F48EE17CA51F8008798C5 /* testdrawchessboard.c in Sources */ = {isa = PBXBuildFile; fileRef = DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */; }; + DB0F48F317CA5212008798C5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB0F48F417CA5212008798C5 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB0F48F517CA5212008798C5 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB0F48F617CA5212008798C5 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB0F48F717CA5212008798C5 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB0F48F817CA5212008798C5 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB0F48FA17CA5212008798C5 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB0F48FB17CA5212008798C5 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB0F48FC17CA5212008798C5 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB0F490317CA5225008798C5 /* testfilesystem.c in Sources */ = {isa = PBXBuildFile; fileRef = DB0F48D817CA51D2008798C5 /* testfilesystem.c */; }; + DB166D7116A1CFB200A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166D7216A1CFB200A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166D7316A1CFB200A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166D7416A1CFB200A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166D7516A1CFB200A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166D7616A1CFB200A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166D7716A1CFB200A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166D7816A1CFB200A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166D7A16A1CFD500A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166D9316A1D1A500A1396C /* SDL_test_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8416A1D1A500A1396C /* SDL_test_assert.c */; }; + DB166D9416A1D1A500A1396C /* SDL_test_common.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8516A1D1A500A1396C /* SDL_test_common.c */; }; + DB166D9516A1D1A500A1396C /* SDL_test_compare.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8616A1D1A500A1396C /* SDL_test_compare.c */; }; + DB166D9616A1D1A500A1396C /* SDL_test_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */; }; + DB166D9716A1D1A500A1396C /* SDL_test_font.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8816A1D1A500A1396C /* SDL_test_font.c */; }; + DB166D9816A1D1A500A1396C /* SDL_test_fuzzer.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */; }; + DB166D9916A1D1A500A1396C /* SDL_test_harness.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */; }; + DB166D9A16A1D1A500A1396C /* SDL_test_imageBlit.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8B16A1D1A500A1396C /* SDL_test_imageBlit.c */; }; + DB166D9B16A1D1A500A1396C /* SDL_test_imageBlitBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8C16A1D1A500A1396C /* SDL_test_imageBlitBlend.c */; }; + DB166D9C16A1D1A500A1396C /* SDL_test_imageFace.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8D16A1D1A500A1396C /* SDL_test_imageFace.c */; }; + DB166D9D16A1D1A500A1396C /* SDL_test_imagePrimitives.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8E16A1D1A500A1396C /* SDL_test_imagePrimitives.c */; }; + DB166D9E16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D8F16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c */; }; + DB166D9F16A1D1A500A1396C /* SDL_test_log.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9016A1D1A500A1396C /* SDL_test_log.c */; }; + DB166DA016A1D1A500A1396C /* SDL_test_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9116A1D1A500A1396C /* SDL_test_md5.c */; }; + DB166DA116A1D1A500A1396C /* SDL_test_random.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166D9216A1D1A500A1396C /* SDL_test_random.c */; }; + DB166DA216A1D1E900A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DA316A1D1FA00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DA416A1D21700A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DA716A1D24D00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DAA16A1D27700A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DAB16A1D27C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DAC16A1D29000A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DB116A1D2F600A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166DB216A1D2F600A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166DB316A1D2F600A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166DB416A1D2F600A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166DB516A1D2F600A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166DB616A1D2F600A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166DB816A1D2F600A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166DB916A1D2F600A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166DBA16A1D2F600A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166DC116A1D31E00A1396C /* testgesture.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBB16A1C74100A1396C /* testgesture.c */; }; + DB166DC816A1D36A00A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166DC916A1D36A00A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166DCA16A1D36A00A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166DCB16A1D36A00A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166DCC16A1D36A00A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166DCD16A1D36A00A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166DCF16A1D36A00A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166DD016A1D36A00A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166DD116A1D36A00A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166DD716A1D37800A1396C /* testmessage.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBD16A1C74100A1396C /* testmessage.c */; }; + DB166DDB16A1D42F00A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + DB166DE016A1D50C00A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166DE116A1D50C00A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166DE216A1D50C00A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166DE316A1D50C00A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166DE416A1D50C00A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166DE516A1D50C00A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166DE716A1D50C00A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166DE816A1D50C00A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166DE916A1D50C00A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166DEA16A1D50C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166DF016A1D52500A1396C /* testrelative.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CBF16A1C74100A1396C /* testrelative.c */; }; + DB166DF716A1D57C00A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166DF816A1D57C00A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166DF916A1D57C00A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166DFA16A1D57C00A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166DFB16A1D57C00A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166DFC16A1D57C00A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166DFE16A1D57C00A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166DFF16A1D57C00A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166E0016A1D57C00A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166E0116A1D57C00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166E0716A1D59400A1396C /* testrendercopyex.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC016A1C74100A1396C /* testrendercopyex.c */; }; + DB166E0E16A1D5AD00A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166E0F16A1D5AD00A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166E1016A1D5AD00A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166E1116A1D5AD00A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166E1216A1D5AD00A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166E1316A1D5AD00A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166E1516A1D5AD00A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166E1616A1D5AD00A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166E1716A1D5AD00A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166E1816A1D5AD00A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166E1E16A1D5C300A1396C /* testrendertarget.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC116A1C74100A1396C /* testrendertarget.c */; }; + DB166E2216A1D5EC00A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; }; + DB166E2316A1D60B00A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + DB166E2516A1D61900A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + DB166E2616A1D61900A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; }; + DB166E2B16A1D64D00A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166E2C16A1D64D00A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166E2D16A1D64D00A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166E2E16A1D64D00A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166E2F16A1D64D00A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166E3016A1D64D00A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166E3216A1D64D00A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166E3316A1D64D00A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166E3416A1D64D00A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166E3C16A1D66500A1396C /* testrumble.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC216A1C74100A1396C /* testrumble.c */; }; + DB166E4116A1D69000A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166E4216A1D69000A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166E4316A1D69000A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166E4416A1D69000A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166E4516A1D69000A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166E4616A1D69000A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166E4816A1D69000A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166E4916A1D69000A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166E4A16A1D69000A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166E4B16A1D69000A1396C /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB166E4D16A1D69000A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + DB166E4E16A1D69000A1396C /* sample.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E6109D20839003FC8A1 /* sample.bmp */; }; + DB166E5416A1D6A300A1396C /* testscale.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC316A1C74100A1396C /* testscale.c */; }; + DB166E5B16A1D6F300A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166E5C16A1D6F300A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166E5D16A1D6F300A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166E5E16A1D6F300A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166E5F16A1D6F300A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166E6016A1D6F300A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166E6216A1D6F300A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166E6316A1D6F300A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166E6416A1D6F300A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166E6A16A1D70C00A1396C /* testshader.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC416A1C74100A1396C /* testshader.c */; }; + DB166E7116A1D78400A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166E7216A1D78400A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166E7316A1D78400A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166E7416A1D78400A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166E7516A1D78400A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166E7616A1D78400A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166E7816A1D78400A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166E7916A1D78400A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166E7A16A1D78400A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166E8416A1D78C00A1396C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB166E8516A1D78C00A1396C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB166E8616A1D78C00A1396C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB166E8716A1D78C00A1396C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB166E8816A1D78C00A1396C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB166E8916A1D78C00A1396C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB166E8B16A1D78C00A1396C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB166E8C16A1D78C00A1396C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB166E8D16A1D78C00A1396C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB166E9316A1D7BC00A1396C /* testspriteminimal.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC516A1C74100A1396C /* testspriteminimal.c */; }; + DB166E9416A1D7C700A1396C /* teststreaming.c in Sources */ = {isa = PBXBuildFile; fileRef = DB166CC616A1C74100A1396C /* teststreaming.c */; }; + DB166E9A16A1D7F700A1396C /* moose.dat in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5E09D20839003FC8A1 /* moose.dat */; }; + DB166E9C16A1D80900A1396C /* icon.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = 00794E5D09D20839003FC8A1 /* icon.bmp */; }; + DB166ED016A1D88100A1396C /* shapes in CopyFiles */ = {isa = PBXBuildFile; fileRef = DB166ECF16A1D87000A1396C /* shapes */; }; + DB445EEA18184B7000B306B0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB445EEB18184B7000B306B0 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB445EEC18184B7000B306B0 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB445EED18184B7000B306B0 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB445EEE18184B7000B306B0 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB445EEF18184B7000B306B0 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB445EF118184B7000B306B0 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB445EF218184B7000B306B0 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB445EF318184B7000B306B0 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB445EF418184B7000B306B0 /* libSDL_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DB166D7F16A1D12400A1396C /* libSDL_test.a */; }; + DB445EFB18184BB600B306B0 /* testdropfile.c in Sources */ = {isa = PBXBuildFile; fileRef = DB445EFA18184BB600B306B0 /* testdropfile.c */; }; + DB89957118A19ABA0092407C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DB89957218A19ABA0092407C /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DB89957318A19ABA0092407C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DB89957418A19ABA0092407C /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DB89957518A19ABA0092407C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DB89957618A19ABA0092407C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DB89957818A19ABA0092407C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DB89957918A19ABA0092407C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DB89957A18A19ABA0092407C /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DB89958418A19B130092407C /* testhotplug.c in Sources */ = {isa = PBXBuildFile; fileRef = DB89958318A19B130092407C /* testhotplug.c */; }; + DBEC54DD1A1A81C3005B1EAB /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + DBEC54DE1A1A81C3005B1EAB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002F33A709CA188600EBEB88 /* Cocoa.framework */; }; + DBEC54DF1A1A81C3005B1EAB /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 003FA645093FFD41000C53B3 /* libSDL2.a */; }; + DBEC54E01A1A81C3005B1EAB /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863B10730545007319AE /* CoreAudio.framework */; }; + DBEC54E11A1A81C3005B1EAB /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863C10730545007319AE /* ForceFeedback.framework */; }; + DBEC54E21A1A81C3005B1EAB /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A863D10730545007319AE /* IOKit.framework */; }; + DBEC54E31A1A81C3005B1EAB /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A869F10730593007319AE /* AudioToolbox.framework */; }; + DBEC54E41A1A81C3005B1EAB /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A86A010730593007319AE /* CoreFoundation.framework */; }; + DBEC54E51A1A81C3005B1EAB /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A871410730623007319AE /* AudioUnit.framework */; }; + DBEC54E61A1A81C3005B1EAB /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002A873910730675007319AE /* Carbon.framework */; }; + DBEC54EB1A1A8205005B1EAB /* controllermap.c in Sources */ = {isa = PBXBuildFile; fileRef = DBEC54D11A1A811D005B1EAB /* controllermap.c */; }; + DBEC54ED1A1A828A005B1EAB /* axis.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D61A1A8145005B1EAB /* axis.bmp */; }; + DBEC54EE1A1A828D005B1EAB /* button.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D71A1A8145005B1EAB /* button.bmp */; }; + DBEC54EF1A1A828F005B1EAB /* controllermap.bmp in CopyFiles */ = {isa = PBXBuildFile; fileRef = DBEC54D81A1A8145005B1EAB /* controllermap.bmp */; }; + FA73672319A54A90004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672819A54AB6004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672919A54AB9004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672A19A54AC0004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672B19A54AC2004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672C19A54AC5004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672D19A54AC7004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672E19A54ACA004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73672F19A54ACC004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673019A54AD0004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673119A54AD3004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673219A54AD5004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673319A54AD8004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673419A54ADB004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673519A54ADE004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673619A54AE1004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673719A54AE3004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673819A54AE6004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673919A54AE8004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673A19A54AEB004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673B19A54AED004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673C19A54AF0004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673D19A54AF3004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673E19A54AF6004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73673F19A54AF8004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674019A54AFB004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674119A54AFE004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674219A54B01004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674319A54B04004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674419A54B06004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674519A54B09004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674619A54B0B004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674719A54B0F004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674819A54B13004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674919A54B16004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674A19A54B19004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674B19A54B1B004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674C19A54B1F004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674D19A54B22004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674E19A54B25004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73674F19A54B28004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73675019A54B2B004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73675119A54B2F004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73675219A54B32004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; + FA73675319A54B35004122E4 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FA73672219A54A90004122E4 /* CoreVideo.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 001799471074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566AB0761D90300A33029; + remoteInfo = checkkeys; + }; + 0017994B1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566C50761D90300A33029; + remoteInfo = loopwave; + }; + 0017994F1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0017957410741F7900F5D044; + remoteInfo = testatomic; + }; + 001799511074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 00179595107421BF00F5D044; + remoteInfo = testaudioinfo; + }; + 001799591074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 00179756107431B300F5D044; + remoteInfo = testdraw2; + }; + 0017995D1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC566FB0761D90300A33029; + remoteInfo = testerror; + }; + 0017995F1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F340109CA1BFF00EBEB88; + remoteInfo = testfile; + }; + 001799651074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0017970910742F3200F5D044; + remoteInfo = testgl2; + }; + 001799671074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 00179730107430D600F5D044; + remoteInfo = testhaptic; + }; + 001799691074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567230761D90400A33029; + remoteInfo = testthread; + }; + 0017996B1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F342009CA1F0300EBEB88; + remoteInfo = testiconv; + }; + 0017996D1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 00179776107432AE00F5D044; + remoteInfo = testime; + }; + 0017996F1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 001797961074334C00F5D044; + remoteInfo = testintersections; + }; + 001799711074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567300761D90400A33029; + remoteInfo = testjoystick; + }; + 001799731074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC5673D0761D90400A33029; + remoteInfo = testkeys; + }; + 001799751074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 001797B8107433C600F5D044; + remoteInfo = testloadso; + }; + 001799771074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC5674A0761D90400A33029; + remoteInfo = testlock; + }; + 0017997B1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 001797FA1074355200F5D044; + remoteInfo = testmultiaudio; + }; + 0017997F1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 001798781074392D00F5D044; + remoteInfo = testnativex11; + }; + 001799831074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F343C09CA1FB300EBEB88; + remoteInfo = testoverlay2; + }; + 001799871074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 002F345909CA204F00EBEB88; + remoteInfo = testplatform; + }; + 001799891074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0017989D107439DF00F5D044; + remoteInfo = testpower; + }; + 0017998B1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 001798DA10743BEC00F5D044; + remoteInfo = testresample; + }; + 0017998D1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567720761D90500A33029; + remoteInfo = testsem; + }; + 001799911074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 001798FE10743F1000F5D044; + remoteInfo = testsprite2; + }; + 001799931074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC5678D0761D90500A33029; + remoteInfo = testtimer; + }; + 001799951074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567A70761D90500A33029; + remoteInfo = testversion; + }; + 0017999D1074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0017992010743FB700F5D044; + remoteInfo = testwm2; + }; + 001799A11074403E00F5D044 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BEC567EA0761D90600A33029; + remoteInfo = torturethread; + }; + 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF66C0761BA81005FE872; + remoteInfo = Framework; + }; + 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF6B30761BA81005FE872; + remoteInfo = "Static Library"; + }; + 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = BECDF6BE0761BA81005FE872; + remoteInfo = "Standard DMG"; + }; + DB0F490417CA5249008798C5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB0F48D917CA51E5008798C5; + remoteInfo = testdrawchessboard; + }; + DB0F490617CA5249008798C5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB0F48EF17CA5212008798C5; + remoteInfo = testfilesystem; + }; + DB166D6D16A1CEAA00A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BBFC08B7164C6862003E6A99; + remoteInfo = testgamecontroller; + }; + DB166D6F16A1CEAF00A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4537749112091504002F0F45; + remoteInfo = testshape; + }; + DB166DC216A1D32C00A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166DAD16A1D2F600A1396C; + remoteInfo = testgesture; + }; + DB166DD816A1D38900A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166DC416A1D36A00A1396C; + remoteInfo = testmessage; + }; + DB166DF116A1D53700A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166DDC16A1D50C00A1396C; + remoteInfo = testrelative; + }; + DB166E0816A1D5A400A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166DF316A1D57C00A1396C; + remoteInfo = testrendercopyex; + }; + DB166E1F16A1D5D000A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166E0A16A1D5AD00A1396C; + remoteInfo = testrendertarget; + }; + DB166E3A16A1D65A00A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166E2716A1D64D00A1396C; + remoteInfo = testrumble; + }; + DB166E5516A1D6B800A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166E3D16A1D69000A1396C; + remoteInfo = testscale; + }; + DB166E6B16A1D72000A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166E5716A1D6F300A1396C; + remoteInfo = testshader; + }; + DB166E9516A1D7CD00A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166E6D16A1D78400A1396C; + remoteInfo = testspriteminimal; + }; + DB166E9716A1D7CF00A1396C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB166E8016A1D78C00A1396C; + remoteInfo = teststreaming; + }; + DB1D40D617B3F30D00D74CFC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = DB31407717554B71006C0E22; + remoteInfo = "Shared Library"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 00794E6409D2084F003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794E6609D20865003FC8A1 /* sample.wav in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EEC09D2371F003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EF009D23739003FC8A1 /* utf8.txt in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00794EF409D237C7003FC8A1 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + 00794EF709D237DE003FC8A1 /* moose.dat in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB0F48E717CA51E5008798C5 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB0F48FD17CA5212008798C5 /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DDA16A1D40F00A1396C /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DB166DDB16A1D42F00A1396C /* icon.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E2116A1D5DF00A1396C /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DB166E2316A1D60B00A1396C /* icon.bmp in CopyFiles */, + DB166E2216A1D5EC00A1396C /* sample.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E2416A1D61000A1396C /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DB166E2516A1D61900A1396C /* icon.bmp in CopyFiles */, + DB166E2616A1D61900A1396C /* sample.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E4C16A1D69000A1396C /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DB166E4D16A1D69000A1396C /* icon.bmp in CopyFiles */, + DB166E4E16A1D69000A1396C /* sample.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E9916A1D7EE00A1396C /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DB166E9A16A1D7F700A1396C /* moose.dat in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E9B16A1D7FC00A1396C /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DB166E9C16A1D80900A1396C /* icon.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166ECE16A1D85400A1396C /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DB166ED016A1D88100A1396C /* shapes in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DBEC54EC1A1A827C005B1EAB /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 16; + files = ( + DBEC54ED1A1A828A005B1EAB /* axis.bmp in CopyFiles */, + DBEC54EE1A1A828D005B1EAB /* button.bmp in CopyFiles */, + DBEC54EF1A1A828F005B1EAB /* controllermap.bmp in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 0017958C10741F7900F5D044 /* testatomic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testatomic; sourceTree = BUILT_PRODUCTS_DIR; }; + 0017958F1074216E00F5D044 /* testatomic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testatomic.c; path = ../../test/testatomic.c; sourceTree = SOURCE_ROOT; }; + 001795AD107421BF00F5D044 /* testaudioinfo */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testaudioinfo; sourceTree = BUILT_PRODUCTS_DIR; }; + 001795B01074222D00F5D044 /* testaudioinfo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testaudioinfo.c; path = ../../test/testaudioinfo.c; sourceTree = SOURCE_ROOT; }; + 0017972110742F3200F5D044 /* testgl2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testgl2; sourceTree = BUILT_PRODUCTS_DIR; }; + 0017972710742FB900F5D044 /* testgl2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testgl2.c; path = ../../test/testgl2.c; sourceTree = SOURCE_ROOT; }; + 00179748107430D600F5D044 /* testhaptic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testhaptic; sourceTree = BUILT_PRODUCTS_DIR; }; + 0017974E1074315700F5D044 /* testhaptic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testhaptic.c; path = ../../test/testhaptic.c; sourceTree = SOURCE_ROOT; }; + 0017976E107431B300F5D044 /* testdraw2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testdraw2; sourceTree = BUILT_PRODUCTS_DIR; }; + 001797711074320D00F5D044 /* testdraw2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testdraw2.c; path = ../../test/testdraw2.c; sourceTree = SOURCE_ROOT; }; + 0017978E107432AE00F5D044 /* testime */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testime; sourceTree = BUILT_PRODUCTS_DIR; }; + 00179791107432FA00F5D044 /* testime.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testime.c; path = ../../test/testime.c; sourceTree = SOURCE_ROOT; }; + 001797AE1074334C00F5D044 /* testintersections */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testintersections; sourceTree = BUILT_PRODUCTS_DIR; }; + 001797B31074339C00F5D044 /* testintersections.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testintersections.c; path = ../../test/testintersections.c; sourceTree = SOURCE_ROOT; }; + 001797D0107433C600F5D044 /* testloadso */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testloadso; sourceTree = BUILT_PRODUCTS_DIR; }; + 001797D31074343E00F5D044 /* testloadso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testloadso.c; path = ../../test/testloadso.c; sourceTree = SOURCE_ROOT; }; + 001798121074355200F5D044 /* testmultiaudio */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testmultiaudio; sourceTree = BUILT_PRODUCTS_DIR; }; + 001798151074359B00F5D044 /* testmultiaudio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testmultiaudio.c; path = ../../test/testmultiaudio.c; sourceTree = SOURCE_ROOT; }; + 0017985A107436ED00F5D044 /* testnative.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testnative.c; path = ../../test/testnative.c; sourceTree = SOURCE_ROOT; }; + 0017985B107436ED00F5D044 /* testnative.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = testnative.h; path = ../../test/testnative.h; sourceTree = SOURCE_ROOT; }; + 0017985C107436ED00F5D044 /* testnativecocoa.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = testnativecocoa.m; path = ../../test/testnativecocoa.m; sourceTree = SOURCE_ROOT; }; + 00179872107438D000F5D044 /* testnativex11.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testnativex11.c; path = ../../test/testnativex11.c; sourceTree = SOURCE_ROOT; }; + 001798941074392D00F5D044 /* testnative */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testnative; sourceTree = BUILT_PRODUCTS_DIR; }; + 001798B5107439DF00F5D044 /* testpower */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testpower; sourceTree = BUILT_PRODUCTS_DIR; }; + 001798B910743A4900F5D044 /* testpower.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testpower.c; path = ../../test/testpower.c; sourceTree = SOURCE_ROOT; }; + 001798F210743BEC00F5D044 /* testresample */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testresample; sourceTree = BUILT_PRODUCTS_DIR; }; + 001798F910743E9200F5D044 /* testresample.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testresample.c; path = ../../test/testresample.c; sourceTree = SOURCE_ROOT; }; + 0017991610743F1000F5D044 /* testsprite2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testsprite2; sourceTree = BUILT_PRODUCTS_DIR; }; + 0017991910743F5300F5D044 /* testsprite2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testsprite2.c; path = ../../test/testsprite2.c; sourceTree = SOURCE_ROOT; }; + 0017993810743FB700F5D044 /* testwm2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testwm2; sourceTree = BUILT_PRODUCTS_DIR; }; + 0017993B10743FEF00F5D044 /* testwm2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testwm2.c; path = ../../test/testwm2.c; sourceTree = SOURCE_ROOT; }; + 002A863B10730545007319AE /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = ""; }; + 002A863C10730545007319AE /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ForceFeedback.framework; path = /System/Library/Frameworks/ForceFeedback.framework; sourceTree = ""; }; + 002A863D10730545007319AE /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = ""; }; + 002A869F10730593007319AE /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = /System/Library/Frameworks/AudioToolbox.framework; sourceTree = ""; }; + 002A86A010730593007319AE /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = ""; }; + 002A871410730623007319AE /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = /System/Library/Frameworks/AudioUnit.framework; sourceTree = ""; }; + 002A873910730675007319AE /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; + 002F33A709CA188600EBEB88 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; + 002F341209CA1BFF00EBEB88 /* testfile */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testfile; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F341709CA1C5B00EBEB88 /* testfile.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testfile.c; path = ../../test/testfile.c; sourceTree = SOURCE_ROOT; }; + 002F343109CA1F0300EBEB88 /* testiconv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testiconv; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F343609CA1F6F00EBEB88 /* testiconv.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testiconv.c; path = ../../test/testiconv.c; sourceTree = SOURCE_ROOT; }; + 002F344D09CA1FB300EBEB88 /* testoverlay2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testoverlay2; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F345209CA201C00EBEB88 /* testoverlay2.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testoverlay2.c; path = ../../test/testoverlay2.c; sourceTree = SOURCE_ROOT; }; + 002F346A09CA204F00EBEB88 /* testplatform */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testplatform; sourceTree = BUILT_PRODUCTS_DIR; }; + 002F346F09CA20A600EBEB88 /* testplatform.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testplatform.c; path = ../../test/testplatform.c; sourceTree = SOURCE_ROOT; }; + 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDL.xcodeproj; path = ../SDL/SDL.xcodeproj; sourceTree = SOURCE_ROOT; }; + 00794E5D09D20839003FC8A1 /* icon.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = icon.bmp; path = ../../test/icon.bmp; sourceTree = SOURCE_ROOT; }; + 00794E5E09D20839003FC8A1 /* moose.dat */ = {isa = PBXFileReference; lastKnownFileType = file; name = moose.dat; path = ../../test/moose.dat; sourceTree = SOURCE_ROOT; }; + 00794E5F09D20839003FC8A1 /* picture.xbm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = picture.xbm; path = ../../test/picture.xbm; sourceTree = SOURCE_ROOT; }; + 00794E6109D20839003FC8A1 /* sample.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = sample.bmp; path = ../../test/sample.bmp; sourceTree = SOURCE_ROOT; }; + 00794E6209D20839003FC8A1 /* sample.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = sample.wav; path = ../../test/sample.wav; sourceTree = SOURCE_ROOT; }; + 00794E6309D20839003FC8A1 /* utf8.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = utf8.txt; path = ../../test/utf8.txt; sourceTree = SOURCE_ROOT; }; + 083E4872006D84C97F000001 /* loopwave.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = loopwave.c; path = ../../test/loopwave.c; sourceTree = SOURCE_ROOT; }; + 083E4878006D85357F000001 /* testerror.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testerror.c; path = ../../test/testerror.c; sourceTree = SOURCE_ROOT; }; + 083E487E006D86A17F000001 /* testsem.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testsem.c; path = ../../test/testsem.c; sourceTree = SOURCE_ROOT; }; + 083E4880006D86A17F000001 /* testtimer.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testtimer.c; path = ../../test/testtimer.c; sourceTree = SOURCE_ROOT; }; + 083E4882006D86A17F000001 /* testver.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testver.c; path = ../../test/testver.c; sourceTree = SOURCE_ROOT; }; + 083E4887006D86A17F000001 /* torturethread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = torturethread.c; path = ../../test/torturethread.c; sourceTree = SOURCE_ROOT; }; + 092D6D10FFB30A2C7F000001 /* checkkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = checkkeys.c; path = ../../test/checkkeys.c; sourceTree = SOURCE_ROOT; }; + 092D6D58FFB311A97F000001 /* testthread.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testthread.c; path = ../../test/testthread.c; sourceTree = SOURCE_ROOT; }; + 092D6D62FFB312AA7F000001 /* testjoystick.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testjoystick.c; path = ../../test/testjoystick.c; sourceTree = SOURCE_ROOT; }; + 092D6D6CFFB313437F000001 /* testkeys.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testkeys.c; path = ../../test/testkeys.c; sourceTree = SOURCE_ROOT; }; + 092D6D75FFB313BB7F000001 /* testlock.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = testlock.c; path = ../../test/testlock.c; sourceTree = SOURCE_ROOT; }; + 4537749212091504002F0F45 /* testshape */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testshape; sourceTree = BUILT_PRODUCTS_DIR; }; + 453774A4120915E3002F0F45 /* testshape.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testshape.c; path = ../../test/testshape.c; sourceTree = SOURCE_ROOT; }; + BBFC088E164C6820003E6A99 /* testgamecontroller.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testgamecontroller.c; path = ../../test/testgamecontroller.c; sourceTree = ""; }; + BBFC08CD164C6862003E6A99 /* testgamecontroller */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testgamecontroller; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC566B60761D90300A33029 /* checkkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = checkkeys; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC566D10761D90300A33029 /* loopwave */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = loopwave; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567060761D90400A33029 /* testerror */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testerror; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC5672E0761D90400A33029 /* testthread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testthread; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC5673B0761D90400A33029 /* testjoystick */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testjoystick; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567480761D90400A33029 /* testkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testkeys; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567550761D90400A33029 /* testlock */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testlock; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC5677D0761D90500A33029 /* testsem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testsem; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567980761D90500A33029 /* testtimer */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testtimer; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567B20761D90500A33029 /* testversion */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testversion; sourceTree = BUILT_PRODUCTS_DIR; }; + BEC567F50761D90600A33029 /* torturethread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = torturethread; sourceTree = BUILT_PRODUCTS_DIR; }; + DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testdrawchessboard.c; path = ../../test/testdrawchessboard.c; sourceTree = ""; }; + DB0F48D817CA51D2008798C5 /* testfilesystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testfilesystem.c; path = ../../test/testfilesystem.c; sourceTree = ""; }; + DB0F48EC17CA51E5008798C5 /* testdrawchessboard */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testdrawchessboard; sourceTree = BUILT_PRODUCTS_DIR; }; + DB0F490117CA5212008798C5 /* testfilesystem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testfilesystem; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166CBB16A1C74100A1396C /* testgesture.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testgesture.c; path = ../../test/testgesture.c; sourceTree = ""; }; + DB166CBC16A1C74100A1396C /* testgles.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testgles.c; path = ../../test/testgles.c; sourceTree = ""; }; + DB166CBD16A1C74100A1396C /* testmessage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testmessage.c; path = ../../test/testmessage.c; sourceTree = ""; }; + DB166CBF16A1C74100A1396C /* testrelative.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testrelative.c; path = ../../test/testrelative.c; sourceTree = ""; }; + DB166CC016A1C74100A1396C /* testrendercopyex.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testrendercopyex.c; path = ../../test/testrendercopyex.c; sourceTree = ""; }; + DB166CC116A1C74100A1396C /* testrendertarget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testrendertarget.c; path = ../../test/testrendertarget.c; sourceTree = ""; }; + DB166CC216A1C74100A1396C /* testrumble.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testrumble.c; path = ../../test/testrumble.c; sourceTree = ""; }; + DB166CC316A1C74100A1396C /* testscale.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testscale.c; path = ../../test/testscale.c; sourceTree = ""; }; + DB166CC416A1C74100A1396C /* testshader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testshader.c; path = ../../test/testshader.c; sourceTree = ""; }; + DB166CC516A1C74100A1396C /* testspriteminimal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = testspriteminimal.c; path = ../../test/testspriteminimal.c; sourceTree = ""; }; + DB166CC616A1C74100A1396C /* teststreaming.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = teststreaming.c; path = ../../test/teststreaming.c; sourceTree = ""; }; + DB166D7F16A1D12400A1396C /* libSDL_test.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libSDL_test.a; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166D8416A1D1A500A1396C /* SDL_test_assert.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_assert.c; path = ../../src/test/SDL_test_assert.c; sourceTree = ""; }; + DB166D8516A1D1A500A1396C /* SDL_test_common.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_common.c; path = ../../src/test/SDL_test_common.c; sourceTree = ""; }; + DB166D8616A1D1A500A1396C /* SDL_test_compare.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_compare.c; path = ../../src/test/SDL_test_compare.c; sourceTree = ""; }; + DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_crc32.c; path = ../../src/test/SDL_test_crc32.c; sourceTree = ""; }; + DB166D8816A1D1A500A1396C /* SDL_test_font.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_font.c; path = ../../src/test/SDL_test_font.c; sourceTree = ""; }; + DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_fuzzer.c; path = ../../src/test/SDL_test_fuzzer.c; sourceTree = ""; }; + DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_harness.c; path = ../../src/test/SDL_test_harness.c; sourceTree = ""; }; + DB166D8B16A1D1A500A1396C /* SDL_test_imageBlit.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imageBlit.c; path = ../../src/test/SDL_test_imageBlit.c; sourceTree = ""; }; + DB166D8C16A1D1A500A1396C /* SDL_test_imageBlitBlend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imageBlitBlend.c; path = ../../src/test/SDL_test_imageBlitBlend.c; sourceTree = ""; }; + DB166D8D16A1D1A500A1396C /* SDL_test_imageFace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imageFace.c; path = ../../src/test/SDL_test_imageFace.c; sourceTree = ""; }; + DB166D8E16A1D1A500A1396C /* SDL_test_imagePrimitives.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imagePrimitives.c; path = ../../src/test/SDL_test_imagePrimitives.c; sourceTree = ""; }; + DB166D8F16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_imagePrimitivesBlend.c; path = ../../src/test/SDL_test_imagePrimitivesBlend.c; sourceTree = ""; }; + DB166D9016A1D1A500A1396C /* SDL_test_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_log.c; path = ../../src/test/SDL_test_log.c; sourceTree = ""; }; + DB166D9116A1D1A500A1396C /* SDL_test_md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_md5.c; path = ../../src/test/SDL_test_md5.c; sourceTree = ""; }; + DB166D9216A1D1A500A1396C /* SDL_test_random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = SDL_test_random.c; path = ../../src/test/SDL_test_random.c; sourceTree = ""; }; + DB166DBF16A1D2F600A1396C /* testgesture */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testgesture; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166DD516A1D36A00A1396C /* testmessage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testmessage; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166DEE16A1D50C00A1396C /* testrelative */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testrelative; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166E0516A1D57C00A1396C /* testrendercopyex */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testrendercopyex; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166E1C16A1D5AD00A1396C /* testrendertarget */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testrendertarget; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166E3816A1D64D00A1396C /* testrumble */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testrumble; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166E5216A1D69000A1396C /* testscale */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testscale; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166E6816A1D6F300A1396C /* testshader */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testshader; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166E7E16A1D78400A1396C /* testspriteminimal */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testspriteminimal; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166E9116A1D78C00A1396C /* teststreaming */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = teststreaming; sourceTree = BUILT_PRODUCTS_DIR; }; + DB166ECF16A1D87000A1396C /* shapes */ = {isa = PBXFileReference; lastKnownFileType = folder; name = shapes; path = ../../test/shapes; sourceTree = ""; }; + DB445EF818184B7000B306B0 /* testdropfile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testdropfile.app; sourceTree = BUILT_PRODUCTS_DIR; }; + DB445EFA18184BB600B306B0 /* testdropfile.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testdropfile.c; path = ../../test/testdropfile.c; sourceTree = ""; }; + DB89957E18A19ABA0092407C /* testhotplug */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = testhotplug; sourceTree = BUILT_PRODUCTS_DIR; }; + DB89958318A19B130092407C /* testhotplug.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = testhotplug.c; path = ../../test/testhotplug.c; sourceTree = ""; }; + DBBC552C182831D700F3CA8D /* TestDropFile-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "TestDropFile-Info.plist"; sourceTree = ""; }; + DBEC54D11A1A811D005B1EAB /* controllermap.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = controllermap.c; path = ../../test/controllermap.c; sourceTree = ""; }; + DBEC54D61A1A8145005B1EAB /* axis.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = axis.bmp; path = ../../test/axis.bmp; sourceTree = ""; }; + DBEC54D71A1A8145005B1EAB /* button.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = button.bmp; path = ../../test/button.bmp; sourceTree = ""; }; + DBEC54D81A1A8145005B1EAB /* controllermap.bmp */ = {isa = PBXFileReference; lastKnownFileType = image.bmp; name = controllermap.bmp; path = ../../test/controllermap.bmp; sourceTree = ""; }; + DBEC54EA1A1A81C3005B1EAB /* controllermap */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = controllermap; sourceTree = BUILT_PRODUCTS_DIR; }; + FA73672219A54A90004122E4 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = /System/Library/Frameworks/CoreVideo.framework; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 0017957A10741F7900F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672919A54AB9004122E4 /* CoreVideo.framework in Frameworks */, + 0017957C10741F7900F5D044 /* Cocoa.framework in Frameworks */, + 0017957D10741F7900F5D044 /* CoreAudio.framework in Frameworks */, + 0017957E10741F7900F5D044 /* ForceFeedback.framework in Frameworks */, + 0017957F10741F7900F5D044 /* IOKit.framework in Frameworks */, + 0017958010741F7900F5D044 /* AudioToolbox.framework in Frameworks */, + 0017958110741F7900F5D044 /* CoreFoundation.framework in Frameworks */, + 0017958310741F7900F5D044 /* AudioUnit.framework in Frameworks */, + 0017958410741F7900F5D044 /* Carbon.framework in Frameworks */, + 0017958510741F7900F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017959B107421BF00F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672A19A54AC0004122E4 /* CoreVideo.framework in Frameworks */, + 0017959D107421BF00F5D044 /* Cocoa.framework in Frameworks */, + 0017959E107421BF00F5D044 /* CoreAudio.framework in Frameworks */, + 0017959F107421BF00F5D044 /* ForceFeedback.framework in Frameworks */, + 001795A0107421BF00F5D044 /* IOKit.framework in Frameworks */, + 001795A1107421BF00F5D044 /* AudioToolbox.framework in Frameworks */, + 001795A2107421BF00F5D044 /* CoreFoundation.framework in Frameworks */, + 001795A4107421BF00F5D044 /* AudioUnit.framework in Frameworks */, + 001795A5107421BF00F5D044 /* Carbon.framework in Frameworks */, + 001795A6107421BF00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017970F10742F3200F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673319A54AD8004122E4 /* CoreVideo.framework in Frameworks */, + 0017971110742F3200F5D044 /* Cocoa.framework in Frameworks */, + 0017971210742F3200F5D044 /* CoreAudio.framework in Frameworks */, + 0017971310742F3200F5D044 /* ForceFeedback.framework in Frameworks */, + 0017971410742F3200F5D044 /* IOKit.framework in Frameworks */, + 0017971510742F3200F5D044 /* AudioToolbox.framework in Frameworks */, + 0017971610742F3200F5D044 /* CoreFoundation.framework in Frameworks */, + 0017971810742F3200F5D044 /* AudioUnit.framework in Frameworks */, + 0017971910742F3200F5D044 /* Carbon.framework in Frameworks */, + 0017971A10742F3200F5D044 /* libSDL2.a in Frameworks */, + DB166DA316A1D1FA00A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00179736107430D600F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673419A54ADB004122E4 /* CoreVideo.framework in Frameworks */, + 00179738107430D600F5D044 /* Cocoa.framework in Frameworks */, + 00179739107430D600F5D044 /* CoreAudio.framework in Frameworks */, + 0017973A107430D600F5D044 /* ForceFeedback.framework in Frameworks */, + 0017973B107430D600F5D044 /* IOKit.framework in Frameworks */, + 0017973C107430D600F5D044 /* AudioToolbox.framework in Frameworks */, + 0017973D107430D600F5D044 /* CoreFoundation.framework in Frameworks */, + 0017973F107430D600F5D044 /* AudioUnit.framework in Frameworks */, + 00179740107430D600F5D044 /* Carbon.framework in Frameworks */, + 00179741107430D600F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017975C107431B300F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672B19A54AC2004122E4 /* CoreVideo.framework in Frameworks */, + 0017975E107431B300F5D044 /* Cocoa.framework in Frameworks */, + 0017975F107431B300F5D044 /* CoreAudio.framework in Frameworks */, + 00179760107431B300F5D044 /* ForceFeedback.framework in Frameworks */, + 00179761107431B300F5D044 /* IOKit.framework in Frameworks */, + 00179762107431B300F5D044 /* AudioToolbox.framework in Frameworks */, + 00179763107431B300F5D044 /* CoreFoundation.framework in Frameworks */, + 00179765107431B300F5D044 /* AudioUnit.framework in Frameworks */, + 00179766107431B300F5D044 /* Carbon.framework in Frameworks */, + 00179767107431B300F5D044 /* libSDL2.a in Frameworks */, + DB166DA216A1D1E900A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017977C107432AE00F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673719A54AE3004122E4 /* CoreVideo.framework in Frameworks */, + 0017977E107432AE00F5D044 /* Cocoa.framework in Frameworks */, + 0017977F107432AE00F5D044 /* CoreAudio.framework in Frameworks */, + 00179780107432AE00F5D044 /* ForceFeedback.framework in Frameworks */, + 00179781107432AE00F5D044 /* IOKit.framework in Frameworks */, + 00179782107432AE00F5D044 /* AudioToolbox.framework in Frameworks */, + 00179783107432AE00F5D044 /* CoreFoundation.framework in Frameworks */, + 00179785107432AE00F5D044 /* AudioUnit.framework in Frameworks */, + 00179786107432AE00F5D044 /* Carbon.framework in Frameworks */, + 00179787107432AE00F5D044 /* libSDL2.a in Frameworks */, + DB166DA716A1D24D00A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017979C1074334C00F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673819A54AE6004122E4 /* CoreVideo.framework in Frameworks */, + 0017979E1074334C00F5D044 /* Cocoa.framework in Frameworks */, + 0017979F1074334C00F5D044 /* CoreAudio.framework in Frameworks */, + 001797A01074334C00F5D044 /* ForceFeedback.framework in Frameworks */, + 001797A11074334C00F5D044 /* IOKit.framework in Frameworks */, + 001797A21074334C00F5D044 /* AudioToolbox.framework in Frameworks */, + 001797A31074334C00F5D044 /* CoreFoundation.framework in Frameworks */, + 001797A51074334C00F5D044 /* AudioUnit.framework in Frameworks */, + 001797A61074334C00F5D044 /* Carbon.framework in Frameworks */, + 001797A71074334C00F5D044 /* libSDL2.a in Frameworks */, + DB166DAA16A1D27700A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001797BE107433C600F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673B19A54AED004122E4 /* CoreVideo.framework in Frameworks */, + 001797C0107433C600F5D044 /* Cocoa.framework in Frameworks */, + 001797C1107433C600F5D044 /* CoreAudio.framework in Frameworks */, + 001797C2107433C600F5D044 /* ForceFeedback.framework in Frameworks */, + 001797C3107433C600F5D044 /* IOKit.framework in Frameworks */, + 001797C4107433C600F5D044 /* AudioToolbox.framework in Frameworks */, + 001797C5107433C600F5D044 /* CoreFoundation.framework in Frameworks */, + 001797C7107433C600F5D044 /* AudioUnit.framework in Frameworks */, + 001797C8107433C600F5D044 /* Carbon.framework in Frameworks */, + 001797C9107433C600F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001798001074355200F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673E19A54AF6004122E4 /* CoreVideo.framework in Frameworks */, + 001798021074355200F5D044 /* Cocoa.framework in Frameworks */, + 001798031074355200F5D044 /* CoreAudio.framework in Frameworks */, + 001798041074355200F5D044 /* ForceFeedback.framework in Frameworks */, + 001798051074355200F5D044 /* IOKit.framework in Frameworks */, + 001798061074355200F5D044 /* AudioToolbox.framework in Frameworks */, + 001798071074355200F5D044 /* CoreFoundation.framework in Frameworks */, + 001798091074355200F5D044 /* AudioUnit.framework in Frameworks */, + 0017980A1074355200F5D044 /* Carbon.framework in Frameworks */, + 0017980B1074355200F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001798821074392D00F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673F19A54AF8004122E4 /* CoreVideo.framework in Frameworks */, + 001798841074392D00F5D044 /* Cocoa.framework in Frameworks */, + 001798851074392D00F5D044 /* CoreAudio.framework in Frameworks */, + 001798861074392D00F5D044 /* ForceFeedback.framework in Frameworks */, + 001798871074392D00F5D044 /* IOKit.framework in Frameworks */, + 001798881074392D00F5D044 /* AudioToolbox.framework in Frameworks */, + 001798891074392D00F5D044 /* CoreFoundation.framework in Frameworks */, + 0017988B1074392D00F5D044 /* AudioUnit.framework in Frameworks */, + 0017988C1074392D00F5D044 /* Carbon.framework in Frameworks */, + 0017988D1074392D00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001798A3107439DF00F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674219A54B01004122E4 /* CoreVideo.framework in Frameworks */, + 001798A5107439DF00F5D044 /* Cocoa.framework in Frameworks */, + 001798A6107439DF00F5D044 /* CoreAudio.framework in Frameworks */, + 001798A7107439DF00F5D044 /* ForceFeedback.framework in Frameworks */, + 001798A8107439DF00F5D044 /* IOKit.framework in Frameworks */, + 001798A9107439DF00F5D044 /* AudioToolbox.framework in Frameworks */, + 001798AA107439DF00F5D044 /* CoreFoundation.framework in Frameworks */, + 001798AC107439DF00F5D044 /* AudioUnit.framework in Frameworks */, + 001798AD107439DF00F5D044 /* Carbon.framework in Frameworks */, + 001798AE107439DF00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001798E010743BEC00F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674619A54B0B004122E4 /* CoreVideo.framework in Frameworks */, + 001798E210743BEC00F5D044 /* Cocoa.framework in Frameworks */, + 001798E310743BEC00F5D044 /* CoreAudio.framework in Frameworks */, + 001798E410743BEC00F5D044 /* ForceFeedback.framework in Frameworks */, + 001798E510743BEC00F5D044 /* IOKit.framework in Frameworks */, + 001798E610743BEC00F5D044 /* AudioToolbox.framework in Frameworks */, + 001798E710743BEC00F5D044 /* CoreFoundation.framework in Frameworks */, + 001798E910743BEC00F5D044 /* AudioUnit.framework in Frameworks */, + 001798EA10743BEC00F5D044 /* Carbon.framework in Frameworks */, + 001798EB10743BEC00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017990410743F1000F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674C19A54B1F004122E4 /* CoreVideo.framework in Frameworks */, + 0017990610743F1000F5D044 /* Cocoa.framework in Frameworks */, + 0017990710743F1000F5D044 /* CoreAudio.framework in Frameworks */, + 0017990810743F1000F5D044 /* ForceFeedback.framework in Frameworks */, + 0017990910743F1000F5D044 /* IOKit.framework in Frameworks */, + 0017990A10743F1000F5D044 /* AudioToolbox.framework in Frameworks */, + 0017990B10743F1000F5D044 /* CoreFoundation.framework in Frameworks */, + 0017990D10743F1000F5D044 /* AudioUnit.framework in Frameworks */, + 0017990E10743F1000F5D044 /* Carbon.framework in Frameworks */, + 0017990F10743F1000F5D044 /* libSDL2.a in Frameworks */, + DB166DAB16A1D27C00A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017992610743FB700F5D044 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73675219A54B32004122E4 /* CoreVideo.framework in Frameworks */, + 0017992810743FB700F5D044 /* Cocoa.framework in Frameworks */, + 0017992910743FB700F5D044 /* CoreAudio.framework in Frameworks */, + 0017992A10743FB700F5D044 /* ForceFeedback.framework in Frameworks */, + 0017992B10743FB700F5D044 /* IOKit.framework in Frameworks */, + 0017992C10743FB700F5D044 /* AudioToolbox.framework in Frameworks */, + 0017992D10743FB700F5D044 /* CoreFoundation.framework in Frameworks */, + 0017992F10743FB700F5D044 /* AudioUnit.framework in Frameworks */, + 0017993010743FB700F5D044 /* Carbon.framework in Frameworks */, + 0017993110743FB700F5D044 /* libSDL2.a in Frameworks */, + DB166DAC16A1D29000A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F340809CA1BFF00EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672F19A54ACC004122E4 /* CoreVideo.framework in Frameworks */, + 002F340B09CA1BFF00EBEB88 /* Cocoa.framework in Frameworks */, + 002A866B10730548007319AE /* CoreAudio.framework in Frameworks */, + 002A866C10730548007319AE /* ForceFeedback.framework in Frameworks */, + 002A866D10730548007319AE /* IOKit.framework in Frameworks */, + 002A86BF10730595007319AE /* AudioToolbox.framework in Frameworks */, + 002A86C010730595007319AE /* CoreFoundation.framework in Frameworks */, + 002A872410730624007319AE /* AudioUnit.framework in Frameworks */, + 002A874910730676007319AE /* Carbon.framework in Frameworks */, + 001794D11073667B00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F342709CA1F0300EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673619A54AE1004122E4 /* CoreVideo.framework in Frameworks */, + 002F342A09CA1F0300EBEB88 /* Cocoa.framework in Frameworks */, + 002A866210730547007319AE /* CoreAudio.framework in Frameworks */, + 002A866310730547007319AE /* ForceFeedback.framework in Frameworks */, + 002A866410730547007319AE /* IOKit.framework in Frameworks */, + 002A86B910730594007319AE /* AudioToolbox.framework in Frameworks */, + 002A86BA10730594007319AE /* CoreFoundation.framework in Frameworks */, + 002A872110730624007319AE /* AudioUnit.framework in Frameworks */, + 002A874610730676007319AE /* Carbon.framework in Frameworks */, + 001794D41073668800F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F344309CA1FB300EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674019A54AFB004122E4 /* CoreVideo.framework in Frameworks */, + 002F344609CA1FB300EBEB88 /* Cocoa.framework in Frameworks */, + 002A868010730549007319AE /* CoreAudio.framework in Frameworks */, + 002A868110730549007319AE /* ForceFeedback.framework in Frameworks */, + 002A868210730549007319AE /* IOKit.framework in Frameworks */, + 002A86CD10730595007319AE /* AudioToolbox.framework in Frameworks */, + 002A86CE10730596007319AE /* CoreFoundation.framework in Frameworks */, + 002A872B10730624007319AE /* AudioUnit.framework in Frameworks */, + 002A875010730677007319AE /* Carbon.framework in Frameworks */, + 001794D91073669E00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F346009CA204F00EBEB88 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674119A54AFE004122E4 /* CoreVideo.framework in Frameworks */, + 002F346309CA204F00EBEB88 /* Cocoa.framework in Frameworks */, + 002A868610730549007319AE /* CoreAudio.framework in Frameworks */, + 002A868710730549007319AE /* ForceFeedback.framework in Frameworks */, + 002A868810730549007319AE /* IOKit.framework in Frameworks */, + 002A86D110730596007319AE /* AudioToolbox.framework in Frameworks */, + 002A86D210730596007319AE /* CoreFoundation.framework in Frameworks */, + 002A872D10730624007319AE /* AudioUnit.framework in Frameworks */, + 002A875210730677007319AE /* Carbon.framework in Frameworks */, + 001794DB107366A700F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4537749012091504002F0F45 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674B19A54B1B004122E4 /* CoreVideo.framework in Frameworks */, + DB166D7116A1CFB200A1396C /* AudioToolbox.framework in Frameworks */, + DB166D7216A1CFB200A1396C /* AudioUnit.framework in Frameworks */, + DB166D7316A1CFB200A1396C /* Carbon.framework in Frameworks */, + DB166D7416A1CFB200A1396C /* Cocoa.framework in Frameworks */, + DB166D7516A1CFB200A1396C /* CoreAudio.framework in Frameworks */, + DB166D7616A1CFB200A1396C /* CoreFoundation.framework in Frameworks */, + DB166D7716A1CFB200A1396C /* ForceFeedback.framework in Frameworks */, + DB166D7816A1CFB200A1396C /* IOKit.framework in Frameworks */, + DB166D7A16A1CFD500A1396C /* libSDL2.a in Frameworks */, + DB166DA416A1D21700A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BBFC08BE164C6862003E6A99 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673119A54AD3004122E4 /* CoreVideo.framework in Frameworks */, + BBFC08C0164C6862003E6A99 /* Cocoa.framework in Frameworks */, + BBFC08C1164C6862003E6A99 /* CoreAudio.framework in Frameworks */, + BBFC08C2164C6862003E6A99 /* ForceFeedback.framework in Frameworks */, + BBFC08C3164C6862003E6A99 /* IOKit.framework in Frameworks */, + BBFC08C4164C6862003E6A99 /* AudioToolbox.framework in Frameworks */, + BBFC08C5164C6862003E6A99 /* CoreFoundation.framework in Frameworks */, + BBFC08C7164C6862003E6A99 /* AudioUnit.framework in Frameworks */, + BBFC08C8164C6862003E6A99 /* Carbon.framework in Frameworks */, + BBFC08C9164C6862003E6A99 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566B20761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672319A54A90004122E4 /* CoreVideo.framework in Frameworks */, + 002F33C109CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A863010730405007319AE /* libSDL2.a in Frameworks */, + 002A864D10730546007319AE /* CoreAudio.framework in Frameworks */, + 002A864E10730546007319AE /* ForceFeedback.framework in Frameworks */, + 002A864F10730546007319AE /* IOKit.framework in Frameworks */, + 002A86AB10730594007319AE /* AudioToolbox.framework in Frameworks */, + 002A86AC10730594007319AE /* CoreFoundation.framework in Frameworks */, + 002A871A10730623007319AE /* AudioUnit.framework in Frameworks */, + 002A873F10730675007319AE /* Carbon.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566CC0761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672819A54AB6004122E4 /* CoreVideo.framework in Frameworks */, + 002F33BF09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A865310730547007319AE /* CoreAudio.framework in Frameworks */, + 002A865410730547007319AE /* ForceFeedback.framework in Frameworks */, + 002A865510730547007319AE /* IOKit.framework in Frameworks */, + 002A86AF10730594007319AE /* AudioToolbox.framework in Frameworks */, + 002A86B010730594007319AE /* CoreFoundation.framework in Frameworks */, + 002A871C10730623007319AE /* AudioUnit.framework in Frameworks */, + 002A874110730676007319AE /* Carbon.framework in Frameworks */, + 002A875E10730745007319AE /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567020761D90300A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672E19A54ACA004122E4 /* CoreVideo.framework in Frameworks */, + 002F33BC09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A866E10730548007319AE /* CoreAudio.framework in Frameworks */, + 002A866F10730548007319AE /* ForceFeedback.framework in Frameworks */, + 002A867010730548007319AE /* IOKit.framework in Frameworks */, + 002A86C110730595007319AE /* AudioToolbox.framework in Frameworks */, + 002A86C210730595007319AE /* CoreFoundation.framework in Frameworks */, + 002A872510730624007319AE /* AudioUnit.framework in Frameworks */, + 002A874A10730676007319AE /* Carbon.framework in Frameworks */, + 001794D01073667700F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5672A0761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674F19A54B28004122E4 /* CoreVideo.framework in Frameworks */, + 002F33B809CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A868F1073054A007319AE /* CoreAudio.framework in Frameworks */, + 002A86901073054A007319AE /* ForceFeedback.framework in Frameworks */, + 002A86911073054A007319AE /* IOKit.framework in Frameworks */, + 002A86D710730596007319AE /* AudioToolbox.framework in Frameworks */, + 002A86D810730596007319AE /* CoreFoundation.framework in Frameworks */, + 002A873010730625007319AE /* AudioUnit.framework in Frameworks */, + 002A875510730677007319AE /* Carbon.framework in Frameworks */, + 001794DE107366B900F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567370761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673919A54AE8004122E4 /* CoreVideo.framework in Frameworks */, + 002F33B709CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A867410730548007319AE /* CoreAudio.framework in Frameworks */, + 002A867510730548007319AE /* ForceFeedback.framework in Frameworks */, + 002A867610730548007319AE /* IOKit.framework in Frameworks */, + 002A86C510730595007319AE /* AudioToolbox.framework in Frameworks */, + 002A86C610730595007319AE /* CoreFoundation.framework in Frameworks */, + 002A872710730624007319AE /* AudioUnit.framework in Frameworks */, + 002A874C10730676007319AE /* Carbon.framework in Frameworks */, + 001794D51073668D00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567440761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673A19A54AEB004122E4 /* CoreVideo.framework in Frameworks */, + 002F33B509CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A867710730548007319AE /* CoreAudio.framework in Frameworks */, + 002A867810730548007319AE /* ForceFeedback.framework in Frameworks */, + 002A867910730549007319AE /* IOKit.framework in Frameworks */, + 002A86C710730595007319AE /* AudioToolbox.framework in Frameworks */, + 002A86C810730595007319AE /* CoreFoundation.framework in Frameworks */, + 002A872810730624007319AE /* AudioUnit.framework in Frameworks */, + 002A874D10730677007319AE /* Carbon.framework in Frameworks */, + 001794D61073669200F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567510761D90400A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673C19A54AF0004122E4 /* CoreVideo.framework in Frameworks */, + 002F33B609CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A867A10730549007319AE /* CoreAudio.framework in Frameworks */, + 002A867B10730549007319AE /* ForceFeedback.framework in Frameworks */, + 002A867C10730549007319AE /* IOKit.framework in Frameworks */, + 002A86C910730595007319AE /* AudioToolbox.framework in Frameworks */, + 002A86CA10730595007319AE /* CoreFoundation.framework in Frameworks */, + 002A872910730624007319AE /* AudioUnit.framework in Frameworks */, + 002A874E10730677007319AE /* Carbon.framework in Frameworks */, + 001794D71073669700F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567790761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674919A54B16004122E4 /* CoreVideo.framework in Frameworks */, + 002F33B209CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A868910730549007319AE /* CoreAudio.framework in Frameworks */, + 002A868A10730549007319AE /* ForceFeedback.framework in Frameworks */, + 002A868B1073054A007319AE /* IOKit.framework in Frameworks */, + 002A86D310730596007319AE /* AudioToolbox.framework in Frameworks */, + 002A86D410730596007319AE /* CoreFoundation.framework in Frameworks */, + 002A872E10730624007319AE /* AudioUnit.framework in Frameworks */, + 002A875310730677007319AE /* Carbon.framework in Frameworks */, + 001794DC107366AC00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567940761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73675019A54B2B004122E4 /* CoreVideo.framework in Frameworks */, + 002F33B009CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A86981073054A007319AE /* CoreAudio.framework in Frameworks */, + 002A86991073054A007319AE /* ForceFeedback.framework in Frameworks */, + 002A869A1073054A007319AE /* IOKit.framework in Frameworks */, + 002A86DD10730596007319AE /* AudioToolbox.framework in Frameworks */, + 002A86DE10730596007319AE /* CoreFoundation.framework in Frameworks */, + 002A873310730625007319AE /* AudioUnit.framework in Frameworks */, + 002A875810730678007319AE /* Carbon.framework in Frameworks */, + 001794DF107366BD00F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567AE0761D90500A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73675119A54B2F004122E4 /* CoreVideo.framework in Frameworks */, + 002F33AF09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A86951073054A007319AE /* CoreAudio.framework in Frameworks */, + 002A86961073054A007319AE /* ForceFeedback.framework in Frameworks */, + 002A86971073054A007319AE /* IOKit.framework in Frameworks */, + 002A86DB10730596007319AE /* AudioToolbox.framework in Frameworks */, + 002A86DC10730596007319AE /* CoreFoundation.framework in Frameworks */, + 002A873210730625007319AE /* AudioUnit.framework in Frameworks */, + 002A875710730678007319AE /* Carbon.framework in Frameworks */, + 001794E0107366C100F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567F10761D90600A33029 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73675319A54B35004122E4 /* CoreVideo.framework in Frameworks */, + 002F33AA09CA188600EBEB88 /* Cocoa.framework in Frameworks */, + 002A864110730546007319AE /* CoreAudio.framework in Frameworks */, + 002A864210730546007319AE /* ForceFeedback.framework in Frameworks */, + 002A864310730546007319AE /* IOKit.framework in Frameworks */, + 002A86A310730593007319AE /* AudioToolbox.framework in Frameworks */, + 002A86A410730593007319AE /* CoreFoundation.framework in Frameworks */, + 002A871610730623007319AE /* AudioUnit.framework in Frameworks */, + 002A873B10730675007319AE /* Carbon.framework in Frameworks */, + 001794E5107366D900F5D044 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB0F48DC17CA51E5008798C5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672C19A54AC5004122E4 /* CoreVideo.framework in Frameworks */, + DB0F48DD17CA51E5008798C5 /* Cocoa.framework in Frameworks */, + DB0F48DE17CA51E5008798C5 /* CoreAudio.framework in Frameworks */, + DB0F48DF17CA51E5008798C5 /* ForceFeedback.framework in Frameworks */, + DB0F48E017CA51E5008798C5 /* IOKit.framework in Frameworks */, + DB0F48E117CA51E5008798C5 /* AudioToolbox.framework in Frameworks */, + DB0F48E217CA51E5008798C5 /* CoreFoundation.framework in Frameworks */, + DB0F48E417CA51E5008798C5 /* AudioUnit.framework in Frameworks */, + DB0F48E517CA51E5008798C5 /* Carbon.framework in Frameworks */, + DB0F48E617CA51E5008798C5 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB0F48F217CA5212008798C5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673019A54AD0004122E4 /* CoreVideo.framework in Frameworks */, + DB0F48F317CA5212008798C5 /* Cocoa.framework in Frameworks */, + DB0F48F417CA5212008798C5 /* CoreAudio.framework in Frameworks */, + DB0F48F517CA5212008798C5 /* ForceFeedback.framework in Frameworks */, + DB0F48F617CA5212008798C5 /* IOKit.framework in Frameworks */, + DB0F48F717CA5212008798C5 /* AudioToolbox.framework in Frameworks */, + DB0F48F817CA5212008798C5 /* CoreFoundation.framework in Frameworks */, + DB0F48FA17CA5212008798C5 /* AudioUnit.framework in Frameworks */, + DB0F48FB17CA5212008798C5 /* Carbon.framework in Frameworks */, + DB0F48FC17CA5212008798C5 /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166D7C16A1D12400A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DB016A1D2F600A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673219A54AD5004122E4 /* CoreVideo.framework in Frameworks */, + DB166DB116A1D2F600A1396C /* Cocoa.framework in Frameworks */, + DB166DB216A1D2F600A1396C /* CoreAudio.framework in Frameworks */, + DB166DB316A1D2F600A1396C /* ForceFeedback.framework in Frameworks */, + DB166DB416A1D2F600A1396C /* IOKit.framework in Frameworks */, + DB166DB516A1D2F600A1396C /* AudioToolbox.framework in Frameworks */, + DB166DB616A1D2F600A1396C /* CoreFoundation.framework in Frameworks */, + DB166DB816A1D2F600A1396C /* AudioUnit.framework in Frameworks */, + DB166DB916A1D2F600A1396C /* Carbon.framework in Frameworks */, + DB166DBA16A1D2F600A1396C /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DC716A1D36A00A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673D19A54AF3004122E4 /* CoreVideo.framework in Frameworks */, + DB166DC816A1D36A00A1396C /* Cocoa.framework in Frameworks */, + DB166DC916A1D36A00A1396C /* CoreAudio.framework in Frameworks */, + DB166DCA16A1D36A00A1396C /* ForceFeedback.framework in Frameworks */, + DB166DCB16A1D36A00A1396C /* IOKit.framework in Frameworks */, + DB166DCC16A1D36A00A1396C /* AudioToolbox.framework in Frameworks */, + DB166DCD16A1D36A00A1396C /* CoreFoundation.framework in Frameworks */, + DB166DCF16A1D36A00A1396C /* AudioUnit.framework in Frameworks */, + DB166DD016A1D36A00A1396C /* Carbon.framework in Frameworks */, + DB166DD116A1D36A00A1396C /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DDF16A1D50C00A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674319A54B04004122E4 /* CoreVideo.framework in Frameworks */, + DB166DE016A1D50C00A1396C /* Cocoa.framework in Frameworks */, + DB166DE116A1D50C00A1396C /* CoreAudio.framework in Frameworks */, + DB166DE216A1D50C00A1396C /* ForceFeedback.framework in Frameworks */, + DB166DE316A1D50C00A1396C /* IOKit.framework in Frameworks */, + DB166DE416A1D50C00A1396C /* AudioToolbox.framework in Frameworks */, + DB166DE516A1D50C00A1396C /* CoreFoundation.framework in Frameworks */, + DB166DE716A1D50C00A1396C /* AudioUnit.framework in Frameworks */, + DB166DE816A1D50C00A1396C /* Carbon.framework in Frameworks */, + DB166DE916A1D50C00A1396C /* libSDL2.a in Frameworks */, + DB166DEA16A1D50C00A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DF616A1D57C00A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674419A54B06004122E4 /* CoreVideo.framework in Frameworks */, + DB166DF716A1D57C00A1396C /* Cocoa.framework in Frameworks */, + DB166DF816A1D57C00A1396C /* CoreAudio.framework in Frameworks */, + DB166DF916A1D57C00A1396C /* ForceFeedback.framework in Frameworks */, + DB166DFA16A1D57C00A1396C /* IOKit.framework in Frameworks */, + DB166DFB16A1D57C00A1396C /* AudioToolbox.framework in Frameworks */, + DB166DFC16A1D57C00A1396C /* CoreFoundation.framework in Frameworks */, + DB166DFE16A1D57C00A1396C /* AudioUnit.framework in Frameworks */, + DB166DFF16A1D57C00A1396C /* Carbon.framework in Frameworks */, + DB166E0016A1D57C00A1396C /* libSDL2.a in Frameworks */, + DB166E0116A1D57C00A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E0D16A1D5AD00A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674519A54B09004122E4 /* CoreVideo.framework in Frameworks */, + DB166E0E16A1D5AD00A1396C /* Cocoa.framework in Frameworks */, + DB166E0F16A1D5AD00A1396C /* CoreAudio.framework in Frameworks */, + DB166E1016A1D5AD00A1396C /* ForceFeedback.framework in Frameworks */, + DB166E1116A1D5AD00A1396C /* IOKit.framework in Frameworks */, + DB166E1216A1D5AD00A1396C /* AudioToolbox.framework in Frameworks */, + DB166E1316A1D5AD00A1396C /* CoreFoundation.framework in Frameworks */, + DB166E1516A1D5AD00A1396C /* AudioUnit.framework in Frameworks */, + DB166E1616A1D5AD00A1396C /* Carbon.framework in Frameworks */, + DB166E1716A1D5AD00A1396C /* libSDL2.a in Frameworks */, + DB166E1816A1D5AD00A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E2A16A1D64D00A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674719A54B0F004122E4 /* CoreVideo.framework in Frameworks */, + DB166E2B16A1D64D00A1396C /* Cocoa.framework in Frameworks */, + DB166E2C16A1D64D00A1396C /* CoreAudio.framework in Frameworks */, + DB166E2D16A1D64D00A1396C /* ForceFeedback.framework in Frameworks */, + DB166E2E16A1D64D00A1396C /* IOKit.framework in Frameworks */, + DB166E2F16A1D64D00A1396C /* AudioToolbox.framework in Frameworks */, + DB166E3016A1D64D00A1396C /* CoreFoundation.framework in Frameworks */, + DB166E3216A1D64D00A1396C /* AudioUnit.framework in Frameworks */, + DB166E3316A1D64D00A1396C /* Carbon.framework in Frameworks */, + DB166E3416A1D64D00A1396C /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E4016A1D69000A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674819A54B13004122E4 /* CoreVideo.framework in Frameworks */, + DB166E4116A1D69000A1396C /* Cocoa.framework in Frameworks */, + DB166E4216A1D69000A1396C /* CoreAudio.framework in Frameworks */, + DB166E4316A1D69000A1396C /* ForceFeedback.framework in Frameworks */, + DB166E4416A1D69000A1396C /* IOKit.framework in Frameworks */, + DB166E4516A1D69000A1396C /* AudioToolbox.framework in Frameworks */, + DB166E4616A1D69000A1396C /* CoreFoundation.framework in Frameworks */, + DB166E4816A1D69000A1396C /* AudioUnit.framework in Frameworks */, + DB166E4916A1D69000A1396C /* Carbon.framework in Frameworks */, + DB166E4A16A1D69000A1396C /* libSDL2.a in Frameworks */, + DB166E4B16A1D69000A1396C /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E5A16A1D6F300A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674A19A54B19004122E4 /* CoreVideo.framework in Frameworks */, + DB166E5B16A1D6F300A1396C /* Cocoa.framework in Frameworks */, + DB166E5C16A1D6F300A1396C /* CoreAudio.framework in Frameworks */, + DB166E5D16A1D6F300A1396C /* ForceFeedback.framework in Frameworks */, + DB166E5E16A1D6F300A1396C /* IOKit.framework in Frameworks */, + DB166E5F16A1D6F300A1396C /* AudioToolbox.framework in Frameworks */, + DB166E6016A1D6F300A1396C /* CoreFoundation.framework in Frameworks */, + DB166E6216A1D6F300A1396C /* AudioUnit.framework in Frameworks */, + DB166E6316A1D6F300A1396C /* Carbon.framework in Frameworks */, + DB166E6416A1D6F300A1396C /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E7016A1D78400A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674D19A54B22004122E4 /* CoreVideo.framework in Frameworks */, + DB166E7116A1D78400A1396C /* Cocoa.framework in Frameworks */, + DB166E7216A1D78400A1396C /* CoreAudio.framework in Frameworks */, + DB166E7316A1D78400A1396C /* ForceFeedback.framework in Frameworks */, + DB166E7416A1D78400A1396C /* IOKit.framework in Frameworks */, + DB166E7516A1D78400A1396C /* AudioToolbox.framework in Frameworks */, + DB166E7616A1D78400A1396C /* CoreFoundation.framework in Frameworks */, + DB166E7816A1D78400A1396C /* AudioUnit.framework in Frameworks */, + DB166E7916A1D78400A1396C /* Carbon.framework in Frameworks */, + DB166E7A16A1D78400A1396C /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E8316A1D78C00A1396C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73674E19A54B25004122E4 /* CoreVideo.framework in Frameworks */, + DB166E8416A1D78C00A1396C /* Cocoa.framework in Frameworks */, + DB166E8516A1D78C00A1396C /* CoreAudio.framework in Frameworks */, + DB166E8616A1D78C00A1396C /* ForceFeedback.framework in Frameworks */, + DB166E8716A1D78C00A1396C /* IOKit.framework in Frameworks */, + DB166E8816A1D78C00A1396C /* AudioToolbox.framework in Frameworks */, + DB166E8916A1D78C00A1396C /* CoreFoundation.framework in Frameworks */, + DB166E8B16A1D78C00A1396C /* AudioUnit.framework in Frameworks */, + DB166E8C16A1D78C00A1396C /* Carbon.framework in Frameworks */, + DB166E8D16A1D78C00A1396C /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB445EE918184B7000B306B0 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73672D19A54AC7004122E4 /* CoreVideo.framework in Frameworks */, + DB445EEA18184B7000B306B0 /* Cocoa.framework in Frameworks */, + DB445EEB18184B7000B306B0 /* CoreAudio.framework in Frameworks */, + DB445EEC18184B7000B306B0 /* ForceFeedback.framework in Frameworks */, + DB445EED18184B7000B306B0 /* IOKit.framework in Frameworks */, + DB445EEE18184B7000B306B0 /* AudioToolbox.framework in Frameworks */, + DB445EEF18184B7000B306B0 /* CoreFoundation.framework in Frameworks */, + DB445EF118184B7000B306B0 /* AudioUnit.framework in Frameworks */, + DB445EF218184B7000B306B0 /* Carbon.framework in Frameworks */, + DB445EF318184B7000B306B0 /* libSDL2.a in Frameworks */, + DB445EF418184B7000B306B0 /* libSDL_test.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB89957018A19ABA0092407C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FA73673519A54ADE004122E4 /* CoreVideo.framework in Frameworks */, + DB89957118A19ABA0092407C /* Cocoa.framework in Frameworks */, + DB89957218A19ABA0092407C /* CoreAudio.framework in Frameworks */, + DB89957318A19ABA0092407C /* ForceFeedback.framework in Frameworks */, + DB89957418A19ABA0092407C /* IOKit.framework in Frameworks */, + DB89957518A19ABA0092407C /* AudioToolbox.framework in Frameworks */, + DB89957618A19ABA0092407C /* CoreFoundation.framework in Frameworks */, + DB89957818A19ABA0092407C /* AudioUnit.framework in Frameworks */, + DB89957918A19ABA0092407C /* Carbon.framework in Frameworks */, + DB89957A18A19ABA0092407C /* libSDL2.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DBEC54DC1A1A81C3005B1EAB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DBEC54DD1A1A81C3005B1EAB /* CoreVideo.framework in Frameworks */, + DBEC54DE1A1A81C3005B1EAB /* Cocoa.framework in Frameworks */, + DBEC54DF1A1A81C3005B1EAB /* libSDL2.a in Frameworks */, + DBEC54E01A1A81C3005B1EAB /* CoreAudio.framework in Frameworks */, + DBEC54E11A1A81C3005B1EAB /* ForceFeedback.framework in Frameworks */, + DBEC54E21A1A81C3005B1EAB /* IOKit.framework in Frameworks */, + DBEC54E31A1A81C3005B1EAB /* AudioToolbox.framework in Frameworks */, + DBEC54E41A1A81C3005B1EAB /* CoreFoundation.framework in Frameworks */, + DBEC54E51A1A81C3005B1EAB /* AudioUnit.framework in Frameworks */, + DBEC54E61A1A81C3005B1EAB /* Carbon.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 002F33A209CA183B00EBEB88 /* Linked Frameworks */ = { + isa = PBXGroup; + children = ( + FA73672219A54A90004122E4 /* CoreVideo.framework */, + 002A869F10730593007319AE /* AudioToolbox.framework */, + 002A871410730623007319AE /* AudioUnit.framework */, + 002A873910730675007319AE /* Carbon.framework */, + 002F33A709CA188600EBEB88 /* Cocoa.framework */, + 002A863B10730545007319AE /* CoreAudio.framework */, + 002A86A010730593007319AE /* CoreFoundation.framework */, + 002A863C10730545007319AE /* ForceFeedback.framework */, + 002A863D10730545007319AE /* IOKit.framework */, + ); + name = "Linked Frameworks"; + sourceTree = ""; + }; + 003FA63B093FFD41000C53B3 /* Products */ = { + isa = PBXGroup; + children = ( + 003FA643093FFD41000C53B3 /* SDL2.framework */, + 003FA645093FFD41000C53B3 /* libSDL2.a */, + DB1D40D717B3F30D00D74CFC /* libSDL2.dylib */, + 003FA649093FFD41000C53B3 /* Standard DMG */, + ); + name = Products; + sourceTree = ""; + }; + 00794E4609D207B4003FC8A1 /* Resources */ = { + isa = PBXGroup; + children = ( + DBEC54D61A1A8145005B1EAB /* axis.bmp */, + DBEC54D71A1A8145005B1EAB /* button.bmp */, + DBEC54D81A1A8145005B1EAB /* controllermap.bmp */, + 00794E5D09D20839003FC8A1 /* icon.bmp */, + 00794E5E09D20839003FC8A1 /* moose.dat */, + 00794E5F09D20839003FC8A1 /* picture.xbm */, + 00794E6109D20839003FC8A1 /* sample.bmp */, + 00794E6209D20839003FC8A1 /* sample.wav */, + DB166ECF16A1D87000A1396C /* shapes */, + DBBC552C182831D700F3CA8D /* TestDropFile-Info.plist */, + 00794E6309D20839003FC8A1 /* utf8.txt */, + ); + name = Resources; + sourceTree = ""; + }; + 08FB7794FE84155DC02AAC07 /* SDLTest */ = { + isa = PBXGroup; + children = ( + 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */, + 08FB7795FE84155DC02AAC07 /* Source */, + DB166D8316A1D17E00A1396C /* SDL_Test */, + 002F33A209CA183B00EBEB88 /* Linked Frameworks */, + 00794E4609D207B4003FC8A1 /* Resources */, + 1AB674ADFE9D54B511CA2CBB /* Products */, + ); + comments = "I made these tests link against our \"default\" framework which includes X11 stuff. If you didn't install the X11 headers with Xcode, you might have problems building the SDL.framework (which is a dependency). You can swap the dependencies around to get around this, or you can modify the default SDL.framework target to not include X11 stuff. (Go into its target build options and remove all the Preprocessor macros.)\n\n\n\nWe are sort of in a half-way state at the moment. Going \"all-the-way\" means we copy the SDL.framework inside the app bundle so we can run the test without the step of the user \"installing\" the framework. But there is an oversight/bug in Xcode that doesn't correctly find the location of the framework when in an embedded/nested Xcode project. We could probably try to hack this with a shell script that checks multiple directories for existence, but this is messier and more work than I prefer, so I rather just wait for Apple to fix this. In the meantime...\n\nThe \"All\" target will build the SDL framework from the Xcode project. The other targets do not have this dependency set (for flexibility reasons in case we make changes). If you have not built the framework, you will probably be unable to link. You will either need to build the framework, or you need to add \"-framework SDL\" to the link options and make sure you have the SDL.framework installed somewhere where it can be seen (like /Library/Frameworks...I think we already set this one up.) \n\nTo run though, you should have a copy of the SDL.framework in /Library/Frameworks or ~/Library/Frameworks.\n\n\n\n\ntestgl and testdyngl need -DHAVE_OPENGL\ntestgl needs to link against OpenGL.framework\n\n"; + name = SDLTest; + sourceTree = ""; + }; + 08FB7795FE84155DC02AAC07 /* Source */ = { + isa = PBXGroup; + children = ( + 092D6D10FFB30A2C7F000001 /* checkkeys.c */, + DBEC54D11A1A811D005B1EAB /* controllermap.c */, + 083E4872006D84C97F000001 /* loopwave.c */, + 0017958F1074216E00F5D044 /* testatomic.c */, + 001795B01074222D00F5D044 /* testaudioinfo.c */, + 001797711074320D00F5D044 /* testdraw2.c */, + DB0F48D717CA51D2008798C5 /* testdrawchessboard.c */, + DB445EFA18184BB600B306B0 /* testdropfile.c */, + 083E4878006D85357F000001 /* testerror.c */, + 002F341709CA1C5B00EBEB88 /* testfile.c */, + DB0F48D817CA51D2008798C5 /* testfilesystem.c */, + BBFC088E164C6820003E6A99 /* testgamecontroller.c */, + DB166CBB16A1C74100A1396C /* testgesture.c */, + 0017972710742FB900F5D044 /* testgl2.c */, + DB166CBC16A1C74100A1396C /* testgles.c */, + 0017974E1074315700F5D044 /* testhaptic.c */, + DB89958318A19B130092407C /* testhotplug.c */, + 002F343609CA1F6F00EBEB88 /* testiconv.c */, + 00179791107432FA00F5D044 /* testime.c */, + 001797B31074339C00F5D044 /* testintersections.c */, + 092D6D62FFB312AA7F000001 /* testjoystick.c */, + 092D6D6CFFB313437F000001 /* testkeys.c */, + 001797D31074343E00F5D044 /* testloadso.c */, + 092D6D75FFB313BB7F000001 /* testlock.c */, + DB166CBD16A1C74100A1396C /* testmessage.c */, + 001798151074359B00F5D044 /* testmultiaudio.c */, + 0017985A107436ED00F5D044 /* testnative.c */, + 0017985B107436ED00F5D044 /* testnative.h */, + 0017985C107436ED00F5D044 /* testnativecocoa.m */, + 00179872107438D000F5D044 /* testnativex11.c */, + 002F345209CA201C00EBEB88 /* testoverlay2.c */, + 002F346F09CA20A600EBEB88 /* testplatform.c */, + 001798B910743A4900F5D044 /* testpower.c */, + DB166CBF16A1C74100A1396C /* testrelative.c */, + DB166CC016A1C74100A1396C /* testrendercopyex.c */, + DB166CC116A1C74100A1396C /* testrendertarget.c */, + 001798F910743E9200F5D044 /* testresample.c */, + DB166CC216A1C74100A1396C /* testrumble.c */, + DB166CC316A1C74100A1396C /* testscale.c */, + 083E487E006D86A17F000001 /* testsem.c */, + DB166CC416A1C74100A1396C /* testshader.c */, + 453774A4120915E3002F0F45 /* testshape.c */, + 0017991910743F5300F5D044 /* testsprite2.c */, + DB166CC516A1C74100A1396C /* testspriteminimal.c */, + DB166CC616A1C74100A1396C /* teststreaming.c */, + 092D6D58FFB311A97F000001 /* testthread.c */, + 083E4880006D86A17F000001 /* testtimer.c */, + 083E4882006D86A17F000001 /* testver.c */, + 0017993B10743FEF00F5D044 /* testwm2.c */, + 083E4887006D86A17F000001 /* torturethread.c */, + ); + name = Source; + sourceTree = ""; + }; + 1AB674ADFE9D54B511CA2CBB /* Products */ = { + isa = PBXGroup; + children = ( + BEC566B60761D90300A33029 /* checkkeys */, + BEC566D10761D90300A33029 /* loopwave */, + BEC567060761D90400A33029 /* testerror */, + BEC5672E0761D90400A33029 /* testthread */, + BEC5673B0761D90400A33029 /* testjoystick */, + BEC567480761D90400A33029 /* testkeys */, + BEC567550761D90400A33029 /* testlock */, + BEC5677D0761D90500A33029 /* testsem */, + BEC567980761D90500A33029 /* testtimer */, + BEC567B20761D90500A33029 /* testversion */, + BEC567F50761D90600A33029 /* torturethread */, + 002F341209CA1BFF00EBEB88 /* testfile */, + 002F343109CA1F0300EBEB88 /* testiconv */, + 002F344D09CA1FB300EBEB88 /* testoverlay2 */, + 002F346A09CA204F00EBEB88 /* testplatform */, + 0017958C10741F7900F5D044 /* testatomic */, + 001795AD107421BF00F5D044 /* testaudioinfo */, + 0017972110742F3200F5D044 /* testgl2 */, + 00179748107430D600F5D044 /* testhaptic */, + 0017976E107431B300F5D044 /* testdraw2 */, + 0017978E107432AE00F5D044 /* testime */, + 001797AE1074334C00F5D044 /* testintersections */, + 001797D0107433C600F5D044 /* testloadso */, + 001798121074355200F5D044 /* testmultiaudio */, + 001798941074392D00F5D044 /* testnative */, + 001798B5107439DF00F5D044 /* testpower */, + 001798F210743BEC00F5D044 /* testresample */, + 0017991610743F1000F5D044 /* testsprite2 */, + 0017993810743FB700F5D044 /* testwm2 */, + 4537749212091504002F0F45 /* testshape */, + BBFC08CD164C6862003E6A99 /* testgamecontroller */, + DB166D7F16A1D12400A1396C /* libSDL_test.a */, + DB166DBF16A1D2F600A1396C /* testgesture */, + DB166DD516A1D36A00A1396C /* testmessage */, + DB166DEE16A1D50C00A1396C /* testrelative */, + DB166E0516A1D57C00A1396C /* testrendercopyex */, + DB166E1C16A1D5AD00A1396C /* testrendertarget */, + DB166E3816A1D64D00A1396C /* testrumble */, + DB166E5216A1D69000A1396C /* testscale */, + DB166E6816A1D6F300A1396C /* testshader */, + DB166E7E16A1D78400A1396C /* testspriteminimal */, + DB166E9116A1D78C00A1396C /* teststreaming */, + DB0F48EC17CA51E5008798C5 /* testdrawchessboard */, + DB0F490117CA5212008798C5 /* testfilesystem */, + DB89957E18A19ABA0092407C /* testhotplug */, + DB445EF818184B7000B306B0 /* testdropfile.app */, + DBEC54EA1A1A81C3005B1EAB /* controllermap */, + ); + name = Products; + sourceTree = ""; + }; + DB166D8316A1D17E00A1396C /* SDL_Test */ = { + isa = PBXGroup; + children = ( + DB166D8416A1D1A500A1396C /* SDL_test_assert.c */, + DB166D8516A1D1A500A1396C /* SDL_test_common.c */, + DB166D8616A1D1A500A1396C /* SDL_test_compare.c */, + DB166D8716A1D1A500A1396C /* SDL_test_crc32.c */, + DB166D8816A1D1A500A1396C /* SDL_test_font.c */, + DB166D8916A1D1A500A1396C /* SDL_test_fuzzer.c */, + DB166D8A16A1D1A500A1396C /* SDL_test_harness.c */, + DB166D8B16A1D1A500A1396C /* SDL_test_imageBlit.c */, + DB166D8C16A1D1A500A1396C /* SDL_test_imageBlitBlend.c */, + DB166D8D16A1D1A500A1396C /* SDL_test_imageFace.c */, + DB166D8E16A1D1A500A1396C /* SDL_test_imagePrimitives.c */, + DB166D8F16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c */, + DB166D9016A1D1A500A1396C /* SDL_test_log.c */, + DB166D9116A1D1A500A1396C /* SDL_test_md5.c */, + DB166D9216A1D1A500A1396C /* SDL_test_random.c */, + ); + name = SDL_Test; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + DB166D7D16A1D12400A1396C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 0017957410741F7900F5D044 /* testatomic */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0017958610741F7900F5D044 /* Build configuration list for PBXNativeTarget "testatomic" */; + buildPhases = ( + 0017957910741F7900F5D044 /* Sources */, + 0017957A10741F7900F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testatomic; + productName = testalpha; + productReference = 0017958C10741F7900F5D044 /* testatomic */; + productType = "com.apple.product-type.tool"; + }; + 00179595107421BF00F5D044 /* testaudioinfo */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001795A7107421BF00F5D044 /* Build configuration list for PBXNativeTarget "testaudioinfo" */; + buildPhases = ( + 0017959A107421BF00F5D044 /* Sources */, + 0017959B107421BF00F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testaudioinfo; + productName = testalpha; + productReference = 001795AD107421BF00F5D044 /* testaudioinfo */; + productType = "com.apple.product-type.tool"; + }; + 0017970910742F3200F5D044 /* testgl2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0017971B10742F3200F5D044 /* Build configuration list for PBXNativeTarget "testgl2" */; + buildPhases = ( + 0017970E10742F3200F5D044 /* Sources */, + 0017970F10742F3200F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testgl2; + productName = testalpha; + productReference = 0017972110742F3200F5D044 /* testgl2 */; + productType = "com.apple.product-type.tool"; + }; + 00179730107430D600F5D044 /* testhaptic */ = { + isa = PBXNativeTarget; + buildConfigurationList = 00179742107430D600F5D044 /* Build configuration list for PBXNativeTarget "testhaptic" */; + buildPhases = ( + 00179735107430D600F5D044 /* Sources */, + 00179736107430D600F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testhaptic; + productName = testalpha; + productReference = 00179748107430D600F5D044 /* testhaptic */; + productType = "com.apple.product-type.tool"; + }; + 00179756107431B300F5D044 /* testdraw2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 00179768107431B300F5D044 /* Build configuration list for PBXNativeTarget "testdraw2" */; + buildPhases = ( + 0017975B107431B300F5D044 /* Sources */, + 0017975C107431B300F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testdraw2; + productName = testalpha; + productReference = 0017976E107431B300F5D044 /* testdraw2 */; + productType = "com.apple.product-type.tool"; + }; + 00179776107432AE00F5D044 /* testime */ = { + isa = PBXNativeTarget; + buildConfigurationList = 00179788107432AE00F5D044 /* Build configuration list for PBXNativeTarget "testime" */; + buildPhases = ( + 0017977B107432AE00F5D044 /* Sources */, + 0017977C107432AE00F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testime; + productName = testalpha; + productReference = 0017978E107432AE00F5D044 /* testime */; + productType = "com.apple.product-type.tool"; + }; + 001797961074334C00F5D044 /* testintersections */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001797A81074334C00F5D044 /* Build configuration list for PBXNativeTarget "testintersections" */; + buildPhases = ( + 0017979B1074334C00F5D044 /* Sources */, + 0017979C1074334C00F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testintersections; + productName = testalpha; + productReference = 001797AE1074334C00F5D044 /* testintersections */; + productType = "com.apple.product-type.tool"; + }; + 001797B8107433C600F5D044 /* testloadso */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001797CA107433C600F5D044 /* Build configuration list for PBXNativeTarget "testloadso" */; + buildPhases = ( + 001797BD107433C600F5D044 /* Sources */, + 001797BE107433C600F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testloadso; + productName = testalpha; + productReference = 001797D0107433C600F5D044 /* testloadso */; + productType = "com.apple.product-type.tool"; + }; + 001797FA1074355200F5D044 /* testmultiaudio */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0017980C1074355200F5D044 /* Build configuration list for PBXNativeTarget "testmultiaudio" */; + buildPhases = ( + 001797FF1074355200F5D044 /* Sources */, + 001798001074355200F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testmultiaudio; + productName = testalpha; + productReference = 001798121074355200F5D044 /* testmultiaudio */; + productType = "com.apple.product-type.tool"; + }; + 001798781074392D00F5D044 /* testnative */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0017988E1074392D00F5D044 /* Build configuration list for PBXNativeTarget "testnative" */; + buildPhases = ( + 0017987E1074392D00F5D044 /* Sources */, + 001798821074392D00F5D044 /* Frameworks */, + DB166DDA16A1D40F00A1396C /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testnative; + productName = testalpha; + productReference = 001798941074392D00F5D044 /* testnative */; + productType = "com.apple.product-type.tool"; + }; + 0017989D107439DF00F5D044 /* testpower */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001798AF107439DF00F5D044 /* Build configuration list for PBXNativeTarget "testpower" */; + buildPhases = ( + 001798A2107439DF00F5D044 /* Sources */, + 001798A3107439DF00F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testpower; + productName = testalpha; + productReference = 001798B5107439DF00F5D044 /* testpower */; + productType = "com.apple.product-type.tool"; + }; + 001798DA10743BEC00F5D044 /* testresample */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001798EC10743BEC00F5D044 /* Build configuration list for PBXNativeTarget "testresample" */; + buildPhases = ( + 001798DF10743BEC00F5D044 /* Sources */, + 001798E010743BEC00F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testresample; + productName = testalpha; + productReference = 001798F210743BEC00F5D044 /* testresample */; + productType = "com.apple.product-type.tool"; + }; + 001798FE10743F1000F5D044 /* testsprite2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0017991010743F1000F5D044 /* Build configuration list for PBXNativeTarget "testsprite2" */; + buildPhases = ( + 0017990310743F1000F5D044 /* Sources */, + 0017990410743F1000F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testsprite2; + productName = testalpha; + productReference = 0017991610743F1000F5D044 /* testsprite2 */; + productType = "com.apple.product-type.tool"; + }; + 0017992010743FB700F5D044 /* testwm2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0017993210743FB700F5D044 /* Build configuration list for PBXNativeTarget "testwm2" */; + buildPhases = ( + 0017992510743FB700F5D044 /* Sources */, + 0017992610743FB700F5D044 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testwm2; + productName = testalpha; + productReference = 0017993810743FB700F5D044 /* testwm2 */; + productType = "com.apple.product-type.tool"; + }; + 002F340109CA1BFF00EBEB88 /* testfile */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */; + buildPhases = ( + 002F340709CA1BFF00EBEB88 /* Sources */, + 002F340809CA1BFF00EBEB88 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testfile; + productName = testalpha; + productReference = 002F341209CA1BFF00EBEB88 /* testfile */; + productType = "com.apple.product-type.tool"; + }; + 002F342009CA1F0300EBEB88 /* testiconv */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */; + buildPhases = ( + 002F342609CA1F0300EBEB88 /* Sources */, + 002F342709CA1F0300EBEB88 /* Frameworks */, + 00794EEC09D2371F003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testiconv; + productName = testalpha; + productReference = 002F343109CA1F0300EBEB88 /* testiconv */; + productType = "com.apple.product-type.tool"; + }; + 002F343C09CA1FB300EBEB88 /* testoverlay2 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay2" */; + buildPhases = ( + 002F344209CA1FB300EBEB88 /* Sources */, + 002F344309CA1FB300EBEB88 /* Frameworks */, + 00794EF409D237C7003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testoverlay2; + productName = testalpha; + productReference = 002F344D09CA1FB300EBEB88 /* testoverlay2 */; + productType = "com.apple.product-type.tool"; + }; + 002F345909CA204F00EBEB88 /* testplatform */ = { + isa = PBXNativeTarget; + buildConfigurationList = 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */; + buildPhases = ( + 002F345F09CA204F00EBEB88 /* Sources */, + 002F346009CA204F00EBEB88 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testplatform; + productName = testalpha; + productReference = 002F346A09CA204F00EBEB88 /* testplatform */; + productType = "com.apple.product-type.tool"; + }; + 4537749112091504002F0F45 /* testshape */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4537749A1209150C002F0F45 /* Build configuration list for PBXNativeTarget "testshape" */; + buildPhases = ( + 4537748F12091504002F0F45 /* Sources */, + 4537749012091504002F0F45 /* Frameworks */, + DB166ECE16A1D85400A1396C /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testshape; + productName = testshape; + productReference = 4537749212091504002F0F45 /* testshape */; + productType = "com.apple.product-type.tool"; + }; + BBFC08B7164C6862003E6A99 /* testgamecontroller */ = { + isa = PBXNativeTarget; + buildConfigurationList = BBFC08CA164C6862003E6A99 /* Build configuration list for PBXNativeTarget "testgamecontroller" */; + buildPhases = ( + BBFC08BC164C6862003E6A99 /* Sources */, + BBFC08BE164C6862003E6A99 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testgamecontroller; + productName = testjoystick; + productReference = BBFC08CD164C6862003E6A99 /* testgamecontroller */; + productType = "com.apple.product-type.tool"; + }; + BEC566AB0761D90300A33029 /* checkkeys */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys" */; + buildPhases = ( + BEC566B00761D90300A33029 /* Sources */, + BEC566B20761D90300A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = checkkeys; + productName = checkkeys; + productReference = BEC566B60761D90300A33029 /* checkkeys */; + productType = "com.apple.product-type.tool"; + }; + BEC566C50761D90300A33029 /* loopwave */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave" */; + buildPhases = ( + BEC566CA0761D90300A33029 /* Sources */, + BEC566CC0761D90300A33029 /* Frameworks */, + 00794E6409D2084F003FC8A1 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = loopwave; + productName = loopwave; + productReference = BEC566D10761D90300A33029 /* loopwave */; + productType = "com.apple.product-type.tool"; + }; + BEC566FB0761D90300A33029 /* testerror */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror" */; + buildPhases = ( + BEC567000761D90300A33029 /* Sources */, + BEC567020761D90300A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testerror; + productName = testerror; + productReference = BEC567060761D90400A33029 /* testerror */; + productType = "com.apple.product-type.tool"; + }; + BEC567230761D90400A33029 /* testthread */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread" */; + buildPhases = ( + BEC567280761D90400A33029 /* Sources */, + BEC5672A0761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testthread; + productName = testthread; + productReference = BEC5672E0761D90400A33029 /* testthread */; + productType = "com.apple.product-type.tool"; + }; + BEC567300761D90400A33029 /* testjoystick */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick" */; + buildPhases = ( + BEC567350761D90400A33029 /* Sources */, + BEC567370761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testjoystick; + productName = testjoystick; + productReference = BEC5673B0761D90400A33029 /* testjoystick */; + productType = "com.apple.product-type.tool"; + }; + BEC5673D0761D90400A33029 /* testkeys */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys" */; + buildPhases = ( + BEC567420761D90400A33029 /* Sources */, + BEC567440761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testkeys; + productName = testkeys; + productReference = BEC567480761D90400A33029 /* testkeys */; + productType = "com.apple.product-type.tool"; + }; + BEC5674A0761D90400A33029 /* testlock */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock" */; + buildPhases = ( + BEC5674F0761D90400A33029 /* Sources */, + BEC567510761D90400A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testlock; + productName = testlock; + productReference = BEC567550761D90400A33029 /* testlock */; + productType = "com.apple.product-type.tool"; + }; + BEC567720761D90500A33029 /* testsem */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem" */; + buildPhases = ( + BEC567770761D90500A33029 /* Sources */, + BEC567790761D90500A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testsem; + productName = testsem; + productReference = BEC5677D0761D90500A33029 /* testsem */; + productType = "com.apple.product-type.tool"; + }; + BEC5678D0761D90500A33029 /* testtimer */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer" */; + buildPhases = ( + BEC567920761D90500A33029 /* Sources */, + BEC567940761D90500A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testtimer; + productName = testtimer; + productReference = BEC567980761D90500A33029 /* testtimer */; + productType = "com.apple.product-type.tool"; + }; + BEC567A70761D90500A33029 /* testversion */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion" */; + buildPhases = ( + BEC567AC0761D90500A33029 /* Sources */, + BEC567AE0761D90500A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testversion; + productName = testversion; + productReference = BEC567B20761D90500A33029 /* testversion */; + productType = "com.apple.product-type.tool"; + }; + BEC567EA0761D90600A33029 /* torturethread */ = { + isa = PBXNativeTarget; + buildConfigurationList = 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread" */; + buildPhases = ( + BEC567EF0761D90600A33029 /* Sources */, + BEC567F10761D90600A33029 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = torturethread; + productName = torturethread; + productReference = BEC567F50761D90600A33029 /* torturethread */; + productType = "com.apple.product-type.tool"; + }; + DB0F48D917CA51E5008798C5 /* testdrawchessboard */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB0F48E917CA51E5008798C5 /* Build configuration list for PBXNativeTarget "testdrawchessboard" */; + buildPhases = ( + DB0F48DA17CA51E5008798C5 /* Sources */, + DB0F48DC17CA51E5008798C5 /* Frameworks */, + DB0F48E717CA51E5008798C5 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testdrawchessboard; + productName = testalpha; + productReference = DB0F48EC17CA51E5008798C5 /* testdrawchessboard */; + productType = "com.apple.product-type.tool"; + }; + DB0F48EF17CA5212008798C5 /* testfilesystem */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB0F48FE17CA5212008798C5 /* Build configuration list for PBXNativeTarget "testfilesystem" */; + buildPhases = ( + DB0F48F017CA5212008798C5 /* Sources */, + DB0F48F217CA5212008798C5 /* Frameworks */, + DB0F48FD17CA5212008798C5 /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testfilesystem; + productName = testalpha; + productReference = DB0F490117CA5212008798C5 /* testfilesystem */; + productType = "com.apple.product-type.tool"; + }; + DB166D7E16A1D12400A1396C /* SDL_test */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166D8016A1D12400A1396C /* Build configuration list for PBXNativeTarget "SDL_test" */; + buildPhases = ( + DB166D7B16A1D12400A1396C /* Sources */, + DB166D7C16A1D12400A1396C /* Frameworks */, + DB166D7D16A1D12400A1396C /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SDL_test; + productName = SDL_test; + productReference = DB166D7F16A1D12400A1396C /* libSDL_test.a */; + productType = "com.apple.product-type.library.static"; + }; + DB166DAD16A1D2F600A1396C /* testgesture */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166DBC16A1D2F600A1396C /* Build configuration list for PBXNativeTarget "testgesture" */; + buildPhases = ( + DB166DAE16A1D2F600A1396C /* Sources */, + DB166DB016A1D2F600A1396C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testgesture; + productName = testalpha; + productReference = DB166DBF16A1D2F600A1396C /* testgesture */; + productType = "com.apple.product-type.tool"; + }; + DB166DC416A1D36A00A1396C /* testmessage */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166DD216A1D36A00A1396C /* Build configuration list for PBXNativeTarget "testmessage" */; + buildPhases = ( + DB166DC516A1D36A00A1396C /* Sources */, + DB166DC716A1D36A00A1396C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testmessage; + productName = testalpha; + productReference = DB166DD516A1D36A00A1396C /* testmessage */; + productType = "com.apple.product-type.tool"; + }; + DB166DDC16A1D50C00A1396C /* testrelative */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166DEB16A1D50C00A1396C /* Build configuration list for PBXNativeTarget "testrelative" */; + buildPhases = ( + DB166DDD16A1D50C00A1396C /* Sources */, + DB166DDF16A1D50C00A1396C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testrelative; + productName = testalpha; + productReference = DB166DEE16A1D50C00A1396C /* testrelative */; + productType = "com.apple.product-type.tool"; + }; + DB166DF316A1D57C00A1396C /* testrendercopyex */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166E0216A1D57C00A1396C /* Build configuration list for PBXNativeTarget "testrendercopyex" */; + buildPhases = ( + DB166DF416A1D57C00A1396C /* Sources */, + DB166DF616A1D57C00A1396C /* Frameworks */, + DB166E2116A1D5DF00A1396C /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testrendercopyex; + productName = testalpha; + productReference = DB166E0516A1D57C00A1396C /* testrendercopyex */; + productType = "com.apple.product-type.tool"; + }; + DB166E0A16A1D5AD00A1396C /* testrendertarget */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166E1916A1D5AD00A1396C /* Build configuration list for PBXNativeTarget "testrendertarget" */; + buildPhases = ( + DB166E0B16A1D5AD00A1396C /* Sources */, + DB166E0D16A1D5AD00A1396C /* Frameworks */, + DB166E2416A1D61000A1396C /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testrendertarget; + productName = testalpha; + productReference = DB166E1C16A1D5AD00A1396C /* testrendertarget */; + productType = "com.apple.product-type.tool"; + }; + DB166E2716A1D64D00A1396C /* testrumble */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166E3516A1D64D00A1396C /* Build configuration list for PBXNativeTarget "testrumble" */; + buildPhases = ( + DB166E2816A1D64D00A1396C /* Sources */, + DB166E2A16A1D64D00A1396C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testrumble; + productName = testalpha; + productReference = DB166E3816A1D64D00A1396C /* testrumble */; + productType = "com.apple.product-type.tool"; + }; + DB166E3D16A1D69000A1396C /* testscale */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166E4F16A1D69000A1396C /* Build configuration list for PBXNativeTarget "testscale" */; + buildPhases = ( + DB166E3E16A1D69000A1396C /* Sources */, + DB166E4016A1D69000A1396C /* Frameworks */, + DB166E4C16A1D69000A1396C /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testscale; + productName = testalpha; + productReference = DB166E5216A1D69000A1396C /* testscale */; + productType = "com.apple.product-type.tool"; + }; + DB166E5716A1D6F300A1396C /* testshader */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166E6516A1D6F300A1396C /* Build configuration list for PBXNativeTarget "testshader" */; + buildPhases = ( + DB166E5816A1D6F300A1396C /* Sources */, + DB166E5A16A1D6F300A1396C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testshader; + productName = testsem; + productReference = DB166E6816A1D6F300A1396C /* testshader */; + productType = "com.apple.product-type.tool"; + }; + DB166E6D16A1D78400A1396C /* testspriteminimal */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166E7B16A1D78400A1396C /* Build configuration list for PBXNativeTarget "testspriteminimal" */; + buildPhases = ( + DB166E6E16A1D78400A1396C /* Sources */, + DB166E7016A1D78400A1396C /* Frameworks */, + DB166E9B16A1D7FC00A1396C /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testspriteminimal; + productName = testspriteminimal; + productReference = DB166E7E16A1D78400A1396C /* testspriteminimal */; + productType = "com.apple.product-type.tool"; + }; + DB166E8016A1D78C00A1396C /* teststreaming */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB166E8E16A1D78C00A1396C /* Build configuration list for PBXNativeTarget "teststreaming" */; + buildPhases = ( + DB166E8116A1D78C00A1396C /* Sources */, + DB166E8316A1D78C00A1396C /* Frameworks */, + DB166E9916A1D7EE00A1396C /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = teststreaming; + productName = teststreaming; + productReference = DB166E9116A1D78C00A1396C /* teststreaming */; + productType = "com.apple.product-type.tool"; + }; + DB445EE618184B7000B306B0 /* testdropfile */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB445EF518184B7000B306B0 /* Build configuration list for PBXNativeTarget "testdropfile" */; + buildPhases = ( + DB445EE718184B7000B306B0 /* Sources */, + DB445EE918184B7000B306B0 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testdropfile; + productName = testdropfile; + productReference = DB445EF818184B7000B306B0 /* testdropfile.app */; + productType = "com.apple.product-type.application"; + }; + DB89956D18A19ABA0092407C /* testhotplug */ = { + isa = PBXNativeTarget; + buildConfigurationList = DB89957B18A19ABA0092407C /* Build configuration list for PBXNativeTarget "testhotplug" */; + buildPhases = ( + DB89956E18A19ABA0092407C /* Sources */, + DB89957018A19ABA0092407C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = testhotplug; + productName = testalpha; + productReference = DB89957E18A19ABA0092407C /* testhotplug */; + productType = "com.apple.product-type.tool"; + }; + DBEC54D91A1A81C3005B1EAB /* controllermap */ = { + isa = PBXNativeTarget; + buildConfigurationList = DBEC54E71A1A81C3005B1EAB /* Build configuration list for PBXNativeTarget "controllermap" */; + buildPhases = ( + DBEC54DA1A1A81C3005B1EAB /* Sources */, + DBEC54DC1A1A81C3005B1EAB /* Frameworks */, + DBEC54EC1A1A827C005B1EAB /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = controllermap; + productName = checkkeys; + productReference = DBEC54EA1A1A81C3005B1EAB /* controllermap */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 08FB7793FE84155DC02AAC07 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0420; + }; + buildConfigurationList = 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + English, + Japanese, + French, + German, + en, + ); + mainGroup = 08FB7794FE84155DC02AAC07 /* SDLTest */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 003FA63B093FFD41000C53B3 /* Products */; + ProjectRef = 003FA63A093FFD41000C53B3 /* SDL.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + BEC566920761D90300A33029 /* All */, + DB166D7E16A1D12400A1396C /* SDL_test */, + BEC566AB0761D90300A33029 /* checkkeys */, + DBEC54D91A1A81C3005B1EAB /* controllermap */, + BEC566C50761D90300A33029 /* loopwave */, + 0017957410741F7900F5D044 /* testatomic */, + 00179595107421BF00F5D044 /* testaudioinfo */, + 00179756107431B300F5D044 /* testdraw2 */, + DB0F48D917CA51E5008798C5 /* testdrawchessboard */, + DB445EE618184B7000B306B0 /* testdropfile */, + BEC566FB0761D90300A33029 /* testerror */, + 002F340109CA1BFF00EBEB88 /* testfile */, + DB0F48EF17CA5212008798C5 /* testfilesystem */, + BBFC08B7164C6862003E6A99 /* testgamecontroller */, + DB166DAD16A1D2F600A1396C /* testgesture */, + 0017970910742F3200F5D044 /* testgl2 */, + 00179730107430D600F5D044 /* testhaptic */, + DB89956D18A19ABA0092407C /* testhotplug */, + 002F342009CA1F0300EBEB88 /* testiconv */, + 00179776107432AE00F5D044 /* testime */, + 001797961074334C00F5D044 /* testintersections */, + BEC567300761D90400A33029 /* testjoystick */, + BEC5673D0761D90400A33029 /* testkeys */, + 001797B8107433C600F5D044 /* testloadso */, + BEC5674A0761D90400A33029 /* testlock */, + DB166DC416A1D36A00A1396C /* testmessage */, + 001797FA1074355200F5D044 /* testmultiaudio */, + 001798781074392D00F5D044 /* testnative */, + 002F343C09CA1FB300EBEB88 /* testoverlay2 */, + 002F345909CA204F00EBEB88 /* testplatform */, + 0017989D107439DF00F5D044 /* testpower */, + DB166DDC16A1D50C00A1396C /* testrelative */, + DB166DF316A1D57C00A1396C /* testrendercopyex */, + DB166E0A16A1D5AD00A1396C /* testrendertarget */, + 001798DA10743BEC00F5D044 /* testresample */, + DB166E2716A1D64D00A1396C /* testrumble */, + DB166E3D16A1D69000A1396C /* testscale */, + BEC567720761D90500A33029 /* testsem */, + DB166E5716A1D6F300A1396C /* testshader */, + 4537749112091504002F0F45 /* testshape */, + 001798FE10743F1000F5D044 /* testsprite2 */, + DB166E6D16A1D78400A1396C /* testspriteminimal */, + DB166E8016A1D78C00A1396C /* teststreaming */, + BEC567230761D90400A33029 /* testthread */, + BEC5678D0761D90500A33029 /* testtimer */, + BEC567A70761D90500A33029 /* testversion */, + 0017992010743FB700F5D044 /* testwm2 */, + BEC567EA0761D90600A33029 /* torturethread */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 003FA643093FFD41000C53B3 /* SDL2.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = SDL2.framework; + remoteRef = 003FA642093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 003FA645093FFD41000C53B3 /* libSDL2.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libSDL2.a; + remoteRef = 003FA644093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 003FA649093FFD41000C53B3 /* Standard DMG */ = { + isa = PBXReferenceProxy; + fileType = "compiled.mach-o.executable"; + path = "Standard DMG"; + remoteRef = 003FA648093FFD41000C53B3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + DB1D40D717B3F30D00D74CFC /* libSDL2.dylib */ = { + isa = PBXReferenceProxy; + fileType = "compiled.mach-o.dylib"; + path = libSDL2.dylib; + remoteRef = DB1D40D617B3F30D00D74CFC /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXSourcesBuildPhase section */ + 0017957910741F7900F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001795901074216E00F5D044 /* testatomic.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017959A107421BF00F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001795B11074222D00F5D044 /* testaudioinfo.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017970E10742F3200F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0017972810742FB900F5D044 /* testgl2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 00179735107430D600F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0017974F1074315700F5D044 /* testhaptic.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017975B107431B300F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001797721074320D00F5D044 /* testdraw2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017977B107432AE00F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 00179792107432FA00F5D044 /* testime.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017979B1074334C00F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001797B41074339C00F5D044 /* testintersections.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001797BD107433C600F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001797D41074343E00F5D044 /* testloadso.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001797FF1074355200F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001798161074359B00F5D044 /* testmultiaudio.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017987E1074392D00F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0017987F1074392D00F5D044 /* testnative.c in Sources */, + 001798801074392D00F5D044 /* testnativecocoa.m in Sources */, + 001798811074392D00F5D044 /* testnativex11.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001798A2107439DF00F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001798BA10743A4900F5D044 /* testpower.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 001798DF10743BEC00F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 001798FA10743E9200F5D044 /* testresample.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017990310743F1000F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0017991A10743F5300F5D044 /* testsprite2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0017992510743FB700F5D044 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0017993C10743FEF00F5D044 /* testwm2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F340709CA1BFF00EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F341809CA1C5B00EBEB88 /* testfile.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F342609CA1F0300EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F343709CA1F6F00EBEB88 /* testiconv.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F344209CA1FB300EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F345409CA202000EBEB88 /* testoverlay2.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 002F345F09CA204F00EBEB88 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 002F347009CA20A600EBEB88 /* testplatform.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4537748F12091504002F0F45 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 453774A5120915E3002F0F45 /* testshape.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BBFC08BC164C6862003E6A99 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BBFC08D0164C6876003E6A99 /* testgamecontroller.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566B00761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566B10761D90300A33029 /* checkkeys.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC566CA0761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC566CB0761D90300A33029 /* loopwave.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567000761D90300A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567010761D90300A33029 /* testerror.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567280761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567290761D90400A33029 /* testthread.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567350761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567360761D90400A33029 /* testjoystick.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567420761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567430761D90400A33029 /* testkeys.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC5674F0761D90400A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567500761D90400A33029 /* testlock.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567770761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567780761D90500A33029 /* testsem.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567920761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567930761D90500A33029 /* testtimer.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567AC0761D90500A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567AD0761D90500A33029 /* testver.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEC567EF0761D90600A33029 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BEC567F00761D90600A33029 /* torturethread.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB0F48DA17CA51E5008798C5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB0F48EE17CA51F8008798C5 /* testdrawchessboard.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB0F48F017CA5212008798C5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB0F490317CA5225008798C5 /* testfilesystem.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166D7B16A1D12400A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166D9316A1D1A500A1396C /* SDL_test_assert.c in Sources */, + DB166D9416A1D1A500A1396C /* SDL_test_common.c in Sources */, + DB166D9516A1D1A500A1396C /* SDL_test_compare.c in Sources */, + DB166D9616A1D1A500A1396C /* SDL_test_crc32.c in Sources */, + DB166D9716A1D1A500A1396C /* SDL_test_font.c in Sources */, + DB166D9816A1D1A500A1396C /* SDL_test_fuzzer.c in Sources */, + DB166D9916A1D1A500A1396C /* SDL_test_harness.c in Sources */, + DB166D9A16A1D1A500A1396C /* SDL_test_imageBlit.c in Sources */, + DB166D9B16A1D1A500A1396C /* SDL_test_imageBlitBlend.c in Sources */, + DB166D9C16A1D1A500A1396C /* SDL_test_imageFace.c in Sources */, + DB166D9D16A1D1A500A1396C /* SDL_test_imagePrimitives.c in Sources */, + DB166D9E16A1D1A500A1396C /* SDL_test_imagePrimitivesBlend.c in Sources */, + DB166D9F16A1D1A500A1396C /* SDL_test_log.c in Sources */, + DB166DA016A1D1A500A1396C /* SDL_test_md5.c in Sources */, + DB166DA116A1D1A500A1396C /* SDL_test_random.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DAE16A1D2F600A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166DC116A1D31E00A1396C /* testgesture.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DC516A1D36A00A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166DD716A1D37800A1396C /* testmessage.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DDD16A1D50C00A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166DF016A1D52500A1396C /* testrelative.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166DF416A1D57C00A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166E0716A1D59400A1396C /* testrendercopyex.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E0B16A1D5AD00A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166E1E16A1D5C300A1396C /* testrendertarget.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E2816A1D64D00A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166E3C16A1D66500A1396C /* testrumble.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E3E16A1D69000A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166E5416A1D6A300A1396C /* testscale.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E5816A1D6F300A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166E6A16A1D70C00A1396C /* testshader.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E6E16A1D78400A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166E9316A1D7BC00A1396C /* testspriteminimal.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB166E8116A1D78C00A1396C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB166E9416A1D7C700A1396C /* teststreaming.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB445EE718184B7000B306B0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB445EFB18184BB600B306B0 /* testdropfile.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB89956E18A19ABA0092407C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB89958418A19B130092407C /* testhotplug.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DBEC54DA1A1A81C3005B1EAB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DBEC54EB1A1A8205005B1EAB /* controllermap.c in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 001799481074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566AB0761D90300A33029 /* checkkeys */; + targetProxy = 001799471074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017994C1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566C50761D90300A33029 /* loopwave */; + targetProxy = 0017994B1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799501074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0017957410741F7900F5D044 /* testatomic */; + targetProxy = 0017994F1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799521074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 00179595107421BF00F5D044 /* testaudioinfo */; + targetProxy = 001799511074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017995A1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 00179756107431B300F5D044 /* testdraw2 */; + targetProxy = 001799591074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017995E1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC566FB0761D90300A33029 /* testerror */; + targetProxy = 0017995D1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799601074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F340109CA1BFF00EBEB88 /* testfile */; + targetProxy = 0017995F1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799661074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0017970910742F3200F5D044 /* testgl2 */; + targetProxy = 001799651074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799681074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 00179730107430D600F5D044 /* testhaptic */; + targetProxy = 001799671074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017996A1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567230761D90400A33029 /* testthread */; + targetProxy = 001799691074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017996C1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F342009CA1F0300EBEB88 /* testiconv */; + targetProxy = 0017996B1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017996E1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 00179776107432AE00F5D044 /* testime */; + targetProxy = 0017996D1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799701074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 001797961074334C00F5D044 /* testintersections */; + targetProxy = 0017996F1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799721074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567300761D90400A33029 /* testjoystick */; + targetProxy = 001799711074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799741074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC5673D0761D90400A33029 /* testkeys */; + targetProxy = 001799731074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799761074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 001797B8107433C600F5D044 /* testloadso */; + targetProxy = 001799751074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799781074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC5674A0761D90400A33029 /* testlock */; + targetProxy = 001799771074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017997C1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 001797FA1074355200F5D044 /* testmultiaudio */; + targetProxy = 0017997B1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799801074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 001798781074392D00F5D044 /* testnative */; + targetProxy = 0017997F1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799841074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F343C09CA1FB300EBEB88 /* testoverlay2 */; + targetProxy = 001799831074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799881074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 002F345909CA204F00EBEB88 /* testplatform */; + targetProxy = 001799871074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017998A1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0017989D107439DF00F5D044 /* testpower */; + targetProxy = 001799891074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017998C1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 001798DA10743BEC00F5D044 /* testresample */; + targetProxy = 0017998B1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017998E1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567720761D90500A33029 /* testsem */; + targetProxy = 0017998D1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799921074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 001798FE10743F1000F5D044 /* testsprite2 */; + targetProxy = 001799911074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799941074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC5678D0761D90500A33029 /* testtimer */; + targetProxy = 001799931074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799961074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567A70761D90500A33029 /* testversion */; + targetProxy = 001799951074403E00F5D044 /* PBXContainerItemProxy */; + }; + 0017999E1074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0017992010743FB700F5D044 /* testwm2 */; + targetProxy = 0017999D1074403E00F5D044 /* PBXContainerItemProxy */; + }; + 001799A21074403E00F5D044 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BEC567EA0761D90600A33029 /* torturethread */; + targetProxy = 001799A11074403E00F5D044 /* PBXContainerItemProxy */; + }; + DB0F490517CA5249008798C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB0F48D917CA51E5008798C5 /* testdrawchessboard */; + targetProxy = DB0F490417CA5249008798C5 /* PBXContainerItemProxy */; + }; + DB0F490717CA5249008798C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB0F48EF17CA5212008798C5 /* testfilesystem */; + targetProxy = DB0F490617CA5249008798C5 /* PBXContainerItemProxy */; + }; + DB166D6E16A1CEAA00A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = BBFC08B7164C6862003E6A99 /* testgamecontroller */; + targetProxy = DB166D6D16A1CEAA00A1396C /* PBXContainerItemProxy */; + }; + DB166D7016A1CEAF00A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4537749112091504002F0F45 /* testshape */; + targetProxy = DB166D6F16A1CEAF00A1396C /* PBXContainerItemProxy */; + }; + DB166DC316A1D32C00A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166DAD16A1D2F600A1396C /* testgesture */; + targetProxy = DB166DC216A1D32C00A1396C /* PBXContainerItemProxy */; + }; + DB166DD916A1D38900A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166DC416A1D36A00A1396C /* testmessage */; + targetProxy = DB166DD816A1D38900A1396C /* PBXContainerItemProxy */; + }; + DB166DF216A1D53700A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166DDC16A1D50C00A1396C /* testrelative */; + targetProxy = DB166DF116A1D53700A1396C /* PBXContainerItemProxy */; + }; + DB166E0916A1D5A400A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166DF316A1D57C00A1396C /* testrendercopyex */; + targetProxy = DB166E0816A1D5A400A1396C /* PBXContainerItemProxy */; + }; + DB166E2016A1D5D000A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166E0A16A1D5AD00A1396C /* testrendertarget */; + targetProxy = DB166E1F16A1D5D000A1396C /* PBXContainerItemProxy */; + }; + DB166E3B16A1D65A00A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166E2716A1D64D00A1396C /* testrumble */; + targetProxy = DB166E3A16A1D65A00A1396C /* PBXContainerItemProxy */; + }; + DB166E5616A1D6B800A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166E3D16A1D69000A1396C /* testscale */; + targetProxy = DB166E5516A1D6B800A1396C /* PBXContainerItemProxy */; + }; + DB166E6C16A1D72000A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166E5716A1D6F300A1396C /* testshader */; + targetProxy = DB166E6B16A1D72000A1396C /* PBXContainerItemProxy */; + }; + DB166E9616A1D7CD00A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166E6D16A1D78400A1396C /* testspriteminimal */; + targetProxy = DB166E9516A1D7CD00A1396C /* PBXContainerItemProxy */; + }; + DB166E9816A1D7CF00A1396C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DB166E8016A1D78C00A1396C /* teststreaming */; + targetProxy = DB166E9716A1D7CF00A1396C /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 0017958910741F7900F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testatomic; + }; + name = Debug; + }; + 0017958A10741F7900F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testatomic; + }; + name = Release; + }; + 001795AA107421BF00F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testaudioinfo; + }; + name = Debug; + }; + 001795AB107421BF00F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testaudioinfo; + }; + name = Release; + }; + 0017971E10742F3200F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL; + PRODUCT_NAME = testgl2; + }; + name = Debug; + }; + 0017971F10742F3200F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PREPROCESSOR_DEFINITIONS = HAVE_OPENGL; + PRODUCT_NAME = testgl2; + }; + name = Release; + }; + 00179745107430D600F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testhaptic; + }; + name = Debug; + }; + 00179746107430D600F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testhaptic; + }; + name = Release; + }; + 0017976B107431B300F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testdraw2; + }; + name = Debug; + }; + 0017976C107431B300F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testdraw2; + }; + name = Release; + }; + 0017978B107432AE00F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testime; + }; + name = Debug; + }; + 0017978C107432AE00F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testime; + }; + name = Release; + }; + 001797AB1074334C00F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testintersections; + }; + name = Debug; + }; + 001797AC1074334C00F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testintersections; + }; + name = Release; + }; + 001797CD107433C600F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testloadso; + }; + name = Debug; + }; + 001797CE107433C600F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testloadso; + }; + name = Release; + }; + 0017980F1074355200F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testmultiaudio; + }; + name = Debug; + }; + 001798101074355200F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testmultiaudio; + }; + name = Release; + }; + 001798911074392D00F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + LIBRARY_SEARCH_PATHS = /usr/X11/lib; + OTHER_LDFLAGS = "-lX11"; + PRODUCT_NAME = testnative; + }; + name = Debug; + }; + 001798921074392D00F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + LIBRARY_SEARCH_PATHS = /usr/X11/lib; + OTHER_LDFLAGS = "-lX11"; + PRODUCT_NAME = testnative; + }; + name = Release; + }; + 001798B2107439DF00F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testpower; + }; + name = Debug; + }; + 001798B3107439DF00F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testpower; + }; + name = Release; + }; + 001798EF10743BEC00F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testresample; + }; + name = Debug; + }; + 001798F010743BEC00F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testresample; + }; + name = Release; + }; + 0017991310743F1000F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testsprite2; + }; + name = Debug; + }; + 0017991410743F1000F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testsprite2; + }; + name = Release; + }; + 0017993510743FB700F5D044 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testwm2; + }; + name = Debug; + }; + 0017993610743FB700F5D044 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testwm2; + }; + name = Release; + }; + 002A85B21073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(SRCROOT)/../SDL/build/$(CONFIGURATION)", + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + ); + GCC_OPTIMIZATION_LEVEL = 0; + HEADER_SEARCH_PATHS = ../../include; + MACOSX_DEPLOYMENT_TARGET = 10.6; + }; + name = Debug; + }; + 002A85B31073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Build All"; + }; + name = Debug; + }; + 002A85B41073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = checkkeys; + }; + name = Debug; + }; + 002A85B61073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = loopwave; + }; + name = Debug; + }; + 002A85BC1073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testerror; + }; + name = Debug; + }; + 002A85BD1073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testfile; + }; + name = Debug; + }; + 002A85C01073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testiconv; + }; + name = Debug; + }; + 002A85C11073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testjoystick; + }; + name = Debug; + }; + 002A85C21073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testkeys; + }; + name = Debug; + }; + 002A85C31073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testlock; + }; + name = Debug; + }; + 002A85C51073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testoverlay2; + }; + name = Debug; + }; + 002A85C71073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testplatform; + }; + name = Debug; + }; + 002A85C81073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testsem; + }; + name = Debug; + }; + 002A85CA1073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testthread; + }; + name = Debug; + }; + 002A85CB1073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testtimer; + }; + name = Debug; + }; + 002A85CC1073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testversion; + }; + name = Debug; + }; + 002A85D11073008E007319AE /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = torturethread; + }; + name = Debug; + }; + 002A85D41073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "$(SRCROOT)/../SDL/build/$(CONFIGURATION)", + "$(HOME)/Library/Frameworks", + /Library/Frameworks, + ); + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + HEADER_SEARCH_PATHS = ../../include; + MACOSX_DEPLOYMENT_TARGET = 10.6; + }; + name = Release; + }; + 002A85D51073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = "Build All"; + }; + name = Release; + }; + 002A85D61073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = checkkeys; + }; + name = Release; + }; + 002A85D81073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = loopwave; + }; + name = Release; + }; + 002A85DE1073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testerror; + }; + name = Release; + }; + 002A85DF1073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testfile; + }; + name = Release; + }; + 002A85E21073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testiconv; + }; + name = Release; + }; + 002A85E31073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testjoystick; + }; + name = Release; + }; + 002A85E41073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testkeys; + }; + name = Release; + }; + 002A85E51073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testlock; + }; + name = Release; + }; + 002A85E71073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testoverlay2; + }; + name = Release; + }; + 002A85E91073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testplatform; + }; + name = Release; + }; + 002A85EA1073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testsem; + }; + name = Release; + }; + 002A85EC1073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testthread; + }; + name = Release; + }; + 002A85ED1073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testtimer; + }; + name = Release; + }; + 002A85EE1073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testversion; + }; + name = Release; + }; + 002A85F31073009D007319AE /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = torturethread; + }; + name = Release; + }; + 4537749712091509002F0F45 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testshape; + }; + name = Debug; + }; + 4537749812091509002F0F45 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testshape; + }; + name = Release; + }; + BBFC08CB164C6862003E6A99 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testgamecontroller; + }; + name = Debug; + }; + BBFC08CC164C6862003E6A99 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testgamecontroller; + }; + name = Release; + }; + DB0F48EA17CA51E5008798C5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testdrawchessboard; + }; + name = Debug; + }; + DB0F48EB17CA51E5008798C5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testdrawchessboard; + }; + name = Release; + }; + DB0F48FF17CA5212008798C5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testfilesystem; + }; + name = Debug; + }; + DB0F490017CA5212008798C5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testfilesystem; + }; + name = Release; + }; + DB166D8116A1D12400A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = lib; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + DB166D8216A1D12400A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = lib; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; + DB166DBD16A1D2F600A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testgesture; + }; + name = Debug; + }; + DB166DBE16A1D2F600A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testgesture; + }; + name = Release; + }; + DB166DD316A1D36A00A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testmessage; + }; + name = Debug; + }; + DB166DD416A1D36A00A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testmessage; + }; + name = Release; + }; + DB166DEC16A1D50C00A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrelative; + }; + name = Debug; + }; + DB166DED16A1D50C00A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrelative; + }; + name = Release; + }; + DB166E0316A1D57C00A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrendercopyex; + }; + name = Debug; + }; + DB166E0416A1D57C00A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrendercopyex; + }; + name = Release; + }; + DB166E1A16A1D5AD00A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrendertarget; + }; + name = Debug; + }; + DB166E1B16A1D5AD00A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrendertarget; + }; + name = Release; + }; + DB166E3616A1D64D00A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrumble; + }; + name = Debug; + }; + DB166E3716A1D64D00A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testrumble; + }; + name = Release; + }; + DB166E5016A1D69000A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testscale; + }; + name = Debug; + }; + DB166E5116A1D69000A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testscale; + }; + name = Release; + }; + DB166E6616A1D6F300A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testshader; + }; + name = Debug; + }; + DB166E6716A1D6F300A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testshader; + }; + name = Release; + }; + DB166E7C16A1D78400A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testspriteminimal; + }; + name = Debug; + }; + DB166E7D16A1D78400A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testspriteminimal; + }; + name = Release; + }; + DB166E8F16A1D78C00A1396C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = teststreaming; + }; + name = Debug; + }; + DB166E9016A1D78C00A1396C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = teststreaming; + }; + name = Release; + }; + DB445EF618184B7000B306B0 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "TestDropFile-Info.plist"; + PRODUCT_NAME = testdropfile; + }; + name = Debug; + }; + DB445EF718184B7000B306B0 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = "TestDropFile-Info.plist"; + PRODUCT_NAME = testdropfile; + }; + name = Release; + }; + DB89957C18A19ABA0092407C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testhotplug; + }; + name = Debug; + }; + DB89957D18A19ABA0092407C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = testhotplug; + }; + name = Release; + }; + DBEC54E81A1A81C3005B1EAB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = controllermap; + }; + name = Debug; + }; + DBEC54E91A1A81C3005B1EAB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = controllermap; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 0017958610741F7900F5D044 /* Build configuration list for PBXNativeTarget "testatomic" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0017958910741F7900F5D044 /* Debug */, + 0017958A10741F7900F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001795A7107421BF00F5D044 /* Build configuration list for PBXNativeTarget "testaudioinfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001795AA107421BF00F5D044 /* Debug */, + 001795AB107421BF00F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0017971B10742F3200F5D044 /* Build configuration list for PBXNativeTarget "testgl2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0017971E10742F3200F5D044 /* Debug */, + 0017971F10742F3200F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 00179742107430D600F5D044 /* Build configuration list for PBXNativeTarget "testhaptic" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 00179745107430D600F5D044 /* Debug */, + 00179746107430D600F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 00179768107431B300F5D044 /* Build configuration list for PBXNativeTarget "testdraw2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0017976B107431B300F5D044 /* Debug */, + 0017976C107431B300F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 00179788107432AE00F5D044 /* Build configuration list for PBXNativeTarget "testime" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0017978B107432AE00F5D044 /* Debug */, + 0017978C107432AE00F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001797A81074334C00F5D044 /* Build configuration list for PBXNativeTarget "testintersections" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001797AB1074334C00F5D044 /* Debug */, + 001797AC1074334C00F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001797CA107433C600F5D044 /* Build configuration list for PBXNativeTarget "testloadso" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001797CD107433C600F5D044 /* Debug */, + 001797CE107433C600F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0017980C1074355200F5D044 /* Build configuration list for PBXNativeTarget "testmultiaudio" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0017980F1074355200F5D044 /* Debug */, + 001798101074355200F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0017988E1074392D00F5D044 /* Build configuration list for PBXNativeTarget "testnative" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001798911074392D00F5D044 /* Debug */, + 001798921074392D00F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001798AF107439DF00F5D044 /* Build configuration list for PBXNativeTarget "testpower" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001798B2107439DF00F5D044 /* Debug */, + 001798B3107439DF00F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001798EC10743BEC00F5D044 /* Build configuration list for PBXNativeTarget "testresample" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 001798EF10743BEC00F5D044 /* Debug */, + 001798F010743BEC00F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0017991010743F1000F5D044 /* Build configuration list for PBXNativeTarget "testsprite2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0017991310743F1000F5D044 /* Debug */, + 0017991410743F1000F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0017993210743FB700F5D044 /* Build configuration list for PBXNativeTarget "testwm2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0017993510743FB700F5D044 /* Debug */, + 0017993610743FB700F5D044 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B593808BDB826006539E9 /* Build configuration list for PBXNativeTarget "checkkeys" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85B41073008E007319AE /* Debug */, + 002A85D61073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B594008BDB826006539E9 /* Build configuration list for PBXNativeTarget "loopwave" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85B61073008E007319AE /* Debug */, + 002A85D81073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B595008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testerror" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85BC1073008E007319AE /* Debug */, + 002A85DE1073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B595C08BDB826006539E9 /* Build configuration list for PBXNativeTarget "testthread" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85CA1073008E007319AE /* Debug */, + 002A85EC1073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B596008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testjoystick" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85C11073008E007319AE /* Debug */, + 002A85E31073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B596408BDB826006539E9 /* Build configuration list for PBXNativeTarget "testkeys" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85C21073008E007319AE /* Debug */, + 002A85E41073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B596808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testlock" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85C31073008E007319AE /* Debug */, + 002A85E51073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B597008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testsem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85C81073008E007319AE /* Debug */, + 002A85EA1073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B597808BDB826006539E9 /* Build configuration list for PBXNativeTarget "testtimer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85CB1073008E007319AE /* Debug */, + 002A85ED1073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B598008BDB826006539E9 /* Build configuration list for PBXNativeTarget "testversion" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85CC1073008E007319AE /* Debug */, + 002A85EE1073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B599408BDB826006539E9 /* Build configuration list for PBXNativeTarget "torturethread" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85D11073008E007319AE /* Debug */, + 002A85F31073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B599808BDB826006539E9 /* Build configuration list for PBXAggregateTarget "All" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85B31073008E007319AE /* Debug */, + 002A85D51073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 001B5A0C08BDB826006539E9 /* Build configuration list for PBXProject "SDLTest" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85B21073008E007319AE /* Debug */, + 002A85D41073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 002F340E09CA1BFF00EBEB88 /* Build configuration list for PBXNativeTarget "testfile" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85BD1073008E007319AE /* Debug */, + 002A85DF1073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 002F342D09CA1F0300EBEB88 /* Build configuration list for PBXNativeTarget "testiconv" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85C01073008E007319AE /* Debug */, + 002A85E21073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 002F344909CA1FB300EBEB88 /* Build configuration list for PBXNativeTarget "testoverlay2" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85C51073008E007319AE /* Debug */, + 002A85E71073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 002F346609CA204F00EBEB88 /* Build configuration list for PBXNativeTarget "testplatform" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 002A85C71073008E007319AE /* Debug */, + 002A85E91073009D007319AE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 4537749A1209150C002F0F45 /* Build configuration list for PBXNativeTarget "testshape" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4537749712091509002F0F45 /* Debug */, + 4537749812091509002F0F45 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + BBFC08CA164C6862003E6A99 /* Build configuration list for PBXNativeTarget "testgamecontroller" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + BBFC08CB164C6862003E6A99 /* Debug */, + BBFC08CC164C6862003E6A99 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB0F48E917CA51E5008798C5 /* Build configuration list for PBXNativeTarget "testdrawchessboard" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB0F48EA17CA51E5008798C5 /* Debug */, + DB0F48EB17CA51E5008798C5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB0F48FE17CA5212008798C5 /* Build configuration list for PBXNativeTarget "testfilesystem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB0F48FF17CA5212008798C5 /* Debug */, + DB0F490017CA5212008798C5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166D8016A1D12400A1396C /* Build configuration list for PBXNativeTarget "SDL_test" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166D8116A1D12400A1396C /* Debug */, + DB166D8216A1D12400A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166DBC16A1D2F600A1396C /* Build configuration list for PBXNativeTarget "testgesture" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166DBD16A1D2F600A1396C /* Debug */, + DB166DBE16A1D2F600A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166DD216A1D36A00A1396C /* Build configuration list for PBXNativeTarget "testmessage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166DD316A1D36A00A1396C /* Debug */, + DB166DD416A1D36A00A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166DEB16A1D50C00A1396C /* Build configuration list for PBXNativeTarget "testrelative" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166DEC16A1D50C00A1396C /* Debug */, + DB166DED16A1D50C00A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166E0216A1D57C00A1396C /* Build configuration list for PBXNativeTarget "testrendercopyex" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166E0316A1D57C00A1396C /* Debug */, + DB166E0416A1D57C00A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166E1916A1D5AD00A1396C /* Build configuration list for PBXNativeTarget "testrendertarget" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166E1A16A1D5AD00A1396C /* Debug */, + DB166E1B16A1D5AD00A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166E3516A1D64D00A1396C /* Build configuration list for PBXNativeTarget "testrumble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166E3616A1D64D00A1396C /* Debug */, + DB166E3716A1D64D00A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166E4F16A1D69000A1396C /* Build configuration list for PBXNativeTarget "testscale" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166E5016A1D69000A1396C /* Debug */, + DB166E5116A1D69000A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166E6516A1D6F300A1396C /* Build configuration list for PBXNativeTarget "testshader" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166E6616A1D6F300A1396C /* Debug */, + DB166E6716A1D6F300A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166E7B16A1D78400A1396C /* Build configuration list for PBXNativeTarget "testspriteminimal" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166E7C16A1D78400A1396C /* Debug */, + DB166E7D16A1D78400A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB166E8E16A1D78C00A1396C /* Build configuration list for PBXNativeTarget "teststreaming" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB166E8F16A1D78C00A1396C /* Debug */, + DB166E9016A1D78C00A1396C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB445EF518184B7000B306B0 /* Build configuration list for PBXNativeTarget "testdropfile" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB445EF618184B7000B306B0 /* Debug */, + DB445EF718184B7000B306B0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DB89957B18A19ABA0092407C /* Build configuration list for PBXNativeTarget "testhotplug" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DB89957C18A19ABA0092407C /* Debug */, + DB89957D18A19ABA0092407C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + DBEC54E71A1A81C3005B1EAB /* Build configuration list for PBXNativeTarget "controllermap" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DBEC54E81A1A81C3005B1EAB /* Debug */, + DBEC54E91A1A81C3005B1EAB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; +} diff --git a/SDL/Xcode/SDLTest/TestDropFile-Info.plist b/SDL/Xcode/SDLTest/TestDropFile-Info.plist new file mode 100644 index 0000000..03e46b3 --- /dev/null +++ b/SDL/Xcode/SDLTest/TestDropFile-Info.plist @@ -0,0 +1,35 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDocumentTypes + + + CFBundleTypeRole + Viewer + LSHandlerRank + Alternate + LSItemContentTypes + + public.data + + + + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + org.libsdl.test-dropfile + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + LSMinimumSystemVersion + 10.6 + + diff --git a/SDL/Xcode/XcodeDocSet/Doxyfile b/SDL/Xcode/XcodeDocSet/Doxyfile new file mode 100644 index 0000000..961ac98 --- /dev/null +++ b/SDL/Xcode/XcodeDocSet/Doxyfile @@ -0,0 +1,1558 @@ +# Doxyfile 1.6.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = SDL + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = 1.3.0 + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = YES + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. Note that for custom extensions you also need to set +# FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = YES + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = NO + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = NO + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +# will sort the (brief and detailed) documentation of class members so that +# constructors and destructors are listed first. If set to NO (the default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = NO + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ../../include + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.d \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.idl \ + *.odl \ + *.cs \ + *.php \ + *.php3 \ + *.inc \ + *.m \ + *.mm \ + *.dox \ + *.py \ + *.f90 \ + *.f \ + *.vhd \ + *.vhdl + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = YES + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs for SDL" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.libsdl.sdl + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = SDL.chm + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = "C:/Program Files/HTML Help Workshop/hhc.exe" + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = YES + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# When the SEARCHENGINE tag is enable doxygen will generate a search box +# for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using +# HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP) +# there is already a search function so this one should typically +# be disabled. + +SEARCHENGINE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include +# source code with syntax highlighting in the LaTeX output. +# Note that which sources are shown also depends on other settings +# such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = YES + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = YES + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = NO + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = DECLSPEC \ + SDLCALL + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = NO + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = /Applications/Graphviz.app/Contents/MacOS + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 67 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 2 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff --git a/SDL/acinclude/ac_check_define.m4 b/SDL/acinclude/ac_check_define.m4 new file mode 100644 index 0000000..64de801 --- /dev/null +++ b/SDL/acinclude/ac_check_define.m4 @@ -0,0 +1,14 @@ +AC_DEFUN([AC_CHECK_DEFINE],[dnl + AC_CACHE_CHECK(for $1 in $2, ac_cv_define_$1, + AC_EGREP_CPP([YES_IS_DEFINED], [ +#include <$2> +#ifdef $1 +YES_IS_DEFINED +#endif + ], ac_cv_define_$1=yes, ac_cv_define_$1=no) + ) + if test "$ac_cv_define_$1" = "yes" ; then + AC_DEFINE([HAVE_$1],[],[Added by AC_CHECK_DEFINE]) + fi +])dnl +AC_DEFINE([HAVE_$1],[],[Added by AC_CHECK_DEFINE]) diff --git a/SDL/acinclude/alsa.m4 b/SDL/acinclude/alsa.m4 new file mode 100644 index 0000000..d818e70 --- /dev/null +++ b/SDL/acinclude/alsa.m4 @@ -0,0 +1,145 @@ +############################################################################## +dnl Configure Paths for Alsa +dnl Some modifications by Richard Boulton +dnl Christopher Lansdown +dnl Jaroslav Kysela +dnl Last modification: alsa.m4,v 1.23 2004/01/16 18:14:22 tiwai Exp +dnl AM_PATH_ALSA([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) +dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate. +dnl enables arguments --with-alsa-prefix= +dnl --with-alsa-enc-prefix= +dnl --disable-alsatest +dnl +dnl For backwards compatibility, if ACTION_IF_NOT_FOUND is not specified, +dnl and the alsa libraries are not found, a fatal AC_MSG_ERROR() will result. +dnl +AC_DEFUN([AM_PATH_ALSA], +[dnl Save the original CFLAGS, LDFLAGS, and LIBS +alsa_save_CFLAGS="$CFLAGS" +alsa_save_LDFLAGS="$LDFLAGS" +alsa_save_LIBS="$LIBS" +alsa_found=yes + +dnl +dnl Get the cflags and libraries for alsa +dnl +AC_ARG_WITH(alsa-prefix, +[ --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional)], +[alsa_prefix="$withval"], [alsa_prefix=""]) + +AC_ARG_WITH(alsa-inc-prefix, +[ --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional)], +[alsa_inc_prefix="$withval"], [alsa_inc_prefix=""]) + +dnl FIXME: this is not yet implemented +AC_ARG_ENABLE(alsatest, +[ --disable-alsatest Do not try to compile and run a test Alsa program], +[enable_alsatest="$enableval"], +[enable_alsatest=yes]) + +dnl Add any special include directories +AC_MSG_CHECKING(for ALSA CFLAGS) +if test "$alsa_inc_prefix" != "" ; then + ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix" + CFLAGS="$CFLAGS -I$alsa_inc_prefix" +fi +AC_MSG_RESULT($ALSA_CFLAGS) + +dnl add any special lib dirs +AC_MSG_CHECKING(for ALSA LDFLAGS) +if test "$alsa_prefix" != "" ; then + ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix" + LDFLAGS="$LDFLAGS $ALSA_LIBS" +fi + +dnl add the alsa library +ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread" +LIBS=`echo $LIBS | sed 's/-lm//'` +LIBS=`echo $LIBS | sed 's/-ldl//'` +LIBS=`echo $LIBS | sed 's/-lpthread//'` +LIBS=`echo $LIBS | sed 's/ //'` +LIBS="$ALSA_LIBS $LIBS" +AC_MSG_RESULT($ALSA_LIBS) + +dnl Check for a working version of libasound that is of the right version. +min_alsa_version=ifelse([$1], ,0.1.1,$1) +AC_MSG_CHECKING(for libasound headers version >= $min_alsa_version) +no_alsa="" + alsa_min_major_version=`echo $min_alsa_version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` + alsa_min_minor_version=`echo $min_alsa_version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` + alsa_min_micro_version=`echo $min_alsa_version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` + +AC_LANG_SAVE +AC_LANG_C +AC_TRY_COMPILE([ +#include +], [ +/* ensure backward compatibility */ +#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR) +#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR +#endif +#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR) +#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR +#endif +#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR) +#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR +#endif + +# if(SND_LIB_MAJOR > $alsa_min_major_version) + exit(0); +# else +# if(SND_LIB_MAJOR < $alsa_min_major_version) +# error not present +# endif + +# if(SND_LIB_MINOR > $alsa_min_minor_version) + exit(0); +# else +# if(SND_LIB_MINOR < $alsa_min_minor_version) +# error not present +# endif + +# if(SND_LIB_SUBMINOR < $alsa_min_micro_version) +# error not present +# endif +# endif +# endif +exit(0); +], + [AC_MSG_RESULT(found.)], + [AC_MSG_RESULT(not present.) + ifelse([$3], , [AC_MSG_ERROR(Sufficiently new version of libasound not found.)]) + alsa_found=no] +) +AC_LANG_RESTORE + +dnl Now that we know that we have the right version, let's see if we have the library and not just the headers. +if test "x$enable_alsatest" = "xyes"; then +AC_CHECK_LIB([asound], [snd_ctl_open],, + [ifelse([$3], , [AC_MSG_ERROR(No linkable libasound was found.)]) + alsa_found=no] +) +fi + +if test "x$alsa_found" = "xyes" ; then + ifelse([$2], , :, [$2]) + LIBS=`echo $LIBS | sed 's/-lasound//g'` + LIBS=`echo $LIBS | sed 's/ //'` + LIBS="-lasound $LIBS" +fi +if test "x$alsa_found" = "xno" ; then + ifelse([$3], , :, [$3]) + CFLAGS="$alsa_save_CFLAGS" + LDFLAGS="$alsa_save_LDFLAGS" + LIBS="$alsa_save_LIBS" + ALSA_CFLAGS="" + ALSA_LIBS="" +fi + +dnl That should be it. Now just export out symbols: +AC_SUBST(ALSA_CFLAGS) +AC_SUBST(ALSA_LIBS) +]) diff --git a/SDL/acinclude/ax_check_compiler_flags.m4 b/SDL/acinclude/ax_check_compiler_flags.m4 new file mode 100644 index 0000000..35bfd2a --- /dev/null +++ b/SDL/acinclude/ax_check_compiler_flags.m4 @@ -0,0 +1,76 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_check_compiler_flags.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_CHECK_COMPILER_FLAGS(FLAGS, [ACTION-SUCCESS], [ACTION-FAILURE]) +# +# DESCRIPTION +# +# Check whether the given compiler FLAGS work with the current language's +# compiler, or whether they give an error. (Warnings, however, are +# ignored.) +# +# ACTION-SUCCESS/ACTION-FAILURE are shell commands to execute on +# success/failure. +# +# LICENSE +# +# Copyright (c) 2009 Steven G. Johnson +# Copyright (c) 2009 Matteo Frigo +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see . +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +#serial 9 + +AC_DEFUN([AX_CHECK_COMPILER_FLAGS], +[AC_PREREQ(2.59) dnl for _AC_LANG_PREFIX +AC_MSG_CHECKING([whether _AC_LANG compiler accepts $1]) +dnl Some hackery here since AC_CACHE_VAL can't handle a non-literal varname: +AS_LITERAL_IF([$1], + [AC_CACHE_VAL(AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1]), [ + ax_save_FLAGS=$[]_AC_LANG_PREFIX[]FLAGS + _AC_LANG_PREFIX[]FLAGS="$1" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], + AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=yes, + AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=no) + _AC_LANG_PREFIX[]FLAGS=$ax_save_FLAGS])], + [ax_save_FLAGS=$[]_AC_LANG_PREFIX[]FLAGS + _AC_LANG_PREFIX[]FLAGS="$1" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], + eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=yes, + eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1])=no) + _AC_LANG_PREFIX[]FLAGS=$ax_save_FLAGS]) +eval ax_check_compiler_flags=$AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_[$1]) +AC_MSG_RESULT($ax_check_compiler_flags) +if test "x$ax_check_compiler_flags" = xyes; then + m4_default([$2], :) +else + m4_default([$3], :) +fi +])dnl AX_CHECK_COMPILER_FLAGS diff --git a/SDL/acinclude/ax_gcc_archflag.m4 b/SDL/acinclude/ax_gcc_archflag.m4 new file mode 100644 index 0000000..d37a913 --- /dev/null +++ b/SDL/acinclude/ax_gcc_archflag.m4 @@ -0,0 +1,215 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_gcc_archflag.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_GCC_ARCHFLAG([PORTABLE?], [ACTION-SUCCESS], [ACTION-FAILURE]) +# +# DESCRIPTION +# +# This macro tries to guess the "native" arch corresponding to the target +# architecture for use with gcc's -march=arch or -mtune=arch flags. If +# found, the cache variable $ax_cv_gcc_archflag is set to this flag and +# ACTION-SUCCESS is executed; otherwise $ax_cv_gcc_archflag is is set to +# "unknown" and ACTION-FAILURE is executed. The default ACTION-SUCCESS is +# to add $ax_cv_gcc_archflag to the end of $CFLAGS. +# +# PORTABLE? should be either [yes] (default) or [no]. In the former case, +# the flag is set to -mtune (or equivalent) so that the architecture is +# only used for tuning, but the instruction set used is still portable. In +# the latter case, the flag is set to -march (or equivalent) so that +# architecture-specific instructions are enabled. +# +# The user can specify --with-gcc-arch= in order to override the +# macro's choice of architecture, or --without-gcc-arch to disable this. +# +# When cross-compiling, or if $CC is not gcc, then ACTION-FAILURE is +# called unless the user specified --with-gcc-arch manually. +# +# Requires macros: AX_CHECK_COMPILER_FLAGS, AX_GCC_X86_CPUID +# +# (The main emphasis here is on recent CPUs, on the principle that doing +# high-performance computing on old hardware is uncommon.) +# +# LICENSE +# +# Copyright (c) 2008 Steven G. Johnson +# Copyright (c) 2008 Matteo Frigo +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see . +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +#serial 8 + +AC_DEFUN([AX_GCC_ARCHFLAG], +[AC_REQUIRE([AC_PROG_CC]) +AC_REQUIRE([AC_CANONICAL_HOST]) + +AC_ARG_WITH(gcc-arch, [AS_HELP_STRING([--with-gcc-arch=], [use architecture for gcc -march/-mtune, instead of guessing])], + ax_gcc_arch=$withval, ax_gcc_arch=yes) + +AC_MSG_CHECKING([for gcc architecture flag]) +AC_MSG_RESULT([]) +AC_CACHE_VAL(ax_cv_gcc_archflag, +[ +ax_cv_gcc_archflag="unknown" + +if test "$GCC" = yes; then + +if test "x$ax_gcc_arch" = xyes; then +ax_gcc_arch="" +if test "$cross_compiling" = no; then +case $host_cpu in + i[[3456]]86*|x86_64*) # use cpuid codes, in part from x86info-1.7 by D. Jones + AX_GCC_X86_CPUID(0) + AX_GCC_X86_CPUID(1) + case $ax_cv_gcc_x86_cpuid_0 in + *:756e6547:*:*) # Intel + case $ax_cv_gcc_x86_cpuid_1 in + *5[[48]]?:*:*:*) ax_gcc_arch="pentium-mmx pentium" ;; + *5??:*:*:*) ax_gcc_arch=pentium ;; + *6[[3456]]?:*:*:*) ax_gcc_arch="pentium2 pentiumpro" ;; + *6a?:*[[01]]:*:*) ax_gcc_arch="pentium2 pentiumpro" ;; + *6a?:*[[234]]:*:*) ax_gcc_arch="pentium3 pentiumpro" ;; + *6[[9d]]?:*:*:*) ax_gcc_arch="pentium-m pentium3 pentiumpro" ;; + *6[[78b]]?:*:*:*) ax_gcc_arch="pentium3 pentiumpro" ;; + *6??:*:*:*) ax_gcc_arch=pentiumpro ;; + *f3[[347]]:*:*:*|*f4[1347]:*:*:*) + case $host_cpu in + x86_64*) ax_gcc_arch="nocona pentium4 pentiumpro" ;; + *) ax_gcc_arch="prescott pentium4 pentiumpro" ;; + esac ;; + *f??:*:*:*) ax_gcc_arch="pentium4 pentiumpro";; + esac ;; + *:68747541:*:*) # AMD + case $ax_cv_gcc_x86_cpuid_1 in + *5[[67]]?:*:*:*) ax_gcc_arch=k6 ;; + *5[[8d]]?:*:*:*) ax_gcc_arch="k6-2 k6" ;; + *5[[9]]?:*:*:*) ax_gcc_arch="k6-3 k6" ;; + *60?:*:*:*) ax_gcc_arch=k7 ;; + *6[[12]]?:*:*:*) ax_gcc_arch="athlon k7" ;; + *6[[34]]?:*:*:*) ax_gcc_arch="athlon-tbird k7" ;; + *67?:*:*:*) ax_gcc_arch="athlon-4 athlon k7" ;; + *6[[68a]]?:*:*:*) + AX_GCC_X86_CPUID(0x80000006) # L2 cache size + case $ax_cv_gcc_x86_cpuid_0x80000006 in + *:*:*[[1-9a-f]]??????:*) # (L2 = ecx >> 16) >= 256 + ax_gcc_arch="athlon-xp athlon-4 athlon k7" ;; + *) ax_gcc_arch="athlon-4 athlon k7" ;; + esac ;; + *f[[4cef8b]]?:*:*:*) ax_gcc_arch="athlon64 k8" ;; + *f5?:*:*:*) ax_gcc_arch="opteron k8" ;; + *f7?:*:*:*) ax_gcc_arch="athlon-fx opteron k8" ;; + *f??:*:*:*) ax_gcc_arch="k8" ;; + esac ;; + *:746e6543:*:*) # IDT + case $ax_cv_gcc_x86_cpuid_1 in + *54?:*:*:*) ax_gcc_arch=winchip-c6 ;; + *58?:*:*:*) ax_gcc_arch=winchip2 ;; + *6[[78]]?:*:*:*) ax_gcc_arch=c3 ;; + *69?:*:*:*) ax_gcc_arch="c3-2 c3" ;; + esac ;; + esac + if test x"$ax_gcc_arch" = x; then # fallback + case $host_cpu in + i586*) ax_gcc_arch=pentium ;; + i686*) ax_gcc_arch=pentiumpro ;; + esac + fi + ;; + + sparc*) + AC_PATH_PROG([PRTDIAG], [prtdiag], [prtdiag], [$PATH:/usr/platform/`uname -i`/sbin/:/usr/platform/`uname -m`/sbin/]) + cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null` + cputype=`echo "$cputype" | tr -d ' -' |tr $as_cr_LETTERS $as_cr_letters` + case $cputype in + *ultrasparciv*) ax_gcc_arch="ultrasparc4 ultrasparc3 ultrasparc v9" ;; + *ultrasparciii*) ax_gcc_arch="ultrasparc3 ultrasparc v9" ;; + *ultrasparc*) ax_gcc_arch="ultrasparc v9" ;; + *supersparc*|*tms390z5[[05]]*) ax_gcc_arch="supersparc v8" ;; + *hypersparc*|*rt62[[056]]*) ax_gcc_arch="hypersparc v8" ;; + *cypress*) ax_gcc_arch=cypress ;; + esac ;; + + alphaev5) ax_gcc_arch=ev5 ;; + alphaev56) ax_gcc_arch=ev56 ;; + alphapca56) ax_gcc_arch="pca56 ev56" ;; + alphapca57) ax_gcc_arch="pca57 pca56 ev56" ;; + alphaev6) ax_gcc_arch=ev6 ;; + alphaev67) ax_gcc_arch=ev67 ;; + alphaev68) ax_gcc_arch="ev68 ev67" ;; + alphaev69) ax_gcc_arch="ev69 ev68 ev67" ;; + alphaev7) ax_gcc_arch="ev7 ev69 ev68 ev67" ;; + alphaev79) ax_gcc_arch="ev79 ev7 ev69 ev68 ev67" ;; + + powerpc*) + cputype=`((grep cpu /proc/cpuinfo | head -n 1 | cut -d: -f2 | cut -d, -f1 | sed 's/ //g') ; /usr/bin/machine ; /bin/machine; grep CPU /var/run/dmesg.boot | head -n 1 | cut -d" " -f2) 2> /dev/null` + cputype=`echo $cputype | sed -e 's/ppc//g;s/ *//g'` + case $cputype in + *750*) ax_gcc_arch="750 G3" ;; + *740[[0-9]]*) ax_gcc_arch="$cputype 7400 G4" ;; + *74[[4-5]][[0-9]]*) ax_gcc_arch="$cputype 7450 G4" ;; + *74[[0-9]][[0-9]]*) ax_gcc_arch="$cputype G4" ;; + *970*) ax_gcc_arch="970 G5 power4";; + *POWER4*|*power4*|*gq*) ax_gcc_arch="power4 970";; + *POWER5*|*power5*|*gr*|*gs*) ax_gcc_arch="power5 power4 970";; + 603ev|8240) ax_gcc_arch="$cputype 603e 603";; + *) ax_gcc_arch=$cputype ;; + esac + ax_gcc_arch="$ax_gcc_arch powerpc" + ;; +esac +fi # not cross-compiling +fi # guess arch + +if test "x$ax_gcc_arch" != x -a "x$ax_gcc_arch" != xno; then +for arch in $ax_gcc_arch; do + if test "x[]m4_default([$1],yes)" = xyes; then # if we require portable code + flags="-mtune=$arch" + # -mcpu=$arch and m$arch generate nonportable code on every arch except + # x86. And some other arches (e.g. Alpha) don't accept -mtune. Grrr. + case $host_cpu in i*86|x86_64*) flags="$flags -mcpu=$arch -m$arch";; esac + else + flags="-march=$arch -mcpu=$arch -m$arch" + fi + for flag in $flags; do + AX_CHECK_COMPILER_FLAGS($flag, [ax_cv_gcc_archflag=$flag; break]) + done + test "x$ax_cv_gcc_archflag" = xunknown || break +done +fi + +fi # $GCC=yes +]) +AC_MSG_CHECKING([for gcc architecture flag]) +AC_MSG_RESULT($ax_cv_gcc_archflag) +if test "x$ax_cv_gcc_archflag" = xunknown; then + m4_default([$3],:) +else + m4_default([$2], [CFLAGS="$CFLAGS $ax_cv_gcc_archflag"]) +fi +]) diff --git a/SDL/acinclude/ax_gcc_x86_cpuid.m4.htm b/SDL/acinclude/ax_gcc_x86_cpuid.m4.htm new file mode 100644 index 0000000..7d46fee --- /dev/null +++ b/SDL/acinclude/ax_gcc_x86_cpuid.m4.htm @@ -0,0 +1,79 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_gcc_x86_cpuid.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_GCC_X86_CPUID(OP) +# +# DESCRIPTION +# +# On Pentium and later x86 processors, with gcc or a compiler that has a +# compatible syntax for inline assembly instructions, run a small program +# that executes the cpuid instruction with input OP. This can be used to +# detect the CPU type. +# +# On output, the values of the eax, ebx, ecx, and edx registers are stored +# as hexadecimal strings as "eax:ebx:ecx:edx" in the cache variable +# ax_cv_gcc_x86_cpuid_OP. +# +# If the cpuid instruction fails (because you are running a +# cross-compiler, or because you are not using gcc, or because you are on +# a processor that doesn't have this instruction), ax_cv_gcc_x86_cpuid_OP +# is set to the string "unknown". +# +# This macro mainly exists to be used in AX_GCC_ARCHFLAG. +# +# LICENSE +# +# Copyright (c) 2008 Steven G. Johnson +# Copyright (c) 2008 Matteo Frigo +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see . +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +#serial 7 + +AC_DEFUN([AX_GCC_X86_CPUID], +[AC_REQUIRE([AC_PROG_CC]) +AC_LANG_PUSH([C]) +AC_CACHE_CHECK(for x86 cpuid $1 output, ax_cv_gcc_x86_cpuid_$1, + [AC_RUN_IFELSE([AC_LANG_PROGRAM([#include ], [ + int op = $1, eax, ebx, ecx, edx; + FILE *f; + __asm__("cpuid" + : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) + : "a" (op)); + f = fopen("conftest_cpuid", "w"); if (!f) return 1; + fprintf(f, "%x:%x:%x:%x\n", eax, ebx, ecx, edx); + fclose(f); + return 0; +])], + [ax_cv_gcc_x86_cpuid_$1=`cat conftest_cpuid`; rm -f conftest_cpuid], + [ax_cv_gcc_x86_cpuid_$1=unknown; rm -f conftest_cpuid], + [ax_cv_gcc_x86_cpuid_$1=unknown])]) +AC_LANG_POP([C]) +]) diff --git a/SDL/acinclude/esd.m4 b/SDL/acinclude/esd.m4 new file mode 100644 index 0000000..58d64a9 --- /dev/null +++ b/SDL/acinclude/esd.m4 @@ -0,0 +1,168 @@ +############################################################################## +# +# --- esd.m4 --- +# +# Configure paths for ESD +# Manish Singh 98-9-30 +# stolen back from Frank Belew +# stolen from Manish Singh +# Shamelessly stolen from Owen Taylor + +dnl AM_PATH_ESD([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) +dnl Test for ESD, and define ESD_CFLAGS and ESD_LIBS +dnl +AC_DEFUN([AM_PATH_ESD], +[dnl +dnl Get the cflags and libraries from the esd-config script +dnl +AC_ARG_WITH(esd-prefix,[ --with-esd-prefix=PFX Prefix where ESD is installed (optional)], + esd_prefix="$withval", esd_prefix="") +AC_ARG_WITH(esd-exec-prefix,[ --with-esd-exec-prefix=PFX Exec prefix where ESD is installed (optional)], + esd_exec_prefix="$withval", esd_exec_prefix="") +AC_ARG_ENABLE(esdtest, [ --disable-esdtest Do not try to compile and run a test ESD program], + , enable_esdtest=yes) + + if test x$esd_exec_prefix != x ; then + esd_args="$esd_args --exec-prefix=$esd_exec_prefix" + if test x${ESD_CONFIG+set} != xset ; then + ESD_CONFIG=$esd_exec_prefix/bin/esd-config + fi + fi + if test x$esd_prefix != x ; then + esd_args="$esd_args --prefix=$esd_prefix" + if test x${ESD_CONFIG+set} != xset ; then + ESD_CONFIG=$esd_prefix/bin/esd-config + fi + fi + + AC_PATH_PROG(ESD_CONFIG, esd-config, no) + min_esd_version=ifelse([$1], ,0.2.7,$1) + AC_MSG_CHECKING(for ESD - version >= $min_esd_version) + no_esd="" + if test "$ESD_CONFIG" = "no" ; then + no_esd=yes + else + ESD_CFLAGS=`$ESD_CONFIG $esdconf_args --cflags` + ESD_LIBS=`$ESD_CONFIG $esdconf_args --libs` + + esd_major_version=`$ESD_CONFIG $esd_args --version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` + esd_minor_version=`$ESD_CONFIG $esd_args --version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` + esd_micro_version=`$ESD_CONFIG $esd_config_args --version | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` + if test "x$enable_esdtest" = "xyes" ; then + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" + CFLAGS="$CFLAGS $ESD_CFLAGS" + LIBS="$LIBS $ESD_LIBS" +dnl +dnl Now check if the installed ESD is sufficiently new. (Also sanity +dnl checks the results of esd-config to some extent +dnl + rm -f conf.esdtest + AC_TRY_RUN([ +#include +#include +#include +#include + +char* +my_strdup (char *str) +{ + char *new_str; + + if (str) + { + new_str = malloc ((strlen (str) + 1) * sizeof(char)); + strcpy (new_str, str); + } + else + new_str = NULL; + + return new_str; +} + +int main () +{ + int major, minor, micro; + char *tmp_version; + + system ("touch conf.esdtest"); + + /* HP/UX 9 (%@#!) writes to sscanf strings */ + tmp_version = my_strdup("$min_esd_version"); + if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { + printf("%s, bad version string\n", "$min_esd_version"); + exit(1); + } + + if (($esd_major_version > major) || + (($esd_major_version == major) && ($esd_minor_version > minor)) || + (($esd_major_version == major) && ($esd_minor_version == minor) && ($esd_micro_version >= micro))) + { + return 0; + } + else + { + printf("\n*** 'esd-config --version' returned %d.%d.%d, but the minimum version\n", $esd_major_version, $esd_minor_version, $esd_micro_version); + printf("*** of ESD required is %d.%d.%d. If esd-config is correct, then it is\n", major, minor, micro); + printf("*** best to upgrade to the required version.\n"); + printf("*** If esd-config was wrong, set the environment variable ESD_CONFIG\n"); + printf("*** to point to the correct copy of esd-config, and remove the file\n"); + printf("*** config.cache before re-running configure\n"); + return 1; + } +} + +],, no_esd=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + fi + if test "x$no_esd" = x ; then + AC_MSG_RESULT(yes) + ifelse([$2], , :, [$2]) + else + AC_MSG_RESULT(no) + if test "$ESD_CONFIG" = "no" ; then + echo "*** The esd-config script installed by ESD could not be found" + echo "*** If ESD was installed in PREFIX, make sure PREFIX/bin is in" + echo "*** your path, or set the ESD_CONFIG environment variable to the" + echo "*** full path to esd-config." + else + if test -f conf.esdtest ; then + : + else + echo "*** Could not run ESD test program, checking why..." + CFLAGS="$CFLAGS $ESD_CFLAGS" + LIBS="$LIBS $ESD_LIBS" + AC_TRY_LINK([ +#include +#include +], [ return 0; ], + [ echo "*** The test program compiled, but did not run. This usually means" + echo "*** that the run-time linker is not finding ESD or finding the wrong" + echo "*** version of ESD. If it is not finding ESD, you'll need to set your" + echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" + echo "*** to the installed location Also, make sure you have run ldconfig if that" + echo "*** is required on your system" + echo "***" + echo "*** If you have an old version installed, it is best to remove it, although" + echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], + [ echo "*** The test program failed to compile or link. See the file config.log for the" + echo "*** exact error that occured. This usually means ESD was incorrectly installed" + echo "*** or that you have moved ESD since it was installed. In the latter case, you" + echo "*** may want to edit the esd-config script: $ESD_CONFIG" ]) + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + fi + ESD_CFLAGS="" + ESD_LIBS="" + ifelse([$3], , :, [$3]) + fi + AC_SUBST(ESD_CFLAGS) + AC_SUBST(ESD_LIBS) + rm -f conf.esdtest +]) diff --git a/SDL/acinclude/libtool.m4 b/SDL/acinclude/libtool.m4 new file mode 100644 index 0000000..0eb07c8 --- /dev/null +++ b/SDL/acinclude/libtool.m4 @@ -0,0 +1,7995 @@ +############################################################################## +# Based on libtool-2.4.2 +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 57 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + +## ------------------------------------- ## +## Accumulate code for creating libtool. ## +## ------------------------------------- ## + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + +## ------------------------ ## +## FIXME: Eliminate VARNAME ## +## ------------------------ ## + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# `#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test $lt_write_fail = 0 && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_REPLACE_SHELLFNS + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case "$ECHO" in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and in which our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary... + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2 or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + #soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo ${libname} | sed -e 's/^lib//'`${shared_ext}' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + #soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + soname_spec='`echo ${libname} | $SED -e 's/^lib//'`${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + lt_cv_deplibs_check_method=pass_all + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd*) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine which file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS diff --git a/SDL/acinclude/ltoptions.m4 b/SDL/acinclude/ltoptions.m4 new file mode 100644 index 0000000..5d9acd8 --- /dev/null +++ b/SDL/acinclude/ltoptions.m4 @@ -0,0 +1,384 @@ +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 7 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + +## --------------------------------- ## +## Macros to handle LT_INIT options. ## +## --------------------------------- ## + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +## ----------------- ## +## LTDL_INIT Options ## +## ----------------- ## + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) diff --git a/SDL/acinclude/ltsugar.m4 b/SDL/acinclude/ltsugar.m4 new file mode 100644 index 0000000..9000a05 --- /dev/null +++ b/SDL/acinclude/ltsugar.m4 @@ -0,0 +1,123 @@ +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) diff --git a/SDL/acinclude/ltversion.m4 b/SDL/acinclude/ltversion.m4 new file mode 100644 index 0000000..07a8602 --- /dev/null +++ b/SDL/acinclude/ltversion.m4 @@ -0,0 +1,23 @@ +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 3337 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.2]) +m4_define([LT_PACKAGE_REVISION], [1.3337]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.2' +macro_revision='1.3337' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) diff --git a/SDL/acinclude/lt~obsolete.m4 b/SDL/acinclude/lt~obsolete.m4 new file mode 100644 index 0000000..c573da9 --- /dev/null +++ b/SDL/acinclude/lt~obsolete.m4 @@ -0,0 +1,98 @@ +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) diff --git a/SDL/android-project/AndroidManifest.xml b/SDL/android-project/AndroidManifest.xml new file mode 100644 index 0000000..328e08c --- /dev/null +++ b/SDL/android-project/AndroidManifest.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/android-project/ant.properties b/SDL/android-project/ant.properties new file mode 100644 index 0000000..b0971e8 --- /dev/null +++ b/SDL/android-project/ant.properties @@ -0,0 +1,17 @@ +# This file is used to override default values used by the Ant build system. +# +# This file must be checked into Version Control Systems, as it is +# integral to the build system of your project. + +# This file is only used by the Ant script. + +# You can use this to override default values such as +# 'source.dir' for the location of your java source folder and +# 'out.dir' for the location of your output folder. + +# You can also use it define how the release builds are signed by declaring +# the following properties: +# 'key.store' for the location of your keystore and +# 'key.alias' for the name of the key to use. +# The password will be asked during the build when you use the 'release' target. + diff --git a/SDL/android-project/build.properties b/SDL/android-project/build.properties new file mode 100644 index 0000000..edc7f23 --- /dev/null +++ b/SDL/android-project/build.properties @@ -0,0 +1,17 @@ +# This file is used to override default values used by the Ant build system. +# +# This file must be checked in Version Control Systems, as it is +# integral to the build system of your project. + +# This file is only used by the Ant script. + +# You can use this to override default values such as +# 'source.dir' for the location of your java source folder and +# 'out.dir' for the location of your output folder. + +# You can also use it define how the release builds are signed by declaring +# the following properties: +# 'key.store' for the location of your keystore and +# 'key.alias' for the name of the key to use. +# The password will be asked during the build when you use the 'release' target. + diff --git a/SDL/android-project/build.xml b/SDL/android-project/build.xml new file mode 100644 index 0000000..9f19a07 --- /dev/null +++ b/SDL/android-project/build.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SDL/android-project/default.properties b/SDL/android-project/default.properties new file mode 100644 index 0000000..0cdab95 --- /dev/null +++ b/SDL/android-project/default.properties @@ -0,0 +1,11 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system use, +# "build.properties", and override values to adapt the script to your +# project structure. + +# Project target. +target=android-12 diff --git a/SDL/android-project/jni/Android.mk b/SDL/android-project/jni/Android.mk new file mode 100644 index 0000000..5053e7d --- /dev/null +++ b/SDL/android-project/jni/Android.mk @@ -0,0 +1 @@ +include $(call all-subdir-makefiles) diff --git a/SDL/android-project/jni/Application.mk b/SDL/android-project/jni/Application.mk new file mode 100644 index 0000000..e5b5079 --- /dev/null +++ b/SDL/android-project/jni/Application.mk @@ -0,0 +1,6 @@ + +# Uncomment this if you're using STL in your project +# See CPLUSPLUS-SUPPORT.html in the NDK documentation for more information +# APP_STL := stlport_static + +APP_ABI := armeabi armeabi-v7a x86 diff --git a/SDL/android-project/jni/src/Android.mk b/SDL/android-project/jni/src/Android.mk new file mode 100644 index 0000000..943a8cd --- /dev/null +++ b/SDL/android-project/jni/src/Android.mk @@ -0,0 +1,19 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := main + +SDL_PATH := ../SDL + +LOCAL_C_INCLUDES := $(LOCAL_PATH)/$(SDL_PATH)/include + +# Add your application source files here... +LOCAL_SRC_FILES := $(SDL_PATH)/src/main/android/SDL_android_main.c \ + YourSourceHere.c + +LOCAL_SHARED_LIBRARIES := SDL2 + +LOCAL_LDLIBS := -lGLESv1_CM -lGLESv2 -llog + +include $(BUILD_SHARED_LIBRARY) diff --git a/SDL/android-project/jni/src/Android_static.mk b/SDL/android-project/jni/src/Android_static.mk new file mode 100644 index 0000000..faed669 --- /dev/null +++ b/SDL/android-project/jni/src/Android_static.mk @@ -0,0 +1,12 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := main + +LOCAL_SRC_FILES := YourSourceHere.c + +LOCAL_STATIC_LIBRARIES := SDL2_static + +include $(BUILD_SHARED_LIBRARY) +$(call import-module,SDL)LOCAL_PATH := $(call my-dir) diff --git a/SDL/android-project/proguard-project.txt b/SDL/android-project/proguard-project.txt new file mode 100644 index 0000000..f2fe155 --- /dev/null +++ b/SDL/android-project/proguard-project.txt @@ -0,0 +1,20 @@ +# To enable ProGuard in your project, edit project.properties +# to define the proguard.config property as described in that file. +# +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in ${sdk.dir}/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the ProGuard +# include property in project.properties. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/SDL/android-project/project.properties b/SDL/android-project/project.properties new file mode 100644 index 0000000..0f507e5 --- /dev/null +++ b/SDL/android-project/project.properties @@ -0,0 +1,14 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-12 diff --git a/SDL/android-project/res/drawable-hdpi/ic_launcher.png b/SDL/android-project/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 0000000..d50bdaa Binary files /dev/null and b/SDL/android-project/res/drawable-hdpi/ic_launcher.png differ diff --git a/SDL/android-project/res/drawable-mdpi/ic_launcher.png b/SDL/android-project/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 0000000..0a299eb Binary files /dev/null and b/SDL/android-project/res/drawable-mdpi/ic_launcher.png differ diff --git a/SDL/android-project/res/drawable-xhdpi/ic_launcher.png b/SDL/android-project/res/drawable-xhdpi/ic_launcher.png new file mode 100644 index 0000000..a336ad5 Binary files /dev/null and b/SDL/android-project/res/drawable-xhdpi/ic_launcher.png differ diff --git a/SDL/android-project/res/drawable-xxhdpi/ic_launcher.png b/SDL/android-project/res/drawable-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d423dac Binary files /dev/null and b/SDL/android-project/res/drawable-xxhdpi/ic_launcher.png differ diff --git a/SDL/android-project/res/layout/main.xml b/SDL/android-project/res/layout/main.xml new file mode 100644 index 0000000..123c4b6 --- /dev/null +++ b/SDL/android-project/res/layout/main.xml @@ -0,0 +1,13 @@ + + + + + diff --git a/SDL/android-project/res/values/strings.xml b/SDL/android-project/res/values/strings.xml new file mode 100644 index 0000000..9bce51c --- /dev/null +++ b/SDL/android-project/res/values/strings.xml @@ -0,0 +1,4 @@ + + + SDL App + diff --git a/SDL/android-project/src/org/libsdl/app/SDLActivity.java b/SDL/android-project/src/org/libsdl/app/SDLActivity.java new file mode 100644 index 0000000..bc81b03 --- /dev/null +++ b/SDL/android-project/src/org/libsdl/app/SDLActivity.java @@ -0,0 +1,1674 @@ +package org.libsdl.app; + +import java.io.IOException; +import java.io.InputStream; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; +import java.lang.reflect.Method; + +import android.app.*; +import android.content.*; +import android.text.InputType; +import android.view.*; +import android.view.inputmethod.BaseInputConnection; +import android.view.inputmethod.EditorInfo; +import android.view.inputmethod.InputConnection; +import android.view.inputmethod.InputMethodManager; +import android.widget.AbsoluteLayout; +import android.widget.Button; +import android.widget.LinearLayout; +import android.widget.TextView; +import android.os.*; +import android.util.Log; +import android.util.SparseArray; +import android.graphics.*; +import android.graphics.drawable.Drawable; +import android.media.*; +import android.hardware.*; +import android.content.pm.ActivityInfo; + +/** + SDL Activity +*/ +public class SDLActivity extends Activity { + private static final String TAG = "SDL"; + + // Keep track of the paused state + public static boolean mIsPaused, mIsSurfaceReady, mHasFocus; + public static boolean mExitCalledFromJava; + + /** If shared libraries (e.g. SDL or the native application) could not be loaded. */ + public static boolean mBrokenLibraries; + + // If we want to separate mouse and touch events. + // This is only toggled in native code when a hint is set! + public static boolean mSeparateMouseAndTouch; + + // Main components + protected static SDLActivity mSingleton; + protected static SDLSurface mSurface; + protected static View mTextEdit; + protected static ViewGroup mLayout; + protected static SDLJoystickHandler mJoystickHandler; + + // This is what SDL runs in. It invokes SDL_main(), eventually + protected static Thread mSDLThread; + + // Audio + protected static AudioTrack mAudioTrack; + + /** + * This method is called by SDL before loading the native shared libraries. + * It can be overridden to provide names of shared libraries to be loaded. + * The default implementation returns the defaults. It never returns null. + * An array returned by a new implementation must at least contain "SDL2". + * Also keep in mind that the order the libraries are loaded may matter. + * @return names of shared libraries to be loaded (e.g. "SDL2", "main"). + */ + protected String[] getLibraries() { + return new String[] { + "SDL2", + // "SDL2_image", + // "SDL2_mixer", + // "SDL2_net", + // "SDL2_ttf", + "main" + }; + } + + // Load the .so + public void loadLibraries() { + for (String lib : getLibraries()) { + System.loadLibrary(lib); + } + } + + /** + * This method is called by SDL before starting the native application thread. + * It can be overridden to provide the arguments after the application name. + * The default implementation returns an empty array. It never returns null. + * @return arguments for the native application. + */ + protected String[] getArguments() { + return new String[0]; + } + + public static void initialize() { + // The static nature of the singleton and Android quirkyness force us to initialize everything here + // Otherwise, when exiting the app and returning to it, these variables *keep* their pre exit values + mSingleton = null; + mSurface = null; + mTextEdit = null; + mLayout = null; + mJoystickHandler = null; + mSDLThread = null; + mAudioTrack = null; + mExitCalledFromJava = false; + mBrokenLibraries = false; + mIsPaused = false; + mIsSurfaceReady = false; + mHasFocus = true; + } + + // Setup + @Override + protected void onCreate(Bundle savedInstanceState) { + Log.v(TAG, "Device: " + android.os.Build.DEVICE); + Log.v(TAG, "Model: " + android.os.Build.MODEL); + Log.v(TAG, "onCreate(): " + mSingleton); + super.onCreate(savedInstanceState); + + SDLActivity.initialize(); + // So we can call stuff from static callbacks + mSingleton = this; + + // Load shared libraries + String errorMsgBrokenLib = ""; + try { + loadLibraries(); + } catch(UnsatisfiedLinkError e) { + System.err.println(e.getMessage()); + mBrokenLibraries = true; + errorMsgBrokenLib = e.getMessage(); + } catch(Exception e) { + System.err.println(e.getMessage()); + mBrokenLibraries = true; + errorMsgBrokenLib = e.getMessage(); + } + + if (mBrokenLibraries) + { + AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); + dlgAlert.setMessage("An error occurred while trying to start the application. Please try again and/or reinstall." + + System.getProperty("line.separator") + + System.getProperty("line.separator") + + "Error: " + errorMsgBrokenLib); + dlgAlert.setTitle("SDL Error"); + dlgAlert.setPositiveButton("Exit", + new DialogInterface.OnClickListener() { + @Override + public void onClick(DialogInterface dialog,int id) { + // if this button is clicked, close current activity + SDLActivity.mSingleton.finish(); + } + }); + dlgAlert.setCancelable(false); + dlgAlert.create().show(); + + return; + } + + // Set up the surface + mSurface = new SDLSurface(getApplication()); + + if(Build.VERSION.SDK_INT >= 12) { + mJoystickHandler = new SDLJoystickHandler_API12(); + } + else { + mJoystickHandler = new SDLJoystickHandler(); + } + + mLayout = new AbsoluteLayout(this); + mLayout.addView(mSurface); + + setContentView(mLayout); + + // Get filename from "Open with" of another application + Intent intent = getIntent(); + + if (intent != null && intent.getData() != null) { + String filename = intent.getData().getPath(); + if (filename != null) { + Log.v(TAG, "Got filename: " + filename); + SDLActivity.onNativeDropFile(filename); + } + } + } + + // Events + @Override + protected void onPause() { + Log.v(TAG, "onPause()"); + super.onPause(); + + if (SDLActivity.mBrokenLibraries) { + return; + } + + SDLActivity.handlePause(); + } + + @Override + protected void onResume() { + Log.v(TAG, "onResume()"); + super.onResume(); + + if (SDLActivity.mBrokenLibraries) { + return; + } + + SDLActivity.handleResume(); + } + + + @Override + public void onWindowFocusChanged(boolean hasFocus) { + super.onWindowFocusChanged(hasFocus); + Log.v(TAG, "onWindowFocusChanged(): " + hasFocus); + + if (SDLActivity.mBrokenLibraries) { + return; + } + + SDLActivity.mHasFocus = hasFocus; + if (hasFocus) { + SDLActivity.handleResume(); + } + } + + @Override + public void onLowMemory() { + Log.v(TAG, "onLowMemory()"); + super.onLowMemory(); + + if (SDLActivity.mBrokenLibraries) { + return; + } + + SDLActivity.nativeLowMemory(); + } + + @Override + protected void onDestroy() { + Log.v(TAG, "onDestroy()"); + + if (SDLActivity.mBrokenLibraries) { + super.onDestroy(); + // Reset everything in case the user re opens the app + SDLActivity.initialize(); + return; + } + + // Send a quit message to the application + SDLActivity.mExitCalledFromJava = true; + SDLActivity.nativeQuit(); + + // Now wait for the SDL thread to quit + if (SDLActivity.mSDLThread != null) { + try { + SDLActivity.mSDLThread.join(); + } catch(Exception e) { + Log.v(TAG, "Problem stopping thread: " + e); + } + SDLActivity.mSDLThread = null; + + //Log.v(TAG, "Finished waiting for SDL thread"); + } + + super.onDestroy(); + // Reset everything in case the user re opens the app + SDLActivity.initialize(); + } + + @Override + public boolean dispatchKeyEvent(KeyEvent event) { + + if (SDLActivity.mBrokenLibraries) { + return false; + } + + int keyCode = event.getKeyCode(); + // Ignore certain special keys so they're handled by Android + if (keyCode == KeyEvent.KEYCODE_VOLUME_DOWN || + keyCode == KeyEvent.KEYCODE_VOLUME_UP || + keyCode == KeyEvent.KEYCODE_CAMERA || + keyCode == 168 || /* API 11: KeyEvent.KEYCODE_ZOOM_IN */ + keyCode == 169 /* API 11: KeyEvent.KEYCODE_ZOOM_OUT */ + ) { + return false; + } + return super.dispatchKeyEvent(event); + } + + /** Called by onPause or surfaceDestroyed. Even if surfaceDestroyed + * is the first to be called, mIsSurfaceReady should still be set + * to 'true' during the call to onPause (in a usual scenario). + */ + public static void handlePause() { + if (!SDLActivity.mIsPaused && SDLActivity.mIsSurfaceReady) { + SDLActivity.mIsPaused = true; + SDLActivity.nativePause(); + mSurface.handlePause(); + } + } + + /** Called by onResume or surfaceCreated. An actual resume should be done only when the surface is ready. + * Note: Some Android variants may send multiple surfaceChanged events, so we don't need to resume + * every time we get one of those events, only if it comes after surfaceDestroyed + */ + public static void handleResume() { + if (SDLActivity.mIsPaused && SDLActivity.mIsSurfaceReady && SDLActivity.mHasFocus) { + SDLActivity.mIsPaused = false; + SDLActivity.nativeResume(); + mSurface.handleResume(); + } + } + + /* The native thread has finished */ + public static void handleNativeExit() { + SDLActivity.mSDLThread = null; + mSingleton.finish(); + } + + + // Messages from the SDLMain thread + static final int COMMAND_CHANGE_TITLE = 1; + static final int COMMAND_UNUSED = 2; + static final int COMMAND_TEXTEDIT_HIDE = 3; + static final int COMMAND_SET_KEEP_SCREEN_ON = 5; + + protected static final int COMMAND_USER = 0x8000; + + /** + * This method is called by SDL if SDL did not handle a message itself. + * This happens if a received message contains an unsupported command. + * Method can be overwritten to handle Messages in a different class. + * @param command the command of the message. + * @param param the parameter of the message. May be null. + * @return if the message was handled in overridden method. + */ + protected boolean onUnhandledMessage(int command, Object param) { + return false; + } + + /** + * A Handler class for Messages from native SDL applications. + * It uses current Activities as target (e.g. for the title). + * static to prevent implicit references to enclosing object. + */ + protected static class SDLCommandHandler extends Handler { + @Override + public void handleMessage(Message msg) { + Context context = getContext(); + if (context == null) { + Log.e(TAG, "error handling message, getContext() returned null"); + return; + } + switch (msg.arg1) { + case COMMAND_CHANGE_TITLE: + if (context instanceof Activity) { + ((Activity) context).setTitle((String)msg.obj); + } else { + Log.e(TAG, "error handling message, getContext() returned no Activity"); + } + break; + case COMMAND_TEXTEDIT_HIDE: + if (mTextEdit != null) { + mTextEdit.setVisibility(View.GONE); + + InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(mTextEdit.getWindowToken(), 0); + } + break; + case COMMAND_SET_KEEP_SCREEN_ON: + { + Window window = ((Activity) context).getWindow(); + if (window != null) { + if ((msg.obj instanceof Integer) && (((Integer) msg.obj).intValue() != 0)) { + window.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); + } else { + window.clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); + } + } + break; + } + default: + if ((context instanceof SDLActivity) && !((SDLActivity) context).onUnhandledMessage(msg.arg1, msg.obj)) { + Log.e(TAG, "error handling message, command is " + msg.arg1); + } + } + } + } + + // Handler for the messages + Handler commandHandler = new SDLCommandHandler(); + + // Send a message from the SDLMain thread + boolean sendCommand(int command, Object data) { + Message msg = commandHandler.obtainMessage(); + msg.arg1 = command; + msg.obj = data; + return commandHandler.sendMessage(msg); + } + + // C functions we call + public static native int nativeInit(Object arguments); + public static native void nativeLowMemory(); + public static native void nativeQuit(); + public static native void nativePause(); + public static native void nativeResume(); + public static native void onNativeDropFile(String filename); + public static native void onNativeResize(int x, int y, int format, float rate); + public static native int onNativePadDown(int device_id, int keycode); + public static native int onNativePadUp(int device_id, int keycode); + public static native void onNativeJoy(int device_id, int axis, + float value); + public static native void onNativeHat(int device_id, int hat_id, + int x, int y); + public static native void onNativeKeyDown(int keycode); + public static native void onNativeKeyUp(int keycode); + public static native void onNativeKeyboardFocusLost(); + public static native void onNativeMouse(int button, int action, float x, float y); + public static native void onNativeTouch(int touchDevId, int pointerFingerId, + int action, float x, + float y, float p); + public static native void onNativeAccel(float x, float y, float z); + public static native void onNativeSurfaceChanged(); + public static native void onNativeSurfaceDestroyed(); + public static native int nativeAddJoystick(int device_id, String name, + int is_accelerometer, int nbuttons, + int naxes, int nhats, int nballs); + public static native int nativeRemoveJoystick(int device_id); + public static native String nativeGetHint(String name); + + /** + * This method is called by SDL using JNI. + */ + public static boolean setActivityTitle(String title) { + // Called from SDLMain() thread and can't directly affect the view + return mSingleton.sendCommand(COMMAND_CHANGE_TITLE, title); + } + + /** + * This method is called by SDL using JNI. + */ + public static boolean sendMessage(int command, int param) { + return mSingleton.sendCommand(command, Integer.valueOf(param)); + } + + /** + * This method is called by SDL using JNI. + */ + public static Context getContext() { + return mSingleton; + } + + /** + * This method is called by SDL using JNI. + * @return result of getSystemService(name) but executed on UI thread. + */ + public Object getSystemServiceFromUiThread(final String name) { + final Object lock = new Object(); + final Object[] results = new Object[2]; // array for writable variables + synchronized (lock) { + runOnUiThread(new Runnable() { + @Override + public void run() { + synchronized (lock) { + results[0] = getSystemService(name); + results[1] = Boolean.TRUE; + lock.notify(); + } + } + }); + if (results[1] == null) { + try { + lock.wait(); + } catch (InterruptedException ex) { + ex.printStackTrace(); + } + } + } + return results[0]; + } + + static class ShowTextInputTask implements Runnable { + /* + * This is used to regulate the pan&scan method to have some offset from + * the bottom edge of the input region and the top edge of an input + * method (soft keyboard) + */ + static final int HEIGHT_PADDING = 15; + + public int x, y, w, h; + + public ShowTextInputTask(int x, int y, int w, int h) { + this.x = x; + this.y = y; + this.w = w; + this.h = h; + } + + @Override + public void run() { + AbsoluteLayout.LayoutParams params = new AbsoluteLayout.LayoutParams( + w, h + HEIGHT_PADDING, x, y); + + if (mTextEdit == null) { + mTextEdit = new DummyEdit(getContext()); + + mLayout.addView(mTextEdit, params); + } else { + mTextEdit.setLayoutParams(params); + } + + mTextEdit.setVisibility(View.VISIBLE); + mTextEdit.requestFocus(); + + InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE); + imm.showSoftInput(mTextEdit, 0); + } + } + + /** + * This method is called by SDL using JNI. + */ + public static boolean showTextInput(int x, int y, int w, int h) { + // Transfer the task to the main thread as a Runnable + return mSingleton.commandHandler.post(new ShowTextInputTask(x, y, w, h)); + } + + /** + * This method is called by SDL using JNI. + */ + public static Surface getNativeSurface() { + return SDLActivity.mSurface.getNativeSurface(); + } + + // Audio + + /** + * This method is called by SDL using JNI. + */ + public static int audioInit(int sampleRate, boolean is16Bit, boolean isStereo, int desiredFrames) { + int channelConfig = isStereo ? AudioFormat.CHANNEL_CONFIGURATION_STEREO : AudioFormat.CHANNEL_CONFIGURATION_MONO; + int audioFormat = is16Bit ? AudioFormat.ENCODING_PCM_16BIT : AudioFormat.ENCODING_PCM_8BIT; + int frameSize = (isStereo ? 2 : 1) * (is16Bit ? 2 : 1); + + Log.v(TAG, "SDL audio: wanted " + (isStereo ? "stereo" : "mono") + " " + (is16Bit ? "16-bit" : "8-bit") + " " + (sampleRate / 1000f) + "kHz, " + desiredFrames + " frames buffer"); + + // Let the user pick a larger buffer if they really want -- but ye + // gods they probably shouldn't, the minimums are horrifyingly high + // latency already + desiredFrames = Math.max(desiredFrames, (AudioTrack.getMinBufferSize(sampleRate, channelConfig, audioFormat) + frameSize - 1) / frameSize); + + if (mAudioTrack == null) { + mAudioTrack = new AudioTrack(AudioManager.STREAM_MUSIC, sampleRate, + channelConfig, audioFormat, desiredFrames * frameSize, AudioTrack.MODE_STREAM); + + // Instantiating AudioTrack can "succeed" without an exception and the track may still be invalid + // Ref: https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/media/java/android/media/AudioTrack.java + // Ref: http://developer.android.com/reference/android/media/AudioTrack.html#getState() + + if (mAudioTrack.getState() != AudioTrack.STATE_INITIALIZED) { + Log.e(TAG, "Failed during initialization of Audio Track"); + mAudioTrack = null; + return -1; + } + + mAudioTrack.play(); + } + + Log.v(TAG, "SDL audio: got " + ((mAudioTrack.getChannelCount() >= 2) ? "stereo" : "mono") + " " + ((mAudioTrack.getAudioFormat() == AudioFormat.ENCODING_PCM_16BIT) ? "16-bit" : "8-bit") + " " + (mAudioTrack.getSampleRate() / 1000f) + "kHz, " + desiredFrames + " frames buffer"); + + return 0; + } + + /** + * This method is called by SDL using JNI. + */ + public static void audioWriteShortBuffer(short[] buffer) { + for (int i = 0; i < buffer.length; ) { + int result = mAudioTrack.write(buffer, i, buffer.length - i); + if (result > 0) { + i += result; + } else if (result == 0) { + try { + Thread.sleep(1); + } catch(InterruptedException e) { + // Nom nom + } + } else { + Log.w(TAG, "SDL audio: error return from write(short)"); + return; + } + } + } + + /** + * This method is called by SDL using JNI. + */ + public static void audioWriteByteBuffer(byte[] buffer) { + for (int i = 0; i < buffer.length; ) { + int result = mAudioTrack.write(buffer, i, buffer.length - i); + if (result > 0) { + i += result; + } else if (result == 0) { + try { + Thread.sleep(1); + } catch(InterruptedException e) { + // Nom nom + } + } else { + Log.w(TAG, "SDL audio: error return from write(byte)"); + return; + } + } + } + + /** + * This method is called by SDL using JNI. + */ + public static void audioQuit() { + if (mAudioTrack != null) { + mAudioTrack.stop(); + mAudioTrack = null; + } + } + + // Input + + /** + * This method is called by SDL using JNI. + * @return an array which may be empty but is never null. + */ + public static int[] inputGetInputDeviceIds(int sources) { + int[] ids = InputDevice.getDeviceIds(); + int[] filtered = new int[ids.length]; + int used = 0; + for (int i = 0; i < ids.length; ++i) { + InputDevice device = InputDevice.getDevice(ids[i]); + if ((device != null) && ((device.getSources() & sources) != 0)) { + filtered[used++] = device.getId(); + } + } + return Arrays.copyOf(filtered, used); + } + + // Joystick glue code, just a series of stubs that redirect to the SDLJoystickHandler instance + public static boolean handleJoystickMotionEvent(MotionEvent event) { + return mJoystickHandler.handleMotionEvent(event); + } + + /** + * This method is called by SDL using JNI. + */ + public static void pollInputDevices() { + if (SDLActivity.mSDLThread != null) { + mJoystickHandler.pollInputDevices(); + } + } + + // APK expansion files support + + /** com.android.vending.expansion.zipfile.ZipResourceFile object or null. */ + private Object expansionFile; + + /** com.android.vending.expansion.zipfile.ZipResourceFile's getInputStream() or null. */ + private Method expansionFileMethod; + + /** + * This method was called by SDL using JNI. + * @deprecated because of an incorrect name + */ + @Deprecated + public InputStream openAPKExtensionInputStream(String fileName) throws IOException { + return openAPKExpansionInputStream(fileName); + } + + /** + * This method is called by SDL using JNI. + * @return an InputStream on success or null if no expansion file was used. + * @throws IOException on errors. Message is set for the SDL error message. + */ + public InputStream openAPKExpansionInputStream(String fileName) throws IOException { + // Get a ZipResourceFile representing a merger of both the main and patch files + if (expansionFile == null) { + String mainHint = nativeGetHint("SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"); + if (mainHint == null) { + return null; // no expansion use if no main version was set + } + String patchHint = nativeGetHint("SDL_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION"); + if (patchHint == null) { + return null; // no expansion use if no patch version was set + } + + Integer mainVersion; + Integer patchVersion; + try { + mainVersion = Integer.valueOf(mainHint); + patchVersion = Integer.valueOf(patchHint); + } catch (NumberFormatException ex) { + ex.printStackTrace(); + throw new IOException("No valid file versions set for APK expansion files", ex); + } + + try { + // To avoid direct dependency on Google APK expansion library that is + // not a part of Android SDK we access it using reflection + expansionFile = Class.forName("com.android.vending.expansion.zipfile.APKExpansionSupport") + .getMethod("getAPKExpansionZipFile", Context.class, int.class, int.class) + .invoke(null, this, mainVersion, patchVersion); + + expansionFileMethod = expansionFile.getClass() + .getMethod("getInputStream", String.class); + } catch (Exception ex) { + ex.printStackTrace(); + expansionFile = null; + expansionFileMethod = null; + throw new IOException("Could not access APK expansion support library", ex); + } + } + + // Get an input stream for a known file inside the expansion file ZIPs + InputStream fileStream; + try { + fileStream = (InputStream)expansionFileMethod.invoke(expansionFile, fileName); + } catch (Exception ex) { + // calling "getInputStream" failed + ex.printStackTrace(); + throw new IOException("Could not open stream from APK expansion file", ex); + } + + if (fileStream == null) { + // calling "getInputStream" was successful but null was returned + throw new IOException("Could not find path in APK expansion file"); + } + + return fileStream; + } + + // Messagebox + + /** Result of current messagebox. Also used for blocking the calling thread. */ + protected final int[] messageboxSelection = new int[1]; + + /** Id of current dialog. */ + protected int dialogs = 0; + + /** + * This method is called by SDL using JNI. + * Shows the messagebox from UI thread and block calling thread. + * buttonFlags, buttonIds and buttonTexts must have same length. + * @param buttonFlags array containing flags for every button. + * @param buttonIds array containing id for every button. + * @param buttonTexts array containing text for every button. + * @param colors null for default or array of length 5 containing colors. + * @return button id or -1. + */ + public int messageboxShowMessageBox( + final int flags, + final String title, + final String message, + final int[] buttonFlags, + final int[] buttonIds, + final String[] buttonTexts, + final int[] colors) { + + messageboxSelection[0] = -1; + + // sanity checks + + if ((buttonFlags.length != buttonIds.length) && (buttonIds.length != buttonTexts.length)) { + return -1; // implementation broken + } + + // collect arguments for Dialog + + final Bundle args = new Bundle(); + args.putInt("flags", flags); + args.putString("title", title); + args.putString("message", message); + args.putIntArray("buttonFlags", buttonFlags); + args.putIntArray("buttonIds", buttonIds); + args.putStringArray("buttonTexts", buttonTexts); + args.putIntArray("colors", colors); + + // trigger Dialog creation on UI thread + + runOnUiThread(new Runnable() { + @Override + public void run() { + showDialog(dialogs++, args); + } + }); + + // block the calling thread + + synchronized (messageboxSelection) { + try { + messageboxSelection.wait(); + } catch (InterruptedException ex) { + ex.printStackTrace(); + return -1; + } + } + + // return selected value + + return messageboxSelection[0]; + } + + @Override + protected Dialog onCreateDialog(int ignore, Bundle args) { + + // TODO set values from "flags" to messagebox dialog + + // get colors + + int[] colors = args.getIntArray("colors"); + int backgroundColor; + int textColor; + int buttonBorderColor; + int buttonBackgroundColor; + int buttonSelectedColor; + if (colors != null) { + int i = -1; + backgroundColor = colors[++i]; + textColor = colors[++i]; + buttonBorderColor = colors[++i]; + buttonBackgroundColor = colors[++i]; + buttonSelectedColor = colors[++i]; + } else { + backgroundColor = Color.TRANSPARENT; + textColor = Color.TRANSPARENT; + buttonBorderColor = Color.TRANSPARENT; + buttonBackgroundColor = Color.TRANSPARENT; + buttonSelectedColor = Color.TRANSPARENT; + } + + // create dialog with title and a listener to wake up calling thread + + final Dialog dialog = new Dialog(this); + dialog.setTitle(args.getString("title")); + dialog.setCancelable(false); + dialog.setOnDismissListener(new DialogInterface.OnDismissListener() { + @Override + public void onDismiss(DialogInterface unused) { + synchronized (messageboxSelection) { + messageboxSelection.notify(); + } + } + }); + + // create text + + TextView message = new TextView(this); + message.setGravity(Gravity.CENTER); + message.setText(args.getString("message")); + if (textColor != Color.TRANSPARENT) { + message.setTextColor(textColor); + } + + // create buttons + + int[] buttonFlags = args.getIntArray("buttonFlags"); + int[] buttonIds = args.getIntArray("buttonIds"); + String[] buttonTexts = args.getStringArray("buttonTexts"); + + final SparseArray