When we read the year from the RTC, it can be so totally messed up so that
[kugel-rb.git] / apps / screens.h
blob2e3ebf778ddf2c7c4c6509466934c978deedeb0e
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 void usb_display_info(void);
23 void usb_screen(void);
25 #ifdef HAVE_RECORDER_KEYPAD
26 int on_screen(void);
27 bool f2_screen(void);
28 bool f3_screen(void);
29 #endif
31 void splash(int ticks, /* how long */
32 int keymask,/* what keymask aborts the waiting (if any) */
33 bool center, /* FALSE means left-justified, TRUE means
34 horizontal and vertical center */
35 char *fmt, /* what to say *printf style */
36 ...);
38 #endif