summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugin.c2
-rw-r--r--apps/plugin.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 7934cc1754..7c80e5c6e1 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -47,6 +47,7 @@
47#include "load_code.h" 47#include "load_code.h"
48#include "file.h" 48#include "file.h"
49#include "core_keymap.h" 49#include "core_keymap.h"
50#include "language.h"
50 51
51#if CONFIG_CHARGING 52#if CONFIG_CHARGING
52#include "power.h" 53#include "power.h"
@@ -839,6 +840,7 @@ static const struct plugin_api rockbox_api = {
839 playlist_get_display_index, 840 playlist_get_display_index,
840 filetype_get_plugin, 841 filetype_get_plugin,
841 playlist_entries_iterate, 842 playlist_entries_iterate,
843 lang_is_rtl,
842}; 844};
843 845
844static int plugin_buffer_handle; 846static int plugin_buffer_handle;
diff --git a/apps/plugin.h b/apps/plugin.h
index e9dedf02a1..4dbd9d04c0 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -978,6 +978,7 @@ struct plugin_api {
978 bool (*playlist_entries_iterate)(const char *filename, 978 bool (*playlist_entries_iterate)(const char *filename,
979 struct playlist_insert_context *pl_context, 979 struct playlist_insert_context *pl_context,
980 bool (*action_cb)(const char *file_name)); 980 bool (*action_cb)(const char *file_name));
981 int (*lang_is_rtl)(void);
981}; 982};
982 983
983/* plugin header */ 984/* plugin header */