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
This commit is contained in:
Björn Stenberg 2002-09-24 17:22:12 +00:00
parent c909b4b42e
commit b1b8bd4dd1
29 changed files with 695 additions and 645 deletions

View file

@ -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