forked from len0rd/rockbox
Unify the way functions are called from menus.
Optionally, the functions return value can be checked for a value to tell the menu to quit. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12821 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
86ecc9588b
commit
daf66940b1
10 changed files with 209 additions and 183 deletions
|
|
@ -327,7 +327,8 @@ static int do_shutdown(void)
|
|||
sys_poweroff();
|
||||
return 0;
|
||||
}
|
||||
MENUITEM_FUNCTION(do_shutdown_item, ID2P(LANG_SHUTDOWN), do_shutdown, NULL, Icon_NOICON);
|
||||
MENUITEM_FUNCTION(do_shutdown_item, 0, ID2P(LANG_SHUTDOWN),
|
||||
do_shutdown, NULL, 0, NULL, Icon_NOICON);
|
||||
#endif
|
||||
MAKE_MENU(root_menu_, ID2P(LANG_ROCKBOX_TITLE),
|
||||
NULL, Icon_Rockbox,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue