repo.or.cz
/
kugel-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Enable calendar plugin for non-rtc targets (FS#10786 by Teruaki Kawashima)
[kugel-rb.git]
/
apps
/
plugins
/
rockboy
/
input.h
blob
aa992380e9b0487eaddfbf2e1f881af0d3ddd13a
1
/*
2
* input.h
3
*
4
* Definitions for input device stuff - buttons, keys, etc.
5
*/
6
7
typedef
struct
event_s
8
{
9
int
type
;
10
int
code
;
11
}
event_t
;
12
13
#define EV_NONE 0
14
#define EV_PRESS 1
15
#define EV_RELEASE 2
16
17
int
ev_postevent
(
event_t
*
ev
);
18
int
ev_getevent
(
event_t
*
ev
);
19
20