summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index c4fd101..9354fab 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -167,7 +167,6 @@ static struct plugin_api rockbox_api = {
atoi,
get_time,
plugin_get_buffer,
- battery_level,
/* new stuff at the end, sort into place next time the API gets incompatible */
@@ -232,6 +231,7 @@ static struct plugin_api rockbox_api = {
mas_codec_writereg,
#endif
#endif
+ battery_level,
};
int plugin_load(char* plugin, void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index 8a87149..56a0ef6 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -195,7 +195,6 @@ struct plugin_api {
int (*atoi)(const char *str);
struct tm* (*get_time)(void);
void* (*plugin_get_buffer)(int* buffer_size);
- int (*battery_level)(void);
/* new stuff, sort in next time the API gets broken! */
#ifndef HAVE_LCD_CHARCELLS
@@ -266,6 +265,7 @@ struct plugin_api {
int (*mas_codec_writereg)(int reg, unsigned int val);
#endif
#endif
+ int (*battery_level)(void);
};
/* defined by the plugin loader (plugin.c) */