diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-19 19:38:45 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-24 21:20:13 +0000 |
commit | 0c4f89370d05056faa789aa9cabcccc4e509fb9f (patch) | |
tree | 6ddf7fff0a47564db41d39927ea1acbdb03e74ee /apps/plugin.h | |
parent | 092c340a2062fa98b7387fc5fd63578ddae7d0b6 (diff) |
[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.h | 11 |
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 { void (*lcd_putsf)(int x, int y, const unsigned char *fmt, ...); bool (*lcd_puts_scroll)(int x, int y, const unsigned char* string); void (*lcd_scroll_stop)(void); -#ifdef HAVE_LCD_CHARCELLS - void (*lcd_define_pattern)(unsigned long ucs, const char *pattern); - unsigned long (*lcd_get_locked_pattern)(void); - void (*lcd_unlock_pattern)(unsigned long ucs); - void (*lcd_putc)(int x, int y, unsigned long ucs); - void (*lcd_put_cursor)(int x, int y, unsigned long ucs); - void (*lcd_remove_cursor)(void); - void (*lcd_icon)(int icon, bool enable); - void (*lcd_double_height)(bool on); -#else /* HAVE_LCD_BITMAP */ fb_data* lcd_framebuffer; void (*lcd_set_viewport)(struct viewport* vp); void (*lcd_set_framebuffer)(fb_data *fb); @@ -300,7 +290,6 @@ struct plugin_api { int width, int height, int items, int min_shown, int max_shown, unsigned flags); -#endif /* HAVE_LCD_BITMAP */ const char* (*get_codepage_name)(int cp); #ifdef HAVE_REMOTE_LCD |