summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 77fb925ba2..ae889d68fd 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -155,7 +155,6 @@ static const struct plugin_api rockbox_api = {
155 lcd_set_mode, 155 lcd_set_mode,
156#endif 156#endif
157#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP) 157#if defined(HAVE_LCD_ENABLE) || defined(HAVE_LCD_SLEEP)
158 lcd_activation_set_hook,
159 &button_queue, 158 &button_queue,
160#endif 159#endif
161 bidi_l2v, 160 bidi_l2v,
@@ -255,6 +254,7 @@ static const struct plugin_api rockbox_api = {
255 button_status, 254 button_status,
256#ifdef HAVE_BUTTON_DATA 255#ifdef HAVE_BUTTON_DATA
257 button_get_data, 256 button_get_data,
257 button_status_wdata,
258#endif 258#endif
259 button_clear_queue, 259 button_clear_queue,
260 button_queue_count, 260 button_queue_count,
@@ -376,6 +376,9 @@ static const struct plugin_api rockbox_api = {
376 __cyg_profile_func_enter, 376 __cyg_profile_func_enter,
377 __cyg_profile_func_exit, 377 __cyg_profile_func_exit,
378#endif 378#endif
379 add_event,
380 remove_event,
381 send_event,
379 382
380#ifdef SIMULATOR 383#ifdef SIMULATOR
381 /* special simulator hooks */ 384 /* special simulator hooks */
@@ -668,9 +671,6 @@ static const struct plugin_api rockbox_api = {
668 appsversion, 671 appsversion,
669 /* new stuff at the end, sort into place next time 672 /* new stuff at the end, sort into place next time
670 the API gets incompatible */ 673 the API gets incompatible */
671#ifdef HAVE_BUTTON_DATA
672 button_status_wdata,
673#endif
674}; 674};
675 675
676int plugin_load(const char* plugin, const void* parameter) 676int plugin_load(const char* plugin, const void* parameter)