diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-08 04:33:41 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-08 04:33:41 +0000 |
commit | 4718a1e7526b3e7601a51c9bf55395d1950b1ffe (patch) | |
tree | c9a806f391a0d3fe3138c888c476f1ec727a6608 /apps/menus/exported_menus.h | |
parent | 092d355c3447a3c46d21bb7dbdf3f726ab27ec1d (diff) | |
download | rockbox-4718a1e7526b3e7601a51c9bf55395d1950b1ffe.tar.gz rockbox-4718a1e7526b3e7601a51c9bf55395d1950b1ffe.zip |
beginning of the new menu system. This commit shouldnt break anything,
but comming ones might.. report bugs in
http://forums.rockbox.org/index.php?topic=8703.0 and more info at
http://www.rockbox.org/twiki/bin/view/Main/SettingsRecode
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12227 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus/exported_menus.h')
-rw-r--r-- | apps/menus/exported_menus.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/apps/menus/exported_menus.h b/apps/menus/exported_menus.h new file mode 100644 index 0000000000..3d6a11a16e --- /dev/null +++ b/apps/menus/exported_menus.h @@ -0,0 +1,40 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id: $ + * + * Copyright (C) 2006 Jonathan Gordon + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef _EXPORTED_MENUS_H +#define _EXPORTED_MENUS_H + +#include "menu.h" +/* not needed for plugins */ +#ifndef PLUGIN + +extern const struct menu_item_ex + main_menu_, /* main_menu.c */ + display_menu, /* display_menu.c */ +// playback_settings, /* playback_menu.c */ +#ifdef HAVE_RECORDING + recording_settings_menu, /* recording_menu.c */ +#endif + sound_settings, /* sound_menu.c */ + settings_menu_item, /* settings_menu.c */ + playlist_menu_item; /* playlist_menu.c */ + + + +#endif /* ! PLUGIN */ +#endif /*_EXPORTED_MENUS_H */ |