rockbox/apps/plugins/rockboy/input.h
Karl Kurbjun a28d74e71c Fix rockboy for the H100's. Thanks for fixing the HW codec players Peter
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13708 a1c6a512-1295-4272-9138-f99709370657
2007-06-25 04:26:23 +00:00

20 lines
269 B
C

/*
* input.h
*
* Definitions for input device stuff - buttons, keys, etc.
*/
typedef struct event_s
{
int type;
int code;
} event_t;
#define EV_NONE 0
#define EV_PRESS 1
#define EV_RELEASE 2
int ev_postevent(event_t *ev);
int ev_getevent(event_t *ev);