From 3ed2874669d436712181e8786bd75c71b568bd31 Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Fri, 24 May 2002 15:51:39 +0000 Subject: Proper declaration of show_splash and main_menu git-svn-id: svn://svn.rockbox.org/rockbox/trunk@702 a1c6a512-1295-4272-9138-f99709370657 --- apps/main.c | 1 + apps/main_menu.h | 25 +++++++++++++++++++++++++ apps/tree.c | 1 + 3 files changed, 27 insertions(+) create mode 100644 apps/main_menu.h (limited to 'apps') 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 @@ #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 0000000000..e7b20e1ff4 --- /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 8f04ab60bc..05fc96748b 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" -- cgit v1.2.3