mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
[FixRed] android yesno dialog
add a dummy fn with not for future dev Change-Id: I2afc06bb1eaeb19b4972b625b6245c2361d8b8e7
This commit is contained in:
parent
1c47722226
commit
f017ef9617
1 changed files with 11 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue