summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-15 12:33:19 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-15 12:33:19 +0000
commitc145dacb90626e8719fadb600958432cfdf80b94 (patch)
tree0bfd49b7655993f0b558e56251946ed1fb162e6b /apps/plugin.h
parent272d6f11cde5f963e8fc4892db60943edd259672 (diff)
downloadrockbox-c145dacb90626e8719fadb600958432cfdf80b94.tar.gz
rockbox-c145dacb90626e8719fadb600958432cfdf80b94.zip
snake2: Some code cleanup, loads all levels at startup, fixed the bug that prevented game B from advancing to the next level
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4885 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index e4ec910006..37067310ad 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -60,7 +60,7 @@
60#endif 60#endif
61 61
62/* increase this every time the api struct changes */ 62/* increase this every time the api struct changes */
63#define PLUGIN_API_VERSION 19 63#define PLUGIN_API_VERSION 20
64 64
65/* update this to latest version if a change to the api struct breaks 65/* update this to latest version if a change to the api struct breaks
66 backwards compatibility (and please take the opportunity to sort in any 66 backwards compatibility (and please take the opportunity to sort in any
@@ -280,6 +280,9 @@ struct plugin_api {
280#ifdef HAVE_LCD_CHARCELLS 280#ifdef HAVE_LCD_CHARCELLS
281 void (*lcd_icon)(int icon, bool enable); 281 void (*lcd_icon)(int icon, bool enable);
282#endif 282#endif
283#ifdef HAVE_LCD_BITMAP
284 void (*lcd_puts_style)(int x, int y, unsigned char *str, int style);
285#endif
283}; 286};
284 287
285/* defined by the plugin loader (plugin.c) */ 288/* defined by the plugin loader (plugin.c) */