comparison src/events/SDL_events_c.h @ 1668:4da1ee79c9af SDL-1.3

more tweaking indent options
author Sam Lantinga <slouken@libsdl.org>
date Mon, 29 May 2006 04:04:35 +0000
parents 782fd950bd46
children eef792d31de8
comparison
equal deleted inserted replaced
1667:1fddae038bc8 1668:4da1ee79c9af
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 26
27 /* Start and stop the event processing loop */ 27 /* Start and stop the event processing loop */
28 extern int SDL_StartEventLoop (Uint32 flags); 28 extern int SDL_StartEventLoop(Uint32 flags);
29 extern void SDL_StopEventLoop (void); 29 extern void SDL_StopEventLoop(void);
30 extern void SDL_QuitInterrupt (void); 30 extern void SDL_QuitInterrupt(void);
31 31
32 extern void SDL_Lock_EventThread (void); 32 extern void SDL_Lock_EventThread(void);
33 extern void SDL_Unlock_EventThread (void); 33 extern void SDL_Unlock_EventThread(void);
34 extern Uint32 SDL_EventThreadID (void); 34 extern Uint32 SDL_EventThreadID(void);
35 35
36 /* Event handler init routines */ 36 /* Event handler init routines */
37 extern int SDL_KeyboardInit (void); 37 extern int SDL_KeyboardInit(void);
38 extern int SDL_MouseInit (void); 38 extern int SDL_MouseInit(void);
39 extern int SDL_QuitInit (void); 39 extern int SDL_QuitInit(void);
40 40
41 /* Event handler quit routines */ 41 /* Event handler quit routines */
42 extern void SDL_KeyboardQuit (void); 42 extern void SDL_KeyboardQuit(void);
43 extern void SDL_MouseQuit (void); 43 extern void SDL_MouseQuit(void);
44 extern void SDL_QuitQuit (void); 44 extern void SDL_QuitQuit(void);
45 45
46 /* The event filter function */ 46 /* The event filter function */
47 extern SDL_EventFilter SDL_EventOK; 47 extern SDL_EventFilter SDL_EventOK;
48 48
49 /* The array of event processing states */ 49 /* The array of event processing states */
50 extern Uint8 SDL_ProcessEvents[SDL_NUMEVENTS]; 50 extern Uint8 SDL_ProcessEvents[SDL_NUMEVENTS];
51 51
52 /* Internal event queueing functions 52 /* Internal event queueing functions
53 (from SDL_mouse.c, SDL_keyboard.c, SDL_quit.c, SDL_events.c, SDL_windowevents.c) 53 (from SDL_mouse.c, SDL_keyboard.c, SDL_quit.c, SDL_events.c, SDL_windowevents.c)
54 */ 54 */
55 extern int SDL_PrivateWindowEvent (SDL_WindowID windowID, Uint8 windowevent, 55 extern int SDL_PrivateWindowEvent(SDL_WindowID windowID, Uint8 windowevent,
56 int data1, int data2); 56 int data1, int data2);
57 extern int SDL_PrivateMouseMotion (Uint8 buttonstate, int relative, Sint16 x, 57 extern int SDL_PrivateMouseMotion(Uint8 buttonstate, int relative, Sint16 x,
58 Sint16 y); 58 Sint16 y);
59 extern int SDL_PrivateMouseButton (Uint8 state, Uint8 button, Sint16 x, 59 extern int SDL_PrivateMouseButton(Uint8 state, Uint8 button, Sint16 x,
60 Sint16 y); 60 Sint16 y);
61 extern int SDL_PrivateKeyboard (Uint8 state, SDL_keysym * key); 61 extern int SDL_PrivateKeyboard(Uint8 state, SDL_keysym * key);
62 extern int SDL_PrivateQuit (void); 62 extern int SDL_PrivateQuit(void);
63 extern int SDL_PrivateSysWMEvent (SDL_SysWMmsg * message); 63 extern int SDL_PrivateSysWMEvent(SDL_SysWMmsg * message);
64 64
65 /* Used by the activity event handler to remove mouse focus */ 65 /* Used by the activity event handler to remove mouse focus */
66 extern void SDL_ResetMouse (void); 66 extern void SDL_ResetMouse(void);
67 67
68 /* Used by the activity event handler to remove keyboard focus */ 68 /* Used by the activity event handler to remove keyboard focus */
69 extern void SDL_ResetKeyboard (void); 69 extern void SDL_ResetKeyboard(void);
70 70
71 /* Used by the event loop to queue pending keyboard repeat events */ 71 /* Used by the event loop to queue pending keyboard repeat events */
72 extern void SDL_CheckKeyRepeat (void); 72 extern void SDL_CheckKeyRepeat(void);
73 73
74 /* Used by the OS keyboard code to detect whether or not to do UNICODE */ 74 /* Used by the OS keyboard code to detect whether or not to do UNICODE */
75 #ifndef DEFAULT_UNICODE_TRANSLATION 75 #ifndef DEFAULT_UNICODE_TRANSLATION
76 #define DEFAULT_UNICODE_TRANSLATION 0 /* Default off because of overhead */ 76 #define DEFAULT_UNICODE_TRANSLATION 0 /* Default off because of overhead */
77 #endif 77 #endif