diff options
author | Björn Stenberg <bjorn@haxx.se> | 2002-09-24 17:22:12 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2002-09-24 17:22:12 +0000 |
commit | b1b8bd4dd159e90f9e197c8870953da079162639 (patch) | |
tree | 27238f1b5a1535de0604e423ca91236bb3e2f833 /apps/debug_menu.h | |
parent | c909b4b42e88a8e797e58a5e3e5ecf3716ae4783 (diff) | |
download | rockbox-b1b8bd4dd159e90f9e197c8870953da079162639.tar.gz rockbox-b1b8bd4dd159e90f9e197c8870953da079162639.tar.bz2 rockbox-b1b8bd4dd159e90f9e197c8870953da079162639.zip |
Moved on_screen, f2_screen, f3_screen and handle_usb (renamed usb_screen) to a new file: screens.c.
typedef Menu replaced with a bool.
All code now calls usb_screen() for usb handling.
Nearly all code now deals with USB connect/disconnect properly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2401 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.h')
-rw-r--r-- | apps/debug_menu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/debug_menu.h b/apps/debug_menu.h index 5dcc3ac183..9b4841f653 100644 --- a/apps/debug_menu.h +++ b/apps/debug_menu.h @@ -19,12 +19,12 @@ #ifndef _DEBUG_MENU_H #define _DEBUG_MENU_H -Menu debug_menu(void); +bool debug_menu(void); #ifndef SIMULATOR -extern Menu dbg_ports(void); +extern bool dbg_ports(void); #ifdef HAVE_RTC -extern Menu dbg_rtc(void); +extern bool dbg_rtc(void); #endif #endif |