projects
/
rodin
/
chimara.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added a skeleton implementation of the ChimaraIF widget, which is a subclass of Chima...
[rodin/chimara.git]
/
libchimara
/
event.h
1
#ifndef EVENT_H
2
#define EVENT_H
3
4
#include <glib.h>
5
#include "glk.h"
6
#include "chimara-glk.h"
7
8
#define EVENT_QUEUE_MAX_LENGTH (100)
9
#define evtype_Abort (-1)
10
11
G_GNUC_INTERNAL void event_throw(ChimaraGlk *glk, glui32 type, winid_t win, glui32 val1, glui32 val2);
12
13
#endif