comparison src/thread/windows/SDL_systhread.c @ 5088:c2539ff054c8

Fixed compiling on Windows Mobile SDK 5.0 with Visual Studio 2008
author Sam Lantinga <slouken@libsdl.org>
date Mon, 24 Jan 2011 15:46:11 -0800
parents e8916fe9cfc8
children b530ef003506
comparison
equal deleted inserted replaced
5087:e7680e2c9f3c 5088:c2539ff054c8
21 */ 21 */
22 #include "SDL_config.h" 22 #include "SDL_config.h"
23 23
24 /* Win32 thread management routines for SDL */ 24 /* Win32 thread management routines for SDL */
25 25
26 #define WIN32_LEAN_AND_MEAN
27 #include <windows.h>
28
29 #include "SDL_thread.h" 26 #include "SDL_thread.h"
30 #include "../SDL_thread_c.h" 27 #include "../SDL_thread_c.h"
31 #include "../SDL_systhread.h" 28 #include "../SDL_systhread.h"
29 #include "SDL_systhread_c.h"
32 30
33 #ifndef SDL_PASSED_BEGINTHREAD_ENDTHREAD 31 #ifndef SDL_PASSED_BEGINTHREAD_ENDTHREAD
34 #ifndef _WIN32_WCE 32 #ifndef _WIN32_WCE
35 /* We'll use the C library from this DLL */ 33 /* We'll use the C library from this DLL */
36 #include <process.h> 34 #include <process.h>