comparison src/video/win32/SDL_win32video.h @ 1722:5daa04d862f1 SDL-1.3

Added a userdata parameter for event filters. Added a function to filter the existing queued events. Added explicit support for relative mouse mode to the API.
author Sam Lantinga <slouken@libsdl.org>
date Fri, 30 Jun 2006 08:18:44 +0000
parents a1ebb17f9c52
children 6c63fc2bd986
comparison
equal deleted inserted replaced
1721:1cc762cafff8 1722:5daa04d862f1
43 #define WIN_UTF8ToString(S) SDL_iconv_string("ASCII", "UTF-8", (char *)S, SDL_strlen(S)+1) 43 #define WIN_UTF8ToString(S) SDL_iconv_string("ASCII", "UTF-8", (char *)S, SDL_strlen(S)+1)
44 #endif 44 #endif
45 45
46 /* Private display data */ 46 /* Private display data */
47 47
48 typedef struct 48 typedef struct SDL_VideoData
49 { 49 {
50 int mouse; 50 int mouse;
51 int keyboard; 51 int keyboard;
52 } SDL_VideoData; 52 } SDL_VideoData;
53 53