summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 1998bcf315..952bdc8846 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -97,7 +97,7 @@
97#define PLUGIN_MAGIC 0x526F634B /* RocK */ 97#define PLUGIN_MAGIC 0x526F634B /* RocK */
98 98
99/* increase this every time the api struct changes */ 99/* increase this every time the api struct changes */
100#define PLUGIN_API_VERSION 5 100#define PLUGIN_API_VERSION 6
101 101
102/* update this to latest version if a change to the api struct breaks 102/* update this to latest version if a change to the api struct breaks
103 backwards compatibility (and please take the opportunity to sort in any 103 backwards compatibility (and please take the opportunity to sort in any
@@ -451,6 +451,7 @@ struct plugin_api {
451 void (*lcd_bitmap_transparent)(const fb_data *src, int x, int y, 451 void (*lcd_bitmap_transparent)(const fb_data *src, int x, int y,
452 int width, int height); 452 int width, int height);
453#endif 453#endif
454 void* (*memmove)(void *out, const void *in, size_t n);
454}; 455};
455 456
456/* plugin header */ 457/* plugin header */