git: Line endings of README.txt
[projects/chimara/chimara.git] / libchimara / event.h
index 7cf80bdf7fb5ee4e0d0ebc823a8c5fa4165ead62..946bc156b094719ce224a6ce13600f8e87979527 100644 (file)
@@ -3,10 +3,13 @@
 
 #include <glib.h>
 #include "glk.h"
+#include "chimara-glk.h"
 
 #define EVENT_QUEUE_MAX_LENGTH (100)
 #define evtype_Abort (-1)
+#define evtype_ForcedCharInput (-2)
+#define evtype_ForcedLineInput (-3)
 
-G_GNUC_INTERNAL void event_throw(glui32 type, winid_t win, glui32 val1, glui32 val2);
+G_GNUC_INTERNAL void event_throw(ChimaraGlk *glk, glui32 type, winid_t win, glui32 val1, glui32 val2);
 
 #endif