diff options
| author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2005-04-25 23:47:51 +0000 |
|---|---|---|
| committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2005-04-25 23:47:51 +0000 |
| commit | 7d9848186ea3b7ed49fe07e9e7472c4092eda527 (patch) | |
| tree | 87b1f13c7714ec76f351a4bf3cfe7d36d71f12c8 /apps/plugin.c | |
| parent | b015d642b5572001bd45ec79048f997d7daae017 (diff) | |
| download | rockbox-7d9848186ea3b7ed49fe07e9e7472c4092eda527.zip rockbox-7d9848186ea3b7ed49fe07e9e7472c4092eda527.tar.gz rockbox-7d9848186ea3b7ed49fe07e9e7472c4092eda527.tar.bz2 rockbox-7d9848186ea3b7ed49fe07e9e7472c4092eda527.tar.xz | |
iRiver: extended remote lcd driver. displaying text works now - see start-up-screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6355 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index ad9c6a9..76c9ddb 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -135,11 +135,32 @@ static const struct plugin_api rockbox_api = { splash, #ifdef HAVE_REMOTE_LCD lcd_remote_clear_display, - lcd_remote_backlight_on, - lcd_remote_backlight_off, + lcd_remote_puts, + lcd_remote_puts_scroll, + lcd_remote_stop_scroll, lcd_remote_set_contrast, - lcd_remote_update, + lcd_remote_putsxy, + lcd_remote_puts_style, + lcd_remote_puts_scroll_style, lcd_remote_bitmap, + lcd_remote_drawline, + lcd_remote_clearline, + lcd_remote_drawpixel, + lcd_remote_clearpixel, + lcd_remote_setfont, + font_get, + lcd_remote_clearrect, + lcd_remote_fillrect, + lcd_remote_drawrect, + lcd_remote_invertrect, + lcd_remote_getstringsize, + lcd_remote_update, + lcd_remote_update_rect, + //id (*scrollbar)(int x, int y, int width, int height, int items, + // int min_shown, int max_shown, int orientation); + //void (*remote_checkbox)(int x, int y, int width, int height, bool checked); + lcd_remote_backlight_on, + lcd_remote_backlight_off, &lcd_remote_framebuffer[0][0], #endif /* button */ |