summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2010-04-07 17:22:16 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2010-04-07 17:22:16 +0000
commit9e4bd41e416a2d48284947e9ccc09844d3db93ee (patch)
treed575c2b63730c4525a79ad42fe511ba03809a651 /apps/plugin.c
parent8b904e2bb4e92a6c4cb97db7d2c4e43a624b4e28 (diff)
downloadrockbox-9e4bd41e416a2d48284947e9ccc09844d3db93ee.tar.gz
rockbox-9e4bd41e416a2d48284947e9ccc09844d3db93ee.zip
Text viewer: Fix RTL languages and diacritic characters support
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25515 a1c6a512-1295-4272-9138-f99709370657
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)