From 0c458c043a2e95cfed15d143ff0053b44b6a425c Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Tue, 13 Jul 2004 14:01:41 +0000 Subject: 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 --- apps/plugin.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'apps/plugin.h') 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) */ -- cgit v1.1