diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-26 17:03:17 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-26 17:03:17 +0000 |
| commit | 2ac057241a3b96fc71d9e320ac23e455a0a11368 (patch) | |
| tree | 1ad3d03618a822b6cc1dff49c1dfcc1d82832dcb /apps/menu.h | |
| parent | a057e5cce9e306f706c7eeb574edf91b6f0e7ec9 (diff) | |
| download | rockbox-2ac057241a3b96fc71d9e320ac23e455a0a11368.zip rockbox-2ac057241a3b96fc71d9e320ac23e455a0a11368.tar.gz rockbox-2ac057241a3b96fc71d9e320ac23e455a0a11368.tar.bz2 rockbox-2ac057241a3b96fc71d9e320ac23e455a0a11368.tar.xz | |
Added support for nested menus
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@707 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.h')
| -rw-r--r-- | apps/menu.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/menu.h b/apps/menu.h index 5aafe9b..accfbda 100644 --- a/apps/menu.h +++ b/apps/menu.h @@ -26,7 +26,8 @@ struct menu_items { void (*function) (void); }; -void menu_init(struct menu_items* items, int count); -void menu_run(void); +int menu_init(struct menu_items* items, int count); +void menu_exit(int menu); +void menu_run(int menu); #endif /* End __MENU_H__ */ |