diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-09 11:50:04 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-09 11:50:04 +0000 |
| commit | b5a5d2cecc94133922d544ec1787ac85578dd7e5 (patch) | |
| tree | 7570839c93764a89dd8b7dcc8dfc38e20b4d8bca /apps/plugin.h | |
| parent | e1e4a3ca50a255522d231a6d46dab026b4cd6b8b (diff) | |
| download | rockbox-b5a5d2cecc94133922d544ec1787ac85578dd7e5.zip rockbox-b5a5d2cecc94133922d544ec1787ac85578dd7e5.tar.gz rockbox-b5a5d2cecc94133922d544ec1787ac85578dd7e5.tar.bz2 rockbox-b5a5d2cecc94133922d544ec1787ac85578dd7e5.tar.xz | |
strchr() added to the plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5866 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index bd9cd5a..cb9bdb7 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -60,7 +60,7 @@ #endif /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 29 +#define PLUGIN_API_VERSION 30 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -298,6 +298,7 @@ struct plugin_api { /* new stuff at the end, sort into place next time the API gets incompatible */ + char (*strchr)(const char *s, int c); }; /* defined by the plugin loader (plugin.c) */ |