comparison include/SDL_config_win32.h @ 1497:420b3f47806d

Fixes from Dmitry Yakimov: fixed bugs 159 and 160: + added threaded timers support ! fixed restoring sdl window focus (AV in windows message handler) ! disabled forgotten cdrom and joystick in config file. * disabled minimizing sdl window while loosing focus. PocketPC does not have a task bar, so it is an inconvenient and unusual behaviour for PPC users. + added WIN_Paint handler for GAPI ! fixed loosing focus while using GAPI videi driver + added TestTimer project * removed unnecessary macros (ENABLE_WINDIB ...) from projects
author Sam Lantinga <slouken@libsdl.org>
date Sat, 11 Mar 2006 23:46:45 +0000
parents 0a2bd6507477
children 720f8bb49d7d
comparison
equal deleted inserted replaced
1496:405e20dc004c 1497:420b3f47806d
115 #define SDL_AUDIO_DRIVER_DSOUND 1 115 #define SDL_AUDIO_DRIVER_DSOUND 1
116 #endif 116 #endif
117 #define SDL_AUDIO_DRIVER_WAVEOUT 1 117 #define SDL_AUDIO_DRIVER_WAVEOUT 1
118 118
119 /* Enable various cdrom drivers */ 119 /* Enable various cdrom drivers */
120 #define SDL_CDROM_WIN32 1 120 #ifdef _WIN32_WCE
121 #define SDL_CDROM_DISABLED 1
122 #else
123 #define SDL_CDROM_WIN32 1
124 #endif
121 125
122 /* Enable various input drivers */ 126 /* Enable various input drivers */
127 #ifdef _WIN32_WCE
128 #define SDL_JOYSTICK_DISABLED 1
129 #else
123 #define SDL_JOYSTICK_WINMM 1 130 #define SDL_JOYSTICK_WINMM 1
131 #endif
124 132
125 /* Enable various shared object loading systems */ 133 /* Enable various shared object loading systems */
126 #define SDL_LOADSO_WIN32 1 134 #define SDL_LOADSO_WIN32 1
127 135
128 /* Enable various threading systems */ 136 /* Enable various threading systems */
134 #else 142 #else
135 #define SDL_TIMER_WIN32 1 143 #define SDL_TIMER_WIN32 1
136 #endif 144 #endif
137 145
138 /* Enable various video drivers */ 146 /* Enable various video drivers */
147 #ifdef _WIN32_WCE
148 #define SDL_VIDEO_DRIVER_GAPI 1
149 #endif
139 #ifndef _WIN32_WCE 150 #ifndef _WIN32_WCE
140 #define SDL_VIDEO_DRIVER_DDRAW 1 151 #define SDL_VIDEO_DRIVER_DDRAW 1
141 #endif
142 #ifdef _WIN32_WCE
143 #define SDL_VIDEO_DRIVER_GAPI 1
144 #endif 152 #endif
145 #define SDL_VIDEO_DRIVER_WINDIB 1 153 #define SDL_VIDEO_DRIVER_WINDIB 1
146 154
147 /* Enable OpenGL support */ 155 /* Enable OpenGL support */
148 #ifndef _WIN32_WCE 156 #ifndef _WIN32_WCE