summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-05-24 15:51:39 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-05-24 15:51:39 +0000
commit3ed2874669d436712181e8786bd75c71b568bd31 (patch)
treeac6caec8fdd18f4a029f578f4c92f6f4dcde48d8 /apps
parent50a33f06cfa907d712c87b502bc0bbd2b71566a6 (diff)
downloadrockbox-3ed2874669d436712181e8786bd75c71b568bd31.tar.gz
rockbox-3ed2874669d436712181e8786bd75c71b568bd31.zip
Proper declaration of show_splash and main_menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@702 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/main.c1
-rw-r--r--apps/main_menu.h25
-rw-r--r--apps/tree.c1
3 files changed, 27 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index dc36ce63fb..c6f56628d9 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -30,6 +30,7 @@
30#include "dmalloc.h" 30#include "dmalloc.h"
31#include "bmalloc.h" 31#include "bmalloc.h"
32#include "mpeg.h" 32#include "mpeg.h"
33#include "main_menu.h"
33 34
34void app_main(void) 35void app_main(void)
35{ 36{
diff --git a/apps/main_menu.h b/apps/main_menu.h
new file mode 100644
index 0000000000..e7b20e1ff4
--- /dev/null
+++ b/apps/main_menu.h
@@ -0,0 +1,25 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 Björn Stenberg
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 _MAIN_MENU_H
20#define _MAIN_MENU_H
21
22extern void show_splash(void);
23extern void main_menu(void);
24
25#endif
diff --git a/apps/tree.c b/apps/tree.c
index 8f04ab60bc..05fc96748b 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -29,6 +29,7 @@
29#include "kernel.h" 29#include "kernel.h"
30#include "tree.h" 30#include "tree.h"
31#include "play.h" 31#include "play.h"
32#include "main_menu.h"
32 33
33#ifdef HAVE_LCD_BITMAP 34#ifdef HAVE_LCD_BITMAP
34#include "icons.h" 35#include "icons.h"