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 472daeafe4..a83a9788e9 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -126,7 +126,7 @@ void* plugin_get_buffer(size_t *buffer_size);
126#define PLUGIN_MAGIC 0x526F634B /* RocK */ 126#define PLUGIN_MAGIC 0x526F634B /* RocK */
127 127
128/* increase this every time the api struct changes */ 128/* increase this every time the api struct changes */
129#define PLUGIN_API_VERSION 138 129#define PLUGIN_API_VERSION 139
130 130
131/* update this to latest version if a change to the api struct breaks 131/* update this to latest version if a change to the api struct breaks
132 backwards compatibility (and please take the opportunity to sort in any 132 backwards compatibility (and please take the opportunity to sort in any
@@ -785,6 +785,7 @@ struct plugin_api {
785#ifdef CPU_ARM 785#ifdef CPU_ARM
786 void (*__div0)(void); 786 void (*__div0)(void);
787#endif 787#endif
788 char* (*strip_extension)(char* buffer, int buffer_size, const char *filename);
788}; 789};
789 790
790/* plugin header */ 791/* plugin header */