diff -r 4feced261c68 -r de822cd3df3a misc/winutils/include/SDL_thread.h --- a/misc/winutils/include/SDL_thread.h Tue Jan 21 22:38:13 2014 +0100 +++ b/misc/winutils/include/SDL_thread.h Tue Jan 21 22:43:06 2014 +0100 @@ -24,7 +24,7 @@ #define _SDL_thread_h /** @file SDL_thread.h - * Header for the SDL thread management routines + * Header for the SDL thread management routines * * @note These are independent of the other SDL routines. */ @@ -66,11 +66,11 @@ #endif #ifdef __OS2__ -typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg); +typedef int (*pfnSDL_CurrentBeginThread)(void (*func)(void *), void *, unsigned, void *arg); typedef void (*pfnSDL_CurrentEndThread)(void); #else typedef uintptr_t (__cdecl *pfnSDL_CurrentBeginThread) (void *, unsigned, - unsigned (__stdcall *func)(void *), void *arg, + unsigned (__stdcall *func)(void *), void *arg, unsigned, unsigned *threadID); typedef void (__cdecl *pfnSDL_CurrentEndThread)(unsigned code); #endif