Mercurial > sdl-ios-xcode
diff src/video/wincommon/SDL_sysevents.c @ 1456:84de7511f79f
Fixed a bunch of 64-bit compatibility problems
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 01 Mar 2006 09:43:47 +0000 |
parents | bb6839704ed6 |
children | 8dfa9a6d69a5 |
line wrap: on
line diff
--- a/src/video/wincommon/SDL_sysevents.c Mon Feb 27 22:14:40 2006 +0000 +++ b/src/video/wincommon/SDL_sysevents.c Wed Mar 01 09:43:47 2006 +0000 @@ -191,7 +191,7 @@ { if ( ptme->dwFlags == TME_LEAVE ) { return SetTimer(ptme->hwndTrack, ptme->dwFlags, 100, - (TIMERPROC)TrackMouseTimerProc); + (TIMERPROC)TrackMouseTimerProc) != 0; } return FALSE; } @@ -247,7 +247,7 @@ /* The main Win32 event handler DJM: This is no longer static as (DX5/DIB)_CreateWindow needs it */ -LONG CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) +LRESULT CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) { SDL_VideoDevice *this = current_video; static int mouse_pressed = 0;