Bump version numbers for 3.13
[maemo-rb.git] / apps / menus / exported_menus.h
blob568791b1f06d87747927925681d89b2ad50b9a14
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
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
24 #include "menu.h"
25 /* not needed for plugins */
26 #ifndef PLUGIN
28 extern const struct menu_item_ex
29 display_menu, /* display_menu.c */
30 playback_settings, /* playback_menu.c */
31 #ifdef HAVE_RECORDING
32 recording_settings, /* recording_menu.c */
33 recording_settings_menu,
34 #ifdef HAVE_LCD_BITMAP
35 peak_meter_menu, /* also used from within recording_menu */
36 #endif
37 #endif
38 sound_settings, /* sound_menu.c */
39 settings_menu_item, /* settings_menu.c */
40 bookmark_settings_menu,
41 playlist_settings, /* playlist_menu.c */
42 equalizer_menu, /* eq_menu.c */
43 #ifdef AUDIOHW_HAVE_EQ
44 audiohw_eq_tone_controls, /* audiohw_eq_menu.c */
45 #endif
46 radio_settings_menu, /* radio_menu.c */
47 theme_menu; /* theme_menu.c */
49 struct browse_folder_info {
50 const char* dir;
51 int show_options;
53 int browse_folder(void *param); /* in theme_menu.c as it is mostly used there */
55 #endif /* ! PLUGIN */
56 #endif /*_EXPORTED_MENUS_H */