summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/input.h')
-rw-r--r--apps/plugins/rockboy/input.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/apps/plugins/rockboy/input.h b/apps/plugins/rockboy/input.h
new file mode 100644
index 0000000000..8c5fdf9352
--- /dev/null
+++ b/apps/plugins/rockboy/input.h
@@ -0,0 +1,24 @@
1/*
2 * input.h
3 *
4 * Definitions for input device stuff - buttons, keys, etc.
5 */
6
7
8#define MAX_KEYS 10
9
10typedef struct event_s
11{
12 int type;
13 int code;
14} event_t;
15
16#define EV_NONE 0
17#define EV_PRESS 1
18#define EV_RELEASE 2
19#define EV_REPEAT 3
20
21int ev_postevent(event_t *ev);
22int ev_getevent(event_t *ev);
23
24