diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-05-24 15:51:39 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-05-24 15:51:39 +0000 |
| commit | 3ed2874669d436712181e8786bd75c71b568bd31 (patch) | |
| tree | ac6caec8fdd18f4a029f578f4c92f6f4dcde48d8 | |
| parent | 50a33f06cfa907d712c87b502bc0bbd2b71566a6 (diff) | |
| download | rockbox-3ed2874669d436712181e8786bd75c71b568bd31.zip rockbox-3ed2874669d436712181e8786bd75c71b568bd31.tar.gz rockbox-3ed2874669d436712181e8786bd75c71b568bd31.tar.bz2 rockbox-3ed2874669d436712181e8786bd75c71b568bd31.tar.xz | |
Proper declaration of show_splash and main_menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@702 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/main.c | 1 | ||||
| -rw-r--r-- | apps/main_menu.h | 25 | ||||
| -rw-r--r-- | apps/tree.c | 1 |
3 files changed, 27 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index dc36ce6..c6f5662 100644 --- a/apps/main.c +++ b/apps/main.c @@ -30,6 +30,7 @@ #include "dmalloc.h" #include "bmalloc.h" #include "mpeg.h" +#include "main_menu.h" void app_main(void) { diff --git a/apps/main_menu.h b/apps/main_menu.h new file mode 100644 index 0000000..e7b20e1 --- /dev/null +++ b/apps/main_menu.h @@ -0,0 +1,25 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 Björn Stenberg + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef _MAIN_MENU_H +#define _MAIN_MENU_H + +extern void show_splash(void); +extern void main_menu(void); + +#endif diff --git a/apps/tree.c b/apps/tree.c index 8f04ab6..05fc967 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -29,6 +29,7 @@ #include "kernel.h" #include "tree.h" #include "play.h" +#include "main_menu.h" #ifdef HAVE_LCD_BITMAP #include "icons.h" |