summaryrefslogtreecommitdiff
path: root/apps/screen_access.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r--apps/screen_access.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 6b90bc9313..eab84c9129 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -37,10 +37,6 @@ void screen_helper_setfont(int font);
37 37
38#define FOR_NB_SCREENS(i) for(int i = 0; i < NB_SCREENS; i++) 38#define FOR_NB_SCREENS(i) for(int i = 0; i < NB_SCREENS; i++)
39 39
40#ifdef HAVE_LCD_CHARCELLS
41#define MAX_LINES_ON_SCREEN 2
42#endif
43
44typedef void screen_bitmap_part_func(const void *src, int src_x, int src_y, 40typedef void screen_bitmap_part_func(const void *src, int src_x, int src_y,
45 int stride, int x, int y, int width, int height); 41 int stride, int x, int y, int width, int height);
46typedef void screen_bitmap_func(const void *src, int x, int y, int width, 42typedef void screen_bitmap_func(const void *src, int x, int y, int width,
@@ -110,15 +106,6 @@ struct screen
110 void (*hline)(int x1, int x2, int y); 106 void (*hline)(int x1, int x2, int y);
111#endif /* HAVE_LCD_BITMAP || HAVE_REMOTE_LCD */ 107#endif /* HAVE_LCD_BITMAP || HAVE_REMOTE_LCD */
112 108
113#ifdef HAVE_LCD_CHARCELLS /* no charcell remote LCDs so far */
114 void (*double_height)(bool on);
115 /* name it putchar, not putc because putc is a c library function */
116 void (*putchar)(int x, int y, unsigned long ucs);
117 void (*icon)(int icon, bool enable);
118 unsigned long (*get_locked_pattern)(void);
119 void (*define_pattern)(unsigned long ucs, const char *pattern);
120 void (*unlock_pattern)(unsigned long ucs);
121#endif
122 void (*putsxy)(int x, int y, const unsigned char *str); 109 void (*putsxy)(int x, int y, const unsigned char *str);
123 void (*puts)(int x, int y, const unsigned char *str); 110 void (*puts)(int x, int y, const unsigned char *str);
124 void (*putsf)(int x, int y, const unsigned char *str, ...); 111 void (*putsf)(int x, int y, const unsigned char *str, ...);