projects
/
rodin
/
chimara.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
first.c compilet en draait!
[rodin/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
9
#define EVENT_TYPE_QUIT -1
10
11
void events_init();
12
void events_free();
13
14
void get_event_lock();
15
void release_event_lock();
16
17
void event_throw(glui32 type, winid_t win, glui32 val1, glui32 val2);
18
19
#endif