summaryrefslogtreecommitdiffstats
path: root/minui/include/minui/minui.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-07-28 09:05:40 +0200
committerTao Bao <tbao@google.com>2017-08-02 03:30:48 +0200
commit5f8dd9951d986b65d98d6a9ea38003427e9e46df (patch)
tree6ca03f4b7b107ea11fa40248747a757f5c8940ab /minui/include/minui/minui.h
parentMerge "Add implemention of SortedRangeSet" (diff)
downloadandroid_bootable_recovery-5f8dd9951d986b65d98d6a9ea38003427e9e46df.tar
android_bootable_recovery-5f8dd9951d986b65d98d6a9ea38003427e9e46df.tar.gz
android_bootable_recovery-5f8dd9951d986b65d98d6a9ea38003427e9e46df.tar.bz2
android_bootable_recovery-5f8dd9951d986b65d98d6a9ea38003427e9e46df.tar.lz
android_bootable_recovery-5f8dd9951d986b65d98d6a9ea38003427e9e46df.tar.xz
android_bootable_recovery-5f8dd9951d986b65d98d6a9ea38003427e9e46df.tar.zst
android_bootable_recovery-5f8dd9951d986b65d98d6a9ea38003427e9e46df.zip
Diffstat (limited to 'minui/include/minui/minui.h')
-rw-r--r--minui/include/minui/minui.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/minui/include/minui/minui.h b/minui/include/minui/minui.h
index 78dd4cb98..017ddde75 100644
--- a/minui/include/minui/minui.h
+++ b/minui/include/minui/minui.h
@@ -74,10 +74,11 @@ struct input_event;
using ev_callback = std::function<int(int fd, uint32_t epevents)>;
using ev_set_key_callback = std::function<int(int code, int value)>;
-int ev_init(ev_callback input_cb);
+int ev_init(ev_callback input_cb, bool allow_touch_inputs = false);
void ev_exit();
int ev_add_fd(int fd, ev_callback cb);
void ev_iterate_available_keys(const std::function<void(int)>& f);
+void ev_iterate_touch_inputs(const std::function<void(int)>& action);
int ev_sync_key_state(const ev_set_key_callback& set_key_cb);
// 'timeout' has the same semantics as poll(2).