Mercurial > sdl-ios-xcode
diff src/video/win32/SDL_win32video.h @ 1720:a1ebb17f9c52 SDL-1.3
Cleaned up a bunch of warnings, started adding Win32 event support
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 30 Jun 2006 05:42:49 +0000 |
parents | 5b9f50c957ed |
children | 5daa04d862f1 |
line wrap: on
line diff
--- a/src/video/win32/SDL_win32video.h Wed Jun 28 08:12:07 2006 +0000 +++ b/src/video/win32/SDL_win32video.h Fri Jun 30 05:42:49 2006 +0000 @@ -31,6 +31,8 @@ #include <windows.h> #include "SDL_win32events.h" +#include "SDL_win32keyboard.h" +#include "SDL_win32mouse.h" #include "SDL_win32window.h" #ifdef UNICODE @@ -43,9 +45,11 @@ /* Private display data */ -struct SDL_PrivateVideoData +typedef struct { -}; + int mouse; + int keyboard; +} SDL_VideoData; #endif /* _SDL_win32video_h */