Eliminated warnings about static functions declared with G_GNUC_INTERNAL
[projects/chimara/chimara.git] / src / event.h
index b17335c0fd1a4ab2a8a31b550637764f78948140..7cf80bdf7fb5ee4e0d0ebc823a8c5fa4165ead62 100644 (file)
@@ -5,16 +5,8 @@
 #include "glk.h"
 
 #define EVENT_QUEUE_MAX_LENGTH (100)
+#define evtype_Abort (-1)
 
-/* Implementation-defined events */
-#define EVENT_TYPE_QUIT (-1)
-
-void events_init();
-void events_free();
-
-void get_event_lock();
-void release_event_lock();
-
-void event_throw(glui32 type, winid_t win, glui32 val1, glui32 val2);
+G_GNUC_INTERNAL void event_throw(glui32 type, winid_t win, glui32 val1, glui32 val2);
 
 #endif