summaryrefslogtreecommitdiff
path: root/apps/debug_menu.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-07-15 11:23:24 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-07-15 11:23:24 +0000
commit803f47b8afb1fb48f345f447ef3144fac042b8f1 (patch)
treeaa31e13711ae2cf36a21afde76c04a2cbf5c598e /apps/debug_menu.h
parent6b25f79af039b8b367b4fff8c3aadac1cca0ab7d (diff)
downloadrockbox-803f47b8afb1fb48f345f447ef3144fac042b8f1.tar.gz
rockbox-803f47b8afb1fb48f345f447ef3144fac042b8f1.zip
Forgot to add debug_menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1348 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.h')
-rw-r--r--apps/debug_menu.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/debug_menu.h b/apps/debug_menu.h
new file mode 100644
index 0000000000..78b344bce3
--- /dev/null
+++ b/apps/debug_menu.h
@@ -0,0 +1,31 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 Heikki Hannikainen
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef _DEBUG_MENU_H
20#define _DEBUG_MENU_H
21
22void debug_menu(void);
23
24#ifndef SIMULATOR
25extern void dbg_ports(void);
26#ifdef HAVE_RTC
27extern void dbg_rtc(void);
28#endif
29#endif
30
31#endif