aboutsummaryrefslogtreecommitdiffstats
path: root/minui/minui.h
diff options
context:
space:
mode:
authorTodd Poynor <toddpoynor@google.com>2013-09-10 16:52:54 -0700
committerTodd Poynor <toddpoynor@google.com>2013-09-12 12:42:33 -0700
commit1fc89d4c84e512b484d82d971d997bdb0aef40e2 (patch)
tree08d6370fef594f6947724879a4613f8ace71bcb5 /minui/minui.h
parent743e24f161f84553f4890c141d935ceb5224d38a (diff)
downloadbootable_recovery-1fc89d4c84e512b484d82d971d997bdb0aef40e2.zip
bootable_recovery-1fc89d4c84e512b484d82d971d997bdb0aef40e2.tar.gz
bootable_recovery-1fc89d4c84e512b484d82d971d997bdb0aef40e2.tar.bz2
minui: convert ev_*() event interface to epoll
Help enable external main loop combined with ev_*() key event processing. Specify EPOLLWAKEUP to hold a wakelock on any event, assuming this is needed (may need to make this optional). Convert callback events parameter to unsigned int. Change-Id: Ib5e09abbd7724ffd830e2cf8e25e7eb59d3aa072
Diffstat (limited to 'minui/minui.h')
-rw-r--r--minui/minui.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/minui/minui.h b/minui/minui.h
index 1b8dd05..805c58b 100644
--- a/minui/minui.h
+++ b/minui/minui.h
@@ -50,7 +50,7 @@ unsigned int gr_get_height(gr_surface surface);
// see http://www.mjmwired.net/kernel/Documentation/input/ for info.
struct input_event;
-typedef int (*ev_callback)(int fd, short revents, void *data);
+typedef int (*ev_callback)(int fd, unsigned int epevents, void *data);
typedef int (*ev_set_key_callback)(int code, int value, void *data);
int ev_init(ev_callback input_cb, void *data);
@@ -65,7 +65,7 @@ int ev_sync_key_state(ev_set_key_callback set_key_cb, void *data);
*/
int ev_wait(int timeout);
-int ev_get_input(int fd, short revents, struct input_event *ev);
+int ev_get_input(int fd, unsigned int epevents, struct input_event *ev);
void ev_dispatch(void);
// Resources