summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 14519e1799..dbd7d7b4fb 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -24,6 +24,7 @@
24#include "debug.h" 24#include "debug.h"
25#include "i2c.h" 25#include "i2c.h"
26#include "lang.h" 26#include "lang.h"
27#include "led.h"
27#include "keyboard.h" 28#include "keyboard.h"
28#include "buffer.h" 29#include "buffer.h"
29#include "backlight.h" 30#include "backlight.h"
@@ -252,10 +253,11 @@ static const struct plugin_api rockbox_api = {
252 cpu_boost, 253 cpu_boost,
253#endif 254#endif
254#endif 255#endif
256#endif
255 timer_register, 257 timer_register,
256 timer_unregister, 258 timer_unregister,
257 timer_set_period, 259 timer_set_period,
258#endif 260
259 queue_init, 261 queue_init,
260 queue_delete, 262 queue_delete,
261 queue_post, 263 queue_post,
@@ -493,6 +495,7 @@ static const struct plugin_api rockbox_api = {
493#ifdef HAVE_LCD_BITMAP 495#ifdef HAVE_LCD_BITMAP
494 screen_clear_area, 496 screen_clear_area,
495#endif 497#endif
498 led,
496}; 499};
497 500
498int plugin_load(const char* plugin, void* parameter) 501int plugin_load(const char* plugin, void* parameter)