summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 1029431cd1..9544b3851c 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -130,12 +130,12 @@ void* plugin_get_buffer(size_t *buffer_size);
130#define PLUGIN_MAGIC 0x526F634B /* RocK */ 130#define PLUGIN_MAGIC 0x526F634B /* RocK */
131 131
132/* increase this every time the api struct changes */ 132/* increase this every time the api struct changes */
133#define PLUGIN_API_VERSION 124 133#define PLUGIN_API_VERSION 125
134 134
135/* update this to latest version if a change to the api struct breaks 135/* update this to latest version if a change to the api struct breaks
136 backwards compatibility (and please take the opportunity to sort in any 136 backwards compatibility (and please take the opportunity to sort in any
137 new function which are "waiting" at the end of the function table) */ 137 new function which are "waiting" at the end of the function table) */
138#define PLUGIN_MIN_API_VERSION 123 138#define PLUGIN_MIN_API_VERSION 125
139 139
140/* plugin return codes */ 140/* plugin return codes */
141enum plugin_status { 141enum plugin_status {
@@ -770,11 +770,6 @@ struct plugin_api {
770 void (*semaphore_wait)(struct semaphore *s); 770 void (*semaphore_wait)(struct semaphore *s);
771 void (*semaphore_release)(struct semaphore *s); 771 void (*semaphore_release)(struct semaphore *s);
772#endif 772#endif
773#ifdef HAVE_EVENT_OBJECTS
774 void (*event_init)(struct event *e, unsigned int flags);
775 void (*event_wait)(struct event *e, unsigned int for_state);
776 void (*event_set_state)(struct event *e, unsigned int state);
777#endif
778 773
779 const char *appsversion; 774 const char *appsversion;
780 /* new stuff at the end, sort into place next time 775 /* new stuff at the end, sort into place next time