Eliminated warnings about static functions declared with G_GNUC_INTERNAL
[projects/chimara/chimara.git] / src / event.h
1 #ifndef EVENT_H
2 #define EVENT_H
3
4 #include <glib.h>
5 #include "glk.h"
6
7 #define EVENT_QUEUE_MAX_LENGTH (100)
8 #define evtype_Abort (-1)
9
10 G_GNUC_INTERNAL void event_throw(glui32 type, winid_t win, glui32 val1, glui32 val2);
11
12 #endif