diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
| commit | 1afa395c2fe08ed937dbb0624ade48e46be87efe (patch) | |
| tree | 621bd3dcf4c1250790f6cf414645d36611684b79 /apps/plugin.h | |
| parent | fe706d2754220794d6a22370424391e146b75c95 (diff) | |
| download | rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.zip rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.gz rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.bz2 rockbox-1afa395c2fe08ed937dbb0624ade48e46be87efe.tar.xz | |
The splash() function's second argument (keymask) is now removed, as it
was not used by any code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4201 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 819d75d..20e8fee 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -173,7 +173,7 @@ struct plugin_api { /* misc */ void (*srand)(unsigned int seed); int (*rand)(void); - void (*splash)(int ticks, int keymask, bool center, char *fmt, ...); + void (*splash)(int ticks, bool center, char *fmt, ...); void (*qsort)(void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *)); int (*kbd_input)(char* buffer, int buflen); |