diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-07-19 10:33:41 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-07-19 10:33:41 +0000 |
| commit | b0e056b5aeaac668312cbf67ee9c9d1713704b05 (patch) | |
| tree | e0db08c1723c11b82191366ca3930046f5f1f34b /apps/plugin.h | |
| parent | 82ea7c3bacd0b5308e7f0b1d8f35a4e3e13e54f7 (diff) | |
| download | rockbox-b0e056b5aeaac668312cbf67ee9c9d1713704b05.zip rockbox-b0e056b5aeaac668312cbf67ee9c9d1713704b05.tar.gz rockbox-b0e056b5aeaac668312cbf67ee9c9d1713704b05.tar.bz2 rockbox-b0e056b5aeaac668312cbf67ee9c9d1713704b05.tar.xz | |
More preparations and conversions for colour LCD support.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7195 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index b081887..801c49e 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -403,10 +403,17 @@ struct plugin_api { int *rundb_initialized; int (*strncmp)(const char *, const char *, size_t); #if LCD_DEPTH > 1 +#ifdef HAVE_LCD_COLOR + void (*lcd_set_foreground)(struct rgb color); + struct rgb (*lcd_get_foreground)(void); + void (*lcd_set_background)(struct rgb color); + struct rgb (*lcd_get_background)(void); +#else void (*lcd_set_foreground)(int brightness); int (*lcd_get_foreground)(void); void (*lcd_set_background)(int brightness); int (*lcd_get_background)(void); +#endif void (*lcd_bitmap_part)(const unsigned char *src, int src_x, int src_y, int stride, int x, int y, int width, int height); void (*lcd_bitmap)(const unsigned char *src, int x, int y, int width, |