view VisualC/SDL/SDL.vcproj @ 3487:24d13328c44a

Eric Wing to Sam, hfutrell This one is quite puzzling. I found a partial workaround, but I don't fully understand the reasons yet. First, the console is complaining about not finding a nib for MainWindow. I tried removing the entry for this in the info.plist, and the message went away, but it didn't really change anything. Second, I stepped through this with the debugger and broke up some lines. It seems that the basic act of calling view = [SDL_uikitopenglview alloc]; or even view = [SDL_uikitview alloc] will crash the program. The debugger messages plus the stack trace make me think it's not finding the SDL_uikitview classes for some reason. But I don't understand why this would be. view = [UIView alloc] will not crash the program. For kicks, I added a new definition of a class called SDL_object which subclasses NSObject in the same files as SDL_uikitopenglview and then call view = [SDL_object alloc]; This does not crash the program. So, then I modified SDL_object to subclass UIView. No crash. Next, I made SDL_object subclass UIView<UITextFieldDelegate> . This crashes. So it is the act of conforming to the UITextFieldDelegate protocol that is crashing things. I don't understand why it would crash on alloc though. I'm guessing either a delegate needs to be set somewhere or one of the required methods needs to be implemented. But in the former case, I would not expect a crash, but a silent message to nil and something else doesn't work. And in the latter case, I would expect a compiler warning and an exception thrown instead of a crash. Anyway, my temporary workaround is to change the interface declaration for SDL_uikitview to look like: #if SDL_IPHONE_KEYBOARD @interface SDL_uikitview : UIView<UITextFieldDelegate> { #else @interface SDL_uikitview : UIView { #endif And then disable the keyboard support in the SDL_config_iphoneos.h file. /* enable iPhone keyboard support */ #define SDL_IPHONE_KEYBOARD 0 -Eric On Nov 23, 2009, at 1:43 AM, Sam Lantinga wrote: > I ran into a blocking startup crash with the Happy demo on iPhone OS 3.1.2 on my new iPhone: > > #0 0x323fea14 in _class_isInitialized > #1 0x323fea68 in _class_initialize > #2 0x32403e92 in prepareForMethodLookup > #3 0x32401244 in lookUpMethod > #4 0x323fea10 in _class_lookupMethodAndLoadCache > #5 0x323fe746 in objc_msgSend_uncached > #6 0x323feb26 in _class_initialize > #7 0x323fea58 in _class_initialize > #8 0x32403e92 in prepareForMethodLookup > #9 0x32401244 in lookUpMethod > #10 0x323fea10 in _class_lookupMethodAndLoadCache > #11 0x323fe746 in objc_msgSend_uncached > #12 0x000554dc in UIKit_GL_CreateContext at SDL_uikitopengles.m:103 > #13 0x0004f89e in SDL_GL_CreateContext at SDL_video.c:3155 > #14 0x000579e8 in GLES_CreateRenderer at SDL_renderer_gles.c:282 > #15 0x0004d7b8 in SDL_CreateRenderer at SDL_video.c:1509 > #16 0x00002bc2 in SDL_main at happy.c:156 > #17 0x000571b2 in -[SDLUIKitDelegate postFinishLaunch] at > SDL_uikitappdelegate.m:77 > #18 0x313f9ef2 in __NSFireDelayedPerform > #19 0x32567bb2 in CFRunLoopRunSpecific > #20 0x3256735c in CFRunLoopRunInMode > #21 0x32912cbe in GSEventRunModal > #22 0x32912d6a in GSEventRun > #23 0x32b6276e in -[UIApplication _run] > #24 0x32b61472 in UIApplicationMain > #25 0x00057088 in main at SDL_uikitappdelegate.m:50 > > Any ideas? > > See ya! > -- > -Sam Lantinga, Founder and President, Galaxy Gameworks LLC
author Sam Lantinga <slouken@libsdl.org>
date Tue, 24 Nov 2009 08:12:32 +0000
parents 5f812979e179
children 0d6f520c0eb9
line wrap: on
line source

<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
	ProjectType="Visual C++"
	Version="8.00"
	Name="SDL"
	ProjectGUID="{81CE8DAF-EBB2-4761-8E45-B71ABCCA8C68}"
	RootNamespace="SDL"
	>
	<Platforms>
		<Platform
			Name="Win32"
		/>
	</Platforms>
	<ToolFiles>
	</ToolFiles>
	<Configurations>
		<Configuration
			Name="Debug|Win32"
			OutputDirectory=".\Debug"
			IntermediateDirectory=".\Debug"
			ConfigurationType="2"
			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
			UseOfMFC="0"
			ATLMinimizesCRunTimeLibraryUsage="false"
			>
			<Tool
				Name="VCPreBuildEventTool"
				Description="Making sure basic SDL headers are in place..."
				CommandLine="if exist &quot;$(ProjectDir)\..\..\include\SDL_config.h&quot; goto SDLCONFIGOKAY&#x0D;&#x0A;echo Copying SDL_config_win32.h to SDL_config.h...&#x0D;&#x0A;copy &quot;$(ProjectDir)\..\..\include\SDL_config_win32.h&quot; &quot;$(ProjectDir)\..\..\include\SDL_config.h&quot;&#x0D;&#x0A;:SDLCONFIGOKAY&#x0D;&#x0A;&#x0D;&#x0A;if exist &quot;$(ProjectDir)\..\..\include\SDL_revision.h&quot; goto SDLREVISIONOKAY&#x0D;&#x0A;echo Creating stub SDL_revision.h file...&#x0D;&#x0A;echo #define SDL_REVISION 0 &gt;&quot;$(ProjectDir)\..\..\include\SDL_revision.h&quot;&#x0D;&#x0A;:SDLREVISIONOKAY"
			/>
			<Tool
				Name="VCCustomBuildTool"
			/>
			<Tool
				Name="VCXMLDataGeneratorTool"
			/>
			<Tool
				Name="VCWebServiceProxyGeneratorTool"
			/>
			<Tool
				Name="VCMIDLTool"
				PreprocessorDefinitions="_DEBUG"
				MkTypLibCompatible="true"
				SuppressStartupBanner="true"
				TargetEnvironment="1"
				TypeLibraryName=".\Debug/SDL.tlb"
			/>
			<Tool
				Name="VCCLCompilerTool"
				Optimization="0"
				AdditionalIncludeDirectories="..\..\include"
				PreprocessorDefinitions="_DEBUG;_WINDOWS;_WIN32_WINNT=0x0400;__MMX__;__3dNOW__;__SSE__;__SSE2__"
				RuntimeLibrary="2"
				BufferSecurityCheck="false"
				UsePrecompiledHeader="0"
				PrecompiledHeaderFile=".\Debug/SDL.pch"
				AssemblerListingLocation=".\Debug/"
				ObjectFile=".\Debug/"
				ProgramDataBaseFileName=".\Debug/"
				WarningLevel="3"
				SuppressStartupBanner="true"
				Detect64BitPortabilityProblems="false"
				DebugInformationFormat="4"
				CompileAs="0"
			/>
			<Tool
				Name="VCManagedResourceCompilerTool"
			/>
			<Tool
				Name="VCResourceCompilerTool"
				PreprocessorDefinitions="_DEBUG"
				Culture="1033"
			/>
			<Tool
				Name="VCPreLinkEventTool"
			/>
			<Tool
				Name="VCLinkerTool"
				AdditionalOptions="/MACHINE:I386"
				AdditionalDependencies="msimg32.lib winmm.lib"
				OutputFile=".\Debug/SDL.dll"
				LinkIncremental="2"
				SuppressStartupBanner="true"
				IgnoreAllDefaultLibraries="true"
				GenerateDebugInformation="true"
				ProgramDatabaseFile=".\Debug/SDL.pdb"
				SubSystem="2"
				ImportLibrary=".\Debug/SDL.lib"
				CLRUnmanagedCodeCheck="false"
			/>
			<Tool
				Name="VCALinkTool"
			/>
			<Tool
				Name="VCManifestTool"
			/>
			<Tool
				Name="VCXDCMakeTool"
			/>
			<Tool
				Name="VCBscMakeTool"
			/>
			<Tool
				Name="VCFxCopTool"
			/>
			<Tool
				Name="VCAppVerifierTool"
			/>
			<Tool
				Name="VCWebDeploymentTool"
			/>
			<Tool
				Name="VCPostBuildEventTool"
			/>
		</Configuration>
		<Configuration
			Name="Release|Win32"
			OutputDirectory=".\Release"
			IntermediateDirectory=".\Release"
			ConfigurationType="2"
			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops"
			UseOfMFC="0"
			ATLMinimizesCRunTimeLibraryUsage="false"
			>
			<Tool
				Name="VCPreBuildEventTool"
				Description="Making sure basic SDL headers are in place..."
				CommandLine="if exist &quot;$(ProjectDir)\..\..\include\SDL_config.h&quot; goto SDLCONFIGOKAY&#x0D;&#x0A;echo Copying SDL_config_win32.h to SDL_config.h...&#x0D;&#x0A;copy &quot;$(ProjectDir)\..\..\include\SDL_config_win32.h&quot; &quot;$(ProjectDir)\..\..\include\SDL_config.h&quot;&#x0D;&#x0A;:SDLCONFIGOKAY&#x0D;&#x0A;&#x0D;&#x0A;if exist &quot;$(ProjectDir)\..\..\include\SDL_revision.h&quot; goto SDLREVISIONOKAY&#x0D;&#x0A;echo Creating stub SDL_revision.h file...&#x0D;&#x0A;echo #define SDL_REVISION 0 &gt;&quot;$(ProjectDir)\..\..\include\SDL_revision.h&quot;&#x0D;&#x0A;:SDLREVISIONOKAY"
			/>
			<Tool
				Name="VCCustomBuildTool"
			/>
			<Tool
				Name="VCXMLDataGeneratorTool"
			/>
			<Tool
				Name="VCWebServiceProxyGeneratorTool"
			/>
			<Tool
				Name="VCMIDLTool"
				PreprocessorDefinitions="NDEBUG"
				MkTypLibCompatible="true"
				SuppressStartupBanner="true"
				TargetEnvironment="1"
				TypeLibraryName=".\Release/SDL.tlb"
			/>
			<Tool
				Name="VCCLCompilerTool"
				InlineFunctionExpansion="1"
				EnableIntrinsicFunctions="false"
				AdditionalIncludeDirectories="..\..\include"
				PreprocessorDefinitions="NDEBUG;_WINDOWS;_WIN32_WINNT=0x0400;__MMX__;__3dNOW__;__SSE__;__SSE2__"
				StringPooling="true"
				RuntimeLibrary="2"
				BufferSecurityCheck="false"
				EnableFunctionLevelLinking="true"
				UsePrecompiledHeader="0"
				PrecompiledHeaderFile=".\Release/SDL.pch"
				AssemblerListingLocation=".\Release/"
				ObjectFile=".\Release/"
				ProgramDataBaseFileName=".\Release/"
				WarningLevel="3"
				SuppressStartupBanner="true"
				Detect64BitPortabilityProblems="false"
				CompileAs="0"
			/>
			<Tool
				Name="VCManagedResourceCompilerTool"
			/>
			<Tool
				Name="VCResourceCompilerTool"
				PreprocessorDefinitions="NDEBUG"
				Culture="1033"
			/>
			<Tool
				Name="VCPreLinkEventTool"
			/>
			<Tool
				Name="VCLinkerTool"
				AdditionalOptions="/MACHINE:I386"
				AdditionalDependencies="msimg32.lib winmm.lib"
				OutputFile=".\Release/SDL.dll"
				LinkIncremental="1"
				SuppressStartupBanner="true"
				IgnoreAllDefaultLibraries="true"
				ProgramDatabaseFile=".\Release/SDL.pdb"
				SubSystem="2"
				ImportLibrary=".\Release/SDL.lib"
			/>
			<Tool
				Name="VCALinkTool"
			/>
			<Tool
				Name="VCManifestTool"
			/>
			<Tool
				Name="VCXDCMakeTool"
			/>
			<Tool
				Name="VCBscMakeTool"
			/>
			<Tool
				Name="VCFxCopTool"
			/>
			<Tool
				Name="VCAppVerifierTool"
			/>
			<Tool
				Name="VCWebDeploymentTool"
			/>
			<Tool
				Name="VCPostBuildEventTool"
			/>
		</Configuration>
	</Configurations>
	<References>
	</References>
	<Files>
		<Filter
			Name="API Headers"
			>
			<File
				RelativePath="..\..\include\SDL.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_audio.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_compat.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_config_win32.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_cpuinfo.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_endian.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_error.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_events.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_joystick.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_keyboard.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_keysym.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_loadso.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_main.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_mouse.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_mutex.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_name.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_opengl.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_pixels.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_platform.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_power.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_quit.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_rwops.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_stdinc.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_syswm.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_thread.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_timer.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_types.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_version.h"
				>
			</File>
			<File
				RelativePath="..\..\include\SDL_video.h"
				>
			</File>
		</Filter>
		<File
			RelativePath="..\..\src\events\blank_cursor.h"
			>
		</File>
		<File
			RelativePath="..\..\src\events\default_cursor.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\windx5\directx.h"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\e_log.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\e_pow.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\e_rem_pio2.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\e_sqrt.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\k_cos.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\k_rem_pio2.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\k_sin.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\math.h"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\math_private.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\mmx.h"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\s_copysign.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\s_cos.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\s_fabs.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\s_floor.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\s_scalbn.c"
			>
		</File>
		<File
			RelativePath="..\..\src\libm\s_sin.c"
			>
		</File>
		<File
			RelativePath="..\..\src\SDL.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_alphamult.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_alphamult.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_audio.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_audio_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_audiocvt.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_audiodev.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_audiodev_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_audiomem.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_audiotypecvt.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blendline.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blendpoint.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blendrect.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_0.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_1.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_A.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_auto.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_auto.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_copy.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_copy.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_N.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_slow.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_blit_slow.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_bmp.c"
			>
		</File>
		<File
			RelativePath="..\..\src\SDL_compat.c"
			>
		</File>
		<File
			RelativePath="..\..\src\cpuinfo\SDL_cpuinfo.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_d3drender.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_d3drender.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\windib\SDL_dibaudio.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\windib\SDL_dibaudio.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\disk\SDL_diskaudio.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\disk\SDL_diskaudio.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_draw.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_drawline.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_drawpoint.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\dummy\SDL_dummyaudio.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\dummy\SDL_dummyaudio.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\windx5\SDL_dx5audio.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\windx5\SDL_dx5audio.h"
			>
		</File>
		<File
			RelativePath="..\..\src\joystick\win32\SDL_dxjoystick.c"
			>
		</File>
		<File
			RelativePath="..\..\src\SDL_error.c"
			>
		</File>
		<File
			RelativePath="..\..\src\SDL_error_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_events.c"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_events_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\SDL_fatal.c"
			>
		</File>
		<File
			RelativePath="..\..\src\SDL_fatal.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_fillrect.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_gamma.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_gdirender.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_gdirender.h"
			>
		</File>
		<File
			RelativePath="..\..\src\stdlib\SDL_getenv.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_glfuncs.h"
			>
		</File>
		<File
			RelativePath="..\..\src\haptic\SDL_haptic.c"
			>
		</File>
		<File
			RelativePath="..\..\src\stdlib\SDL_iconv.c"
			>
		</File>
		<File
			RelativePath="..\..\src\joystick\SDL_joystick.c"
			>
		</File>
		<File
			RelativePath="..\..\src\joystick\SDL_joystick_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_keyboard.c"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_keyboard_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_leaks.h"
			>
		</File>
		<File
			RelativePath="..\..\src\stdlib\SDL_malloc.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_mixer.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_mixer_m68k.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_mixer_m68k.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_mixer_MMX.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_mixer_MMX.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_mixer_MMX_VC.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_mixer_MMX_VC.h"
			>
		</File>
		<File
			RelativePath="..\..\src\joystick\win32\SDL_mmjoystick.c"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_mouse.c"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_mouse_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\dummy\SDL_nullevents.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\dummy\SDL_nullevents_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\dummy\SDL_nullrender.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\dummy\SDL_nullrender_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\dummy\SDL_nullvideo.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\dummy\SDL_nullvideo.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_pixels.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_pixels_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\power\SDL_power.c"
			>
		</File>
		<File
			RelativePath="..\..\src\stdlib\SDL_qsort.c"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_quit.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_rect.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_rect_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_renderer_gl.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_renderer_gl.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_renderer_sw.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_renderer_sw.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_RLEaccel.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_RLEaccel_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\file\SDL_rwops.c"
			>
		</File>
		<File
			RelativePath="..\..\src\stdlib\SDL_stdlib.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_stretch.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_stretch_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\stdlib\SDL_string.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_surface.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_sysaudio.h"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_sysevents.h"
			>
		</File>
		<File
			RelativePath="..\..\src\haptic\win32\SDL_syshaptic.c"
			>
		</File>
		<File
			RelativePath="..\..\src\haptic\SDL_syshaptic.h"
			>
		</File>
		<File
			RelativePath="..\..\src\joystick\SDL_sysjoystick.h"
			>
		</File>
		<File
			RelativePath="..\..\src\loadso\win32\SDL_sysloadso.c"
			>
		</File>
		<File
			RelativePath="..\..\src\thread\win32\SDL_sysmutex.c"
			>
		</File>
		<File
			RelativePath="..\..\src\power\windows\SDL_syspower.c"
			>
		</File>
		<File
			RelativePath="..\..\src\thread\win32\SDL_syssem.c"
			>
		</File>
		<File
			RelativePath="..\..\src\thread\win32\SDL_systhread.c"
			>
		</File>
		<File
			RelativePath="..\..\src\thread\SDL_systhread.h"
			>
		</File>
		<File
			RelativePath="..\..\src\thread\win32\SDL_systhread_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\timer\win32\SDL_systimer.c"
			>
		</File>
		<File
			RelativePath="..\..\src\timer\SDL_systimer.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_sysvideo.h"
			>
		</File>
		<File
			RelativePath="..\..\src\thread\SDL_thread.c"
			>
		</File>
		<File
			RelativePath="..\..\src\thread\SDL_thread_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\timer\SDL_timer.c"
			>
		</File>
		<File
			RelativePath="..\..\src\timer\SDL_timer_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_video.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_vkeys.h"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_wave.c"
			>
		</File>
		<File
			RelativePath="..\..\src\audio\SDL_wave.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32events.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32events.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32gamma.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32gamma.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32keyboard.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32keyboard.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32modes.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32modes.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32mouse.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32mouse.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32opengl.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32opengl.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32video.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32video.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32window.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\SDL_win32window.h"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_windowevents.c"
			>
		</File>
		<File
			RelativePath="..\..\src\events\SDL_windowevents_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_yuv_mmx.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_yuv_sw.c"
			>
		</File>
		<File
			RelativePath="..\..\src\video\SDL_yuv_sw_c.h"
			>
		</File>
		<File
			RelativePath="..\..\src\video\win32\wmmsg.h"
			>
		</File>
	</Files>
	<Globals>
	</Globals>
</VisualStudioProject>