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, 4 insertions, 4 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 2a5b6829c0..160eb2b1e7 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -128,12 +128,12 @@ void* plugin_get_buffer(size_t *buffer_size);
128#define PLUGIN_MAGIC 0x526F634B /* RocK */ 128#define PLUGIN_MAGIC 0x526F634B /* RocK */
129 129
130/* increase this every time the api struct changes */ 130/* increase this every time the api struct changes */
131#define PLUGIN_API_VERSION 156 131#define PLUGIN_API_VERSION 157
132 132
133/* update this to latest version if a change to the api struct breaks 133/* update this to latest version if a change to the api struct breaks
134 backwards compatibility (and please take the opportunity to sort in any 134 backwards compatibility (and please take the opportunity to sort in any
135 new function which are "waiting" at the end of the function table) */ 135 new function which are "waiting" at the end of the function table) */
136#define PLUGIN_MIN_API_VERSION 156 136#define PLUGIN_MIN_API_VERSION 157
137 137
138/* plugin return codes */ 138/* plugin return codes */
139enum plugin_status { 139enum plugin_status {
@@ -461,8 +461,8 @@ struct plugin_api {
461 void (*cpucache_invalidate)(void); 461 void (*cpucache_invalidate)(void);
462#endif 462#endif
463 bool (*timer_register)(int reg_prio, void (*unregister_callback)(void), 463 bool (*timer_register)(int reg_prio, void (*unregister_callback)(void),
464 long cycles, int int_prio, 464 long cycles, void (*timer_callback)(void)
465 void (*timer_callback)(void) IF_COP(, int core)); 465 IF_COP(, int core));
466 void (*timer_unregister)(void); 466 void (*timer_unregister)(void);
467 bool (*timer_set_period)(long count); 467 bool (*timer_set_period)(long count);
468 468