The install window doesn't need to be wider than the other ones.
[Rockbox.git] / apps / menus / exported_menus.h
bloba4f8512a739fa6475d58f0fe155870692e891f67
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2006 Jonathan Gordon
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #ifndef _EXPORTED_MENUS_H
20 #define _EXPORTED_MENUS_H
22 #include "menu.h"
23 /* not needed for plugins */
24 #ifndef PLUGIN
26 extern const struct menu_item_ex
27 main_menu_, /* main_menu.c */
28 display_menu, /* display_menu.c */
29 playback_menu_item, /* playback_menu.c */
30 #ifdef HAVE_RECORDING
31 recording_settings, /* recording_menu.c */
32 #endif
33 sound_settings, /* sound_menu.c */
34 settings_menu_item, /* settings_menu.c */
35 playlist_settings, /* playlist_menu.c */
36 playlist_options, /* playlist_menu.c */
37 equalizer_menu, /* eq_menu.c */
38 info_menu; /* info_menu.c */
40 #ifdef HAVE_WM8758
41 extern const struct menu_item_ex hw_eq_menu; /* eq_menu.c */
42 #endif
46 #endif /* ! PLUGIN */
47 #endif /*_EXPORTED_MENUS_H */