Mercurial > sdl-ios-xcode
comparison src/events/SDL_events_c.h @ 1724:6c63fc2bd986 SDL-1.3
Proof of concept done - Win32 GDI implementation mostly complete.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 06 Jul 2006 07:17:11 +0000 |
parents | 5daa04d862f1 |
children |
comparison
equal
deleted
inserted
replaced
1723:4bdbb9b2bd0a | 1724:6c63fc2bd986 |
---|---|
23 | 23 |
24 /* Useful functions and variables from SDL_events.c */ | 24 /* Useful functions and variables from SDL_events.c */ |
25 #include "SDL_events.h" | 25 #include "SDL_events.h" |
26 #include "SDL_mouse_c.h" | 26 #include "SDL_mouse_c.h" |
27 #include "SDL_keyboard_c.h" | 27 #include "SDL_keyboard_c.h" |
28 #include "SDL_windowevents_c.h" | |
28 | 29 |
29 /* Start and stop the event processing loop */ | 30 /* Start and stop the event processing loop */ |
30 extern int SDL_StartEventLoop(Uint32 flags); | 31 extern int SDL_StartEventLoop(Uint32 flags); |
31 extern void SDL_StopEventLoop(void); | 32 extern void SDL_StopEventLoop(void); |
32 extern void SDL_QuitInterrupt(void); | 33 extern void SDL_QuitInterrupt(void); |
33 | 34 |
34 extern void SDL_Lock_EventThread(void); | 35 extern void SDL_Lock_EventThread(void); |
35 extern void SDL_Unlock_EventThread(void); | 36 extern void SDL_Unlock_EventThread(void); |
36 extern Uint32 SDL_EventThreadID(void); | 37 extern Uint32 SDL_EventThreadID(void); |
38 | |
39 extern int SDL_SendSysWMEvent(SDL_SysWMmsg * message); | |
37 | 40 |
38 extern int SDL_QuitInit(void); | 41 extern int SDL_QuitInit(void); |
39 extern int SDL_SendQuit(void); | 42 extern int SDL_SendQuit(void); |
40 extern void SDL_QuitQuit(void); | 43 extern void SDL_QuitQuit(void); |
41 | 44 |