diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 0010d6d..3f3ed32 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -87,7 +87,7 @@ #endif /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 42 +#define PLUGIN_API_VERSION 44 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -399,6 +399,9 @@ struct plugin_api { #ifdef ROCKBOX_HAS_LOGF void (*logf)(const char *fmt, ...); #endif + struct rundb_header *rundbheader; + int *rundb_fd; + int *rundb_initialized; int (*strncmp)(const char *, const char *, size_t); }; |