diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-13 14:01:41 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-13 14:01:41 +0000 |
| commit | 0c458c043a2e95cfed15d143ff0053b44b6a425c (patch) | |
| tree | 3f4cdfa76f06d593322c64b34cbdc9d889e02f6c /apps/plugin.h | |
| parent | ae9b319ec555fd9b33c5c37b68b5578442e9de9f (diff) | |
| download | rockbox-0c458c043a2e95cfed15d143ff0053b44b6a425c.zip rockbox-0c458c043a2e95cfed15d143ff0053b44b6a425c.tar.gz rockbox-0c458c043a2e95cfed15d143ff0053b44b6a425c.tar.bz2 rockbox-0c458c043a2e95cfed15d143ff0053b44b6a425c.tar.xz | |
The plugin API now supports ctype macros like tolower() and friends
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4872 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 5b3193c..d9b3205 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -60,12 +60,12 @@ #endif /* increase this every time the api struct changes */ -#define PLUGIN_API_VERSION 18 +#define PLUGIN_API_VERSION 19 /* update this to latest version if a change to the api struct breaks backwards compatibility (and please take the opportunity to sort in any new function which are "waiting" at the end of the function table) */ -#define PLUGIN_MIN_API_VERSION 18 +#define PLUGIN_MIN_API_VERSION 19 /* plugin return codes */ enum plugin_status { @@ -176,6 +176,9 @@ struct plugin_api { size_t (*strlen)(const char *str); void* (*memset)(void *dst, int c, size_t length); void* (*memcpy)(void *out, const void *in, size_t n); +#ifndef SIMULATOR + char *_ctype_; +#endif /* sound */ #ifndef SIMULATOR @@ -240,6 +243,7 @@ struct plugin_api { struct mp3entry* (*mpeg_next_track)(void); int (*playlist_amount)(void); int (*mpeg_status)(void); + bool (*mpeg_has_changed_track)(void); #ifdef HAVE_LCD_BITMAP struct font* (*font_get)(int font); @@ -267,6 +271,7 @@ struct plugin_api { #endif int (*battery_level)(void); int (*set_time)(struct tm *tm); + void (*reset_poweroff_timer)(void); void (*backlight_on)(void); void (*backlight_off)(void); @@ -274,9 +279,6 @@ struct plugin_api { #ifdef HAVE_LCD_CHARCELLS void (*lcd_icon)(int icon, bool enable); #endif - - void (*reset_poweroff_timer)(void); - bool (*mpeg_has_changed_track)(void); }; /* defined by the plugin loader (plugin.c) */ |