summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-08-28 21:46:18 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-08-28 21:46:18 +0000
commit0f063b7d725e2c418aa0fb6f06193c79cc9ebea6 (patch)
tree706a782ecdb656a3a59fb70d1ac185a3f9f34286 /apps
parente78a12bca72cb5b1d559cda0fc68bd324017f9b0 (diff)
downloadrockbox-0f063b7d725e2c418aa0fb6f06193c79cc9ebea6.tar.gz
rockbox-0f063b7d725e2c418aa0fb6f06193c79cc9ebea6.zip
Implement lcd(_remote)_putsxyf() and export to plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27921 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 5101ceeb20..767c593f57 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -723,6 +723,7 @@ static const struct plugin_api rockbox_api = {
723 the API gets incompatible */ 723 the API gets incompatible */
724 724
725 lcd_putsf, 725 lcd_putsf,
726 lcd_putsxyf,
726}; 727};
727 728
728int plugin_load(const char* plugin, const void* parameter) 729int plugin_load(const char* plugin, const void* parameter)
diff --git a/apps/plugin.h b/apps/plugin.h
index 2bcd93e3ad..2f187f120b 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -896,6 +896,7 @@ struct plugin_api {
896 the API gets incompatible */ 896 the API gets incompatible */
897 897
898 void (*lcd_putsf)(int x, int y, const unsigned char *fmt, ...); 898 void (*lcd_putsf)(int x, int y, const unsigned char *fmt, ...);
899 void (*lcd_putsxyf)(int x, int y, const unsigned char *fmt, ...);
899}; 900};
900 901
901/* plugin header */ 902/* plugin header */