summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 0010d6d3a0..3f3ed327ac 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -87,7 +87,7 @@
87#endif 87#endif
88 88
89/* increase this every time the api struct changes */ 89/* increase this every time the api struct changes */
90#define PLUGIN_API_VERSION 42 90#define PLUGIN_API_VERSION 44
91 91
92/* update this to latest version if a change to the api struct breaks 92/* update this to latest version if a change to the api struct breaks
93 backwards compatibility (and please take the opportunity to sort in any 93 backwards compatibility (and please take the opportunity to sort in any
@@ -399,6 +399,9 @@ struct plugin_api {
399#ifdef ROCKBOX_HAS_LOGF 399#ifdef ROCKBOX_HAS_LOGF
400 void (*logf)(const char *fmt, ...); 400 void (*logf)(const char *fmt, ...);
401#endif 401#endif
402 struct rundb_header *rundbheader;
403 int *rundb_fd;
404 int *rundb_initialized;
402 int (*strncmp)(const char *, const char *, size_t); 405 int (*strncmp)(const char *, const char *, size_t);
403}; 406};
404 407