summaryrefslogtreecommitdiff
path: root/apps/root_menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/root_menu.h')
-rw-r--r--apps/root_menu.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/apps/root_menu.h b/apps/root_menu.h
new file mode 100644
index 0000000000..9b07e58044
--- /dev/null
+++ b/apps/root_menu.h
@@ -0,0 +1,44 @@
1/***************************************************************************
2* __________ __ ___.
3* Open \______ \ ____ ____ | | _\_ |__ _______ ___
4* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7* \/ \/ \/ \/ \/
8* $Id: main.c 12101 2007-01-24 02:19:22Z jdgordon $
9*
10* Copyright (C) 2007 Jonathan Gordon
11*
12* All files in this archive are subject to the GNU General Public License.
13* See the file COPYING in the source tree root for full license agreement.
14*
15* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16* KIND, either express or implied.
17*
18****************************************************************************/
19#include "config.h"
20void root_menu(void);
21
22enum {
23 GO_TO_PREVIOUS_MUSIC = -4,
24 GO_TO_PREVIOUS_BROWSER = -3,
25 GO_TO_PREVIOUS = -2,
26 GO_TO_ROOT = -1,
27 GO_TO_FILEBROWSER = 0,
28 GO_TO_DBBROWSER,
29 GO_TO_WPS,
30 GO_TO_MAINMENU,
31#ifdef HAVE_RECORDING
32 GO_TO_RECSCREEN,
33#endif
34#ifdef CONFIG_TUNER
35 GO_TO_FM,
36#endif
37 GO_TO_RECENTBMARKS,
38 GO_TO_BROWSEPLUGINS,
39 /* Do Not add any items above here unless you want it to be able to
40 be the "start screen" after a boot up. The setting in settings_list.c
41 will need editing if this is the case. */
42};
43
44extern const struct menu_item_ex root_menu_;