comparison src/events/SDL_events.c @ 3975:e85e65aec22f SDL-1.2

Added S60 port.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 24 Jun 2007 18:26:35 +0000
parents 290b5baf2fca
children 96ce26f24b01
comparison
equal deleted inserted replaced
3974:42578e98a295 3975:e85e65aec22f
167 } 167 }
168 SDL_EventLock.safe = 0; 168 SDL_EventLock.safe = 0;
169 169
170 /* The event thread will handle timers too */ 170 /* The event thread will handle timers too */
171 SDL_SetTimerThreaded(2); 171 SDL_SetTimerThreaded(2);
172 #if (defined(__WIN32__) && !defined(_WIN32_WCE)) && !defined(HAVE_LIBC) 172 #if (defined(__WIN32__) && !defined(_WIN32_WCE)) && !defined(HAVE_LIBC) && !defined(__SYMBIAN32__)
173 #undef SDL_CreateThread 173 #undef SDL_CreateThread
174 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL, NULL, NULL); 174 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL, NULL, NULL);
175 #else 175 #else
176 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL); 176 SDL_EventThread = SDL_CreateThread(SDL_GobbleEvents, NULL);
177 #endif 177 #endif