Build doom on clipv2 and clip+
[kugel-rb.git] / apps / gui / splash.h
blob1bbb9e9e491b2ffca6a48f7127f3d32ab47b27e0
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Kevin Ferrare
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef _GUI_SPLASH_H_
23 #define _GUI_SPLASH_H_
24 #include <_ansi.h>
25 #include "screen_access.h"
28 * Puts a splash message centered on all the screens for a given period
29 * - ticks : how long the splash is displayed (in rb ticks)
30 * - fmt : what to say *printf style
32 extern void splashf(int ticks, const char *fmt, ...) ATTRIBUTE_PRINTF(2, 3);
35 * Puts a splash message centered on all the screens for a given period
36 * - ticks : how long the splash is displayed (in rb ticks)
37 * - str : what to say, if this is a LANG_* string (from ID2P)
38 * it will be voiced
40 extern void splash(int ticks, const char *str);
41 #endif /* _GUI_ICON_H_ */