* removed some more unused stuff in the simulator makefile
[kugel-rb.git] / apps / screens.h
blob55b31006ce6517aef36f44696926c092617fd54f
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 "timefuncs.h"
24 void usb_display_info(void);
25 void usb_screen(void);
26 int charging_screen(void);
27 void charging_splash(void);
29 #ifdef HAVE_RECORDER_KEYPAD
30 int on_screen(void);
31 bool quick_screen(const int, const int);
32 #endif
34 void splash(int ticks, /* how long */
35 bool center, /* FALSE means left-justified, TRUE means
36 horizontal and vertical center */
37 char *fmt, /* what to say *printf style */
38 ...);
40 #ifdef HAVE_RTC
41 bool set_time_screen(char* string, struct tm *tm);
42 #endif
44 #endif