summaryrefslogtreecommitdiff
path: root/apps/screens.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-03-17 21:14:46 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-03-17 21:14:46 +0000
commit87cd59f7e354557c604414f84895b64939e6da6d (patch)
tree6c00bf4965bc8962c013bd5d6e4ecd4c707a2c2d /apps/screens.h
parent7ab2ff550d35c99e8bc7b126d0014c034191a47a (diff)
downloadrockbox-87cd59f7e354557c604414f84895b64939e6da6d.tar.gz
rockbox-87cd59f7e354557c604414f84895b64939e6da6d.zip
power-splash, this should be able to replace most cases where we "splash"
messages for a brief period git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3464 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screens.h')
-rw-r--r--apps/screens.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/screens.h b/apps/screens.h
index 93894eb654..2e3ebf778d 100644
--- a/apps/screens.h
+++ b/apps/screens.h
@@ -28,8 +28,11 @@ bool f2_screen(void);
28bool f3_screen(void); 28bool f3_screen(void);
29#endif 29#endif
30 30
31void splash(char *text, /* what to say */ 31void splash(int ticks, /* how long */
32 int ticks, /* fow how long */ 32 int keymask,/* what keymask aborts the waiting (if any) */
33 int button);/* 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 ...);
34 37
35#endif 38#endif