diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-23 15:12:43 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-23 15:12:43 +0000 |
| commit | c051eda02824b48000b87e0507b36ed1fda9ff76 (patch) | |
| tree | 25ba53b7ef2b28c81801a2b51bb11cc842fc4cc5 /apps/plugin.h | |
| parent | a17df38de7370cf73041a45a2847657719f3f4a4 (diff) | |
| download | rockbox-c051eda02824b48000b87e0507b36ed1fda9ff76.zip rockbox-c051eda02824b48000b87e0507b36ed1fda9ff76.tar.gz rockbox-c051eda02824b48000b87e0507b36ed1fda9ff76.tar.bz2 rockbox-c051eda02824b48000b87e0507b36ed1fda9ff76.tar.xz | |
Added strcasecmp() to the plugin API
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4925 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 06a31ad..1ed2a9b 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 22 +#define PLUGIN_API_VERSION 23 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any @@ -292,6 +292,7 @@ struct plugin_api { int (*button_status)(void); void (*button_clear_queue)(void); char *(*strncpy)(char *dst, const char *src, size_t length); + int (*strcasecmp)(const char *, const char *); }; /* defined by the plugin loader (plugin.c) */ |