summaryrefslogtreecommitdiffstats
path: root/apps/hosted/android/yesno.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/hosted/android/yesno.c')
-rw-r--r--apps/hosted/android/yesno.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/hosted/android/yesno.c b/apps/hosted/android/yesno.c
index bc8672ad76..af7f5a5c7b 100644
--- a/apps/hosted/android/yesno.c
+++ b/apps/hosted/android/yesno.c
@@ -117,6 +117,17 @@ enum yesno_res gui_syncyesno_run(const struct text_message * main_message,
return ret ? YESNO_YES : YESNO_NO;
}
+enum yesno_res gui_syncyesno_run_w_tmo(int ticks, enum yesno_res tmo_default_res,
+ const struct text_message * main_message,
+ const struct text_message * yes_message,
+ const struct text_message * no_message)
+{
+ /* FIXME: create a prompt with timeout for android */
+ (void)ticks;
+ (void)tmo_default_res;
+ return gui_syncyesno_run(main_message, yes_message, no_message);
+}
+
#endif
/* Function to manipulate all yesno dialogues.