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, 5 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index c9f649b096..2f54c0d314 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -41,6 +41,7 @@
41#include "storage.h" 41#include "storage.h"
42#include "pcmbuf.h" 42#include "pcmbuf.h"
43#include "errno.h" 43#include "errno.h"
44#include "diacritic.h"
44 45
45#if CONFIG_CHARGING 46#if CONFIG_CHARGING
46#include "power.h" 47#include "power.h"
@@ -710,6 +711,10 @@ static const struct plugin_api rockbox_api = {
710 appsversion, 711 appsversion,
711 /* new stuff at the end, sort into place next time 712 /* new stuff at the end, sort into place next time
712 the API gets incompatible */ 713 the API gets incompatible */
714
715#ifdef HAVE_LCD_BITMAP
716 is_diacritic,
717#endif
713}; 718};
714 719
715int plugin_load(const char* plugin, const void* parameter) 720int plugin_load(const char* plugin, const void* parameter)