summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index e9c538fd78..983e4991b9 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -21,6 +21,7 @@
21#include <stdio.h> 21#include <stdio.h>
22#include <atoi.h> 22#include <atoi.h>
23#include <timefuncs.h> 23#include <timefuncs.h>
24#include <ctype.h>
24#include "debug.h" 25#include "debug.h"
25#include "button.h" 26#include "button.h"
26#include "lcd.h" 27#include "lcd.h"
@@ -147,6 +148,9 @@ static struct plugin_api rockbox_api = {
147 strlen, 148 strlen,
148 memset, 149 memset,
149 memcpy, 150 memcpy,
151#ifndef SIMULATOR
152 _ctype_,
153#endif
150 154
151 /* sound */ 155 /* sound */
152#ifndef SIMULATOR 156#ifndef SIMULATOR
@@ -209,6 +213,7 @@ static struct plugin_api rockbox_api = {
209 mpeg_next_track, 213 mpeg_next_track,
210 playlist_amount, 214 playlist_amount,
211 mpeg_status, 215 mpeg_status,
216 mpeg_has_changed_track,
212#ifdef HAVE_LCD_BITMAP 217#ifdef HAVE_LCD_BITMAP
213 font_get, 218 font_get,
214#endif 219#endif
@@ -230,6 +235,7 @@ static struct plugin_api rockbox_api = {
230#endif 235#endif
231 battery_level, 236 battery_level,
232 set_time, 237 set_time,
238 reset_poweroff_timer,
233 239
234 backlight_on, 240 backlight_on,
235 backlight_off, 241 backlight_off,
@@ -237,9 +243,6 @@ static struct plugin_api rockbox_api = {
237#ifdef HAVE_LCD_CHARCELLS 243#ifdef HAVE_LCD_CHARCELLS
238 lcd_icon, 244 lcd_icon,
239#endif 245#endif
240
241 reset_poweroff_timer,
242 mpeg_has_changed_track,
243}; 246};
244 247
245int plugin_load(char* plugin, void* parameter) 248int plugin_load(char* plugin, void* parameter)