summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-10-21 13:46:26 +0000
committerJens Arnold <amiconn@rockbox.org>2007-10-21 13:46:26 +0000
commitc1051549b93d1905602ba25409cbd8f4a607c3b5 (patch)
tree303c0129884c3c32c6ca1e425b8edd4c9caf3ebc /apps/plugin.h
parente1a91b9138148bd33ee0bae72a7367b6282aca7f (diff)
Implement YUV dithering for c200, and enable the option in mpegplayer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15246 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index ee58687bf0..27ab2ce166 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -112,12 +112,12 @@
#define PLUGIN_MAGIC 0x526F634B /* RocK */
/* increase this every time the api struct changes */
-#define PLUGIN_API_VERSION 84
+#define PLUGIN_API_VERSION 85
/* update this to latest version if a change to the api struct breaks
backwards compatibility (and please take the opportunity to sort in any
new function which are "waiting" at the end of the function table) */
-#define PLUGIN_MIN_API_VERSION 84
+#define PLUGIN_MIN_API_VERSION 85
/* plugin return codes */
enum plugin_status {
@@ -266,7 +266,7 @@ struct plugin_api {
int x, int y, int width, int height);
#endif
-#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200)
+#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200)
void (*lcd_yuv_set_options)(unsigned options);
#endif