Mercurial > sdl-ios-xcode
diff src/timer/win32/SDL_systimer.c @ 1480:0a2bd6507477
More Win64 updates
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Mar 2006 05:21:32 +0000 |
parents | bb6839704ed6 |
children | 420b3f47806d |
line wrap: on
line diff
--- a/src/timer/win32/SDL_systimer.c Tue Mar 07 04:58:30 2006 +0000 +++ b/src/timer/win32/SDL_systimer.c Tue Mar 07 05:21:32 2006 +0000 @@ -128,7 +128,7 @@ /* Forward declaration because this is called by the timer callback */ int SDL_SYS_StartTimer(void); -static VOID CALLBACK TimerCallbackProc(HWND hwnd, UINT uMsg, UINT idEvent, DWORD dwTime) +static VOID CALLBACK TimerCallbackProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime) { Uint32 ms; @@ -170,8 +170,8 @@ /* Data to handle a single periodic alarm */ static UINT timerID = 0; -static void CALLBACK HandleAlarm(UINT uID, UINT uMsg, DWORD dwUser, - DWORD dw1, DWORD dw2) +static void CALLBACK HandleAlarm(UINT uID, UINT uMsg, DWORD_PTR dwUser, + DWORD_PTR dw1, DWORD_PTR dw2) { SDL_ThreadedTimerCheck(); }