c41497f29f24f84477f7ea8ec3d48f0ca122a281
[rodin/chimara.git] / src / glk.c
1 #include <gtk/gtk.h>
2
3 #include "glk.h"
4
5 /**
6  * glk_exit:
7  * 
8  * End the Glk program. As far as the client program is concerned, this
9  * function does not return.
10  */
11 void
12 glk_exit(void)
13 {
14         gtk_main();
15 }
16
17 /*
18 void
19 glk_select(event_t *event)
20 {
21         gtk_main_iteration();
22 }
23 */
24
25