summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 00c4326663..daab88eda1 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -110,12 +110,12 @@
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 43 113#define PLUGIN_API_VERSION 44
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
117 new function which are "waiting" at the end of the function table) */ 117 new function which are "waiting" at the end of the function table) */
118#define PLUGIN_MIN_API_VERSION 43 118#define PLUGIN_MIN_API_VERSION 44
119 119
120/* plugin return codes */ 120/* plugin return codes */
121enum plugin_status { 121enum plugin_status {
@@ -484,8 +484,6 @@ struct plugin_api {
484 char* (*menu_description)(int menu, int position); 484 char* (*menu_description)(int menu, int position);
485 void (*menu_delete)(int menu, int position); 485 void (*menu_delete)(int menu, int position);
486 int (*menu_count)(int menu); 486 int (*menu_count)(int menu);
487 bool (*menu_moveup)(int menu);
488 bool (*menu_movedown)(int menu);
489 void (*menu_draw)(int menu); 487 void (*menu_draw)(int menu);
490 void (*menu_insert)(int menu, int position, char *desc, bool (*function) (void)); 488 void (*menu_insert)(int menu, int position, char *desc, bool (*function) (void));
491 void (*menu_set_cursor)(int menu, int position); 489 void (*menu_set_cursor)(int menu, int position);