VBRfix description, part 2: actually this note was way outdated. Files recorded with...
[kugel-rb.git] / apps / screens.h
blob04cf0e9ee8ef7ff9ab10a5103fe0ddf8d26124f6
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 Björn Stenberg
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #ifndef _SCREENS_H_
20 #define _SCREENS_H_
22 #include "config.h"
23 #include "timefuncs.h"
25 struct screen;
27 void usb_display_info(struct screen * display);
28 void usb_screen(void);
29 int charging_screen(void);
30 void charging_splash(void);
32 #ifdef HAVE_MMC
33 int mmc_remove_request(void);
34 #endif
36 #ifdef HAVE_PITCHSCREEN
37 bool pitch_screen(void);
38 #endif
40 #ifdef BUTTON_F3
41 extern bool quick_screen_f3(int button_enter);
42 #endif
43 extern bool quick_screen_quick(int button_enter);
45 #if CONFIG_RTC
46 bool set_time_screen(const char* string, struct tm *tm);
47 #endif
49 bool shutdown_screen(void);
50 bool browse_id3(void);
51 bool view_runtime(void);
53 #endif