summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-19 19:38:45 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-24 21:20:13 +0000
commit0c4f89370d05056faa789aa9cabcccc4e509fb9f (patch)
tree6ddf7fff0a47564db41d39927ea1acbdb03e74ee /apps/plugin.h
parent092c340a2062fa98b7387fc5fd63578ddae7d0b6 (diff)
downloadrockbox-0c4f89370d05056faa789aa9cabcccc4e509fb9f.tar.gz
rockbox-0c4f89370d05056faa789aa9cabcccc4e509fb9f.zip
[2/4] get rid of HAVE_LCD_CHARCELLS
HAVE_LCD_BITMAP is now redundant. lcd_bitmap is always-on in features.txt so manual and lang strings don't have to change Change-Id: I08eeb20de48099ffc2dc23782711af368c2ec794
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index ecc662cb7f..8584d45fa7 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -205,16 +205,6 @@ struct plugin_api {
205 void (*lcd_putsf)(int x, int y, const unsigned char *fmt, ...); 205 void (*lcd_putsf)(int x, int y, const unsigned char *fmt, ...);
206 bool (*lcd_puts_scroll)(int x, int y, const unsigned char* string); 206 bool (*lcd_puts_scroll)(int x, int y, const unsigned char* string);
207 void (*lcd_scroll_stop)(void); 207 void (*lcd_scroll_stop)(void);
208#ifdef HAVE_LCD_CHARCELLS
209 void (*lcd_define_pattern)(unsigned long ucs, const char *pattern);
210 unsigned long (*lcd_get_locked_pattern)(void);
211 void (*lcd_unlock_pattern)(unsigned long ucs);
212 void (*lcd_putc)(int x, int y, unsigned long ucs);
213 void (*lcd_put_cursor)(int x, int y, unsigned long ucs);
214 void (*lcd_remove_cursor)(void);
215 void (*lcd_icon)(int icon, bool enable);
216 void (*lcd_double_height)(bool on);
217#else /* HAVE_LCD_BITMAP */
218 fb_data* lcd_framebuffer; 208 fb_data* lcd_framebuffer;
219 void (*lcd_set_viewport)(struct viewport* vp); 209 void (*lcd_set_viewport)(struct viewport* vp);
220 void (*lcd_set_framebuffer)(fb_data *fb); 210 void (*lcd_set_framebuffer)(fb_data *fb);
@@ -300,7 +290,6 @@ struct plugin_api {
300 int width, int height, int items, 290 int width, int height, int items,
301 int min_shown, int max_shown, 291 int min_shown, int max_shown,
302 unsigned flags); 292 unsigned flags);
303#endif /* HAVE_LCD_BITMAP */
304 const char* (*get_codepage_name)(int cp); 293 const char* (*get_codepage_name)(int cp);
305 294
306#ifdef HAVE_REMOTE_LCD 295#ifdef HAVE_REMOTE_LCD