summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2006-12-07 17:23:52 +0000
committerNils Wallménius <nils@rockbox.org>2006-12-07 17:23:52 +0000
commit5652b2528d59b77e804f72d4f7c9854275e05b5a (patch)
treeb40cdffab7879a2f95fc714e90050108dad67539 /apps/plugin.h
parent3183aeabacfdf16319f6a998518c405c3eede9dd (diff)
downloadrockbox-5652b2528d59b77e804f72d4f7c9854275e05b5a.tar.gz
rockbox-5652b2528d59b77e804f72d4f7c9854275e05b5a.zip
Always use a black backgound while displaying images in jpegviewer, and use the usual foreground/background colors and backdrop in the jpegviewer menu
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11684 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 68841e8698..5b5215f9e9 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -110,7 +110,7 @@
110#define PLUGIN_MAGIC 0x526F634B /* RocK */ 110#define PLUGIN_MAGIC 0x526F634B /* RocK */
111 111
112/* increase this every time the api struct changes */ 112/* increase this every time the api struct changes */
113#define PLUGIN_API_VERSION 38 113#define PLUGIN_API_VERSION 39
114 114
115/* update this to latest version if a change to the api struct breaks 115/* update this to latest version if a change to the api struct breaks
116 backwards compatibility (and please take the opportunity to sort in any 116 backwards compatibility (and please take the opportunity to sort in any
@@ -564,7 +564,9 @@ struct plugin_api {
564 int (*wheel_status)(void); 564 int (*wheel_status)(void);
565 void (*wheel_send_events)(bool send); 565 void (*wheel_send_events)(bool send);
566#endif 566#endif
567 567#if LCD_DEPTH > 1
568 fb_data* (*lcd_get_backdrop)(void);
569#endif
568 /* new stuff at the end, sort into place next time 570 /* new stuff at the end, sort into place next time
569 the API gets incompatible */ 571 the API gets incompatible */
570 572