1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 Jonathan Gordon
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef _EXPORTED_MENUS_H
22 #define _EXPORTED_MENUS_H
25 /* not needed for plugins */
28 extern const struct menu_item_ex
29 main_menu_
, /* main_menu.c */
30 display_menu
, /* display_menu.c */
31 playback_settings
, /* playback_menu.c */
33 recording_settings
, /* recording_menu.c */
34 #ifdef HAVE_LCD_BITMAP
35 peak_meter_menu
, /* also used from within recording_menu */
38 sound_settings
, /* sound_menu.c */
39 settings_menu_item
, /* settings_menu.c */
40 playlist_settings
, /* playlist_menu.c */
41 playlist_options
, /* playlist_menu.c */
42 equalizer_menu
, /* eq_menu.c */
43 info_menu
, /* info_menu.c */
44 theme_menu
; /* theme_menu.c */
46 struct browse_folder_info
{
50 int browse_folder(void *param
); /* in theme_menu.c as it is mostly used there */
53 #endif /*_EXPORTED_MENUS_H */