summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 9ffb980300..04a4d1c735 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -466,6 +466,8 @@ static const struct plugin_api rockbox_api = {
466 466
467 /* new stuff at the end, sort into place next time 467 /* new stuff at the end, sort into place next time
468 the API gets incompatible */ 468 the API gets incompatible */
469
470 strtok_r,
469}; 471};
470 472
471int plugin_load(const char* plugin, void* parameter) 473int plugin_load(const char* plugin, void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index b89dfd0d81..b0221c489d 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -105,7 +105,7 @@
105#define PLUGIN_MAGIC 0x526F634B /* RocK */ 105#define PLUGIN_MAGIC 0x526F634B /* RocK */
106 106
107/* increase this every time the api struct changes */ 107/* increase this every time the api struct changes */
108#define PLUGIN_API_VERSION 30 108#define PLUGIN_API_VERSION 31
109 109
110/* update this to latest version if a change to the api struct breaks 110/* update this to latest version if a change to the api struct breaks
111 backwards compatibility (and please take the opportunity to sort in any 111 backwards compatibility (and please take the opportunity to sort in any
@@ -545,6 +545,8 @@ struct plugin_api {
545 545
546 /* new stuff at the end, sort into place next time 546 /* new stuff at the end, sort into place next time
547 the API gets incompatible */ 547 the API gets incompatible */
548
549 char* (*strtok_r)(char *ptr, const char *sep, char **end);
548}; 550};
549 551
550/* plugin header */ 552/* plugin header */