summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2006-07-19 19:47:34 +0000
committerAntoine Cellerier <dionoea@videolan.org>2006-07-19 19:47:34 +0000
commit06e6acd6cd2e9760eedcb56615c358efb2675f52 (patch)
treeca27ef2222dd1faa18bba0a37699f4d652bb501d /apps/plugin.h
parent2da8f69c95cce7726ae4c0a41ce04bf42fff65df (diff)
downloadrockbox-06e6acd6cd2e9760eedcb56615c358efb2675f52.tar.gz
rockbox-06e6acd6cd2e9760eedcb56615c358efb2675f52.zip
Export bidi_l2v, font_get_bits and font_load in plugin API (on bitmap LCD targets)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10255 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 1429e83847..cd33ce529d 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -524,6 +524,11 @@ struct plugin_api {
524 void (*reload_directory)(void); 524 void (*reload_directory)(void);
525 bool (*set_bool)(const char* string, bool* variable ); 525 bool (*set_bool)(const char* string, bool* variable );
526 struct screen* screens[NB_SCREENS]; 526 struct screen* screens[NB_SCREENS];
527#ifdef HAVE_LCD_BITMAP
528 unsigned short *(*bidi_l2v)( const unsigned char *str, int orientation );
529 const unsigned char *(*font_get_bits)( struct font *pf, unsigned short char_code );
530 struct font* (*font_load)(const char *path);
531#endif
527}; 532};
528 533
529/* plugin header */ 534/* plugin header */