summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index c7049c7fd0..a2e24f88d9 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -112,7 +112,7 @@
112#define PLUGIN_MAGIC 0x526F634B /* RocK */ 112#define PLUGIN_MAGIC 0x526F634B /* RocK */
113 113
114/* increase this every time the api struct changes */ 114/* increase this every time the api struct changes */
115#define PLUGIN_API_VERSION 76 115#define PLUGIN_API_VERSION 77
116 116
117/* update this to latest version if a change to the api struct breaks 117/* update this to latest version if a change to the api struct breaks
118 backwards compatibility (and please take the opportunity to sort in any 118 backwards compatibility (and please take the opportunity to sort in any
@@ -259,7 +259,7 @@ struct plugin_api {
259 void (*lcd_remote_bitmap)(const fb_remote_data *src, int x, int y, int width, 259 void (*lcd_remote_bitmap)(const fb_remote_data *src, int x, int y, int width,
260 int height); 260 int height);
261#endif 261#endif
262#if defined(HAVE_LCD_COLOR) && !defined(SIMULATOR) 262#if defined(HAVE_LCD_COLOR)
263 void (*lcd_yuv_blit)(unsigned char * const src[3], 263 void (*lcd_yuv_blit)(unsigned char * const src[3],
264 int src_x, int src_y, int stride, 264 int src_x, int src_y, int stride,
265 int x, int y, int width, int height); 265 int x, int y, int width, int height);
@@ -623,6 +623,10 @@ struct plugin_api {
623 bool (*get_metadata)(struct mp3entry* id3, int fd, const char* trackname); 623 bool (*get_metadata)(struct mp3entry* id3, int fd, const char* trackname);
624#endif 624#endif
625 void (*led)(bool on); 625 void (*led)(bool on);
626
627#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200)
628 void (*lcd_yuv_set_options)(unsigned options);
629#endif
626}; 630};
627 631
628/* plugin header */ 632/* plugin header */