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 06a31ade37..1ed2a9baef 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -60,7 +60,7 @@
60#endif 60#endif
61 61
62/* increase this every time the api struct changes */ 62/* increase this every time the api struct changes */
63#define PLUGIN_API_VERSION 22 63#define PLUGIN_API_VERSION 23
64 64
65/* update this to latest version if a change to the api struct breaks 65/* update this to latest version if a change to the api struct breaks
66 backwards compatibility (and please take the opportunity to sort in any 66 backwards compatibility (and please take the opportunity to sort in any
@@ -292,6 +292,7 @@ struct plugin_api {
292 int (*button_status)(void); 292 int (*button_status)(void);
293 void (*button_clear_queue)(void); 293 void (*button_clear_queue)(void);
294 char *(*strncpy)(char *dst, const char *src, size_t length); 294 char *(*strncpy)(char *dst, const char *src, size_t length);
295 int (*strcasecmp)(const char *, const char *);
295}; 296};
296 297
297/* defined by the plugin loader (plugin.c) */ 298/* defined by the plugin loader (plugin.c) */