summaryrefslogtreecommitdiff
path: root/apps/menus/recording_settings_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/menus/recording_settings_menu.c')
-rw-r--r--apps/menus/recording_settings_menu.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/menus/recording_settings_menu.c b/apps/menus/recording_settings_menu.c
new file mode 100644
index 0000000000..1bc38ddbcd
--- /dev/null
+++ b/apps/menus/recording_settings_menu.c
@@ -0,0 +1,33 @@
1
2/***************************************************************************
3 * __________ __ ___.
4 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
5 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
6 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
7 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
8 * \/ \/ \/ \/ \/
9 * $Id: $
10 *
11 * Copyright (C) 2007 Jonathan Gordon
12 *
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#include <stdbool.h>
22#include <stddef.h>
23#include <limits.h>
24#include "config.h"
25#include "lang.h"
26#include "action.h"
27#include "settings.h"
28#include "menu.h"
29#include "settings_menu.h"
30#include "playback_menu.h"
31
32bool display_settings_menu(void); /* from ../settings_menu.c */
33MENUITEM_FUNCTION(display_menu,ID2P(LANG_DISPLAY),display_settings_menu,NULL);