diff src/events/SDL_events_c.h @ 1674:7688a73b25b1 SDL-1.3

Finishing up keyboard code revamp, at least for now...
author Sam Lantinga <slouken@libsdl.org>
date Sun, 11 Jun 2006 05:27:10 +0000
parents eef792d31de8
children a1ebb17f9c52
line wrap: on
line diff
--- a/src/events/SDL_events_c.h	Sat Jun 10 09:11:59 2006 +0000
+++ b/src/events/SDL_events_c.h	Sun Jun 11 05:27:10 2006 +0000
@@ -24,6 +24,7 @@
 /* Useful functions and variables from SDL_events.c */
 #include "SDL_events.h"
 #include "SDL_mouse_c.h"
+#include "SDL_keyboard_c.h"
 
 /* Start and stop the event processing loop */
 extern int SDL_StartEventLoop(Uint32 flags);
@@ -34,10 +35,6 @@
 extern void SDL_Unlock_EventThread(void);
 extern Uint32 SDL_EventThreadID(void);
 
-extern int SDL_KeyboardInit(void);
-extern int SDL_SendKeyboard(Uint8 state, SDL_keysym * key);
-extern void SDL_KeyboardQuit(void);
-
 extern int SDL_QuitInit(void);
 extern int SDL_SendQuit(void);
 extern void SDL_QuitQuit(void);
@@ -53,13 +50,4 @@
 /* The array of event processing states */
 extern Uint8 SDL_ProcessEvents[SDL_NUMEVENTS];
 
-/* Used by the event loop to queue pending keyboard repeat events */
-extern void SDL_CheckKeyRepeat(void);
-
-/* Used by the OS keyboard code to detect whether or not to do UNICODE */
-#ifndef DEFAULT_UNICODE_TRANSLATION
-#define DEFAULT_UNICODE_TRANSLATION 0   /* Default off because of overhead */
-#endif
-extern int SDL_TranslateUNICODE;
-
 /* vi: set ts=4 sw=4 expandtab: */