summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 5e2b3b67d0..8630ce7f17 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -184,17 +184,17 @@ struct plugin_api {
184 void (*lcd_set_background)(int brightness); 184 void (*lcd_set_background)(int brightness);
185 int (*lcd_get_background)(void); 185 int (*lcd_get_background)(void);
186#endif 186#endif
187 void (*lcd_bitmap_part)(const unsigned char *src, int src_x, int src_y, 187 void (*lcd_bitmap_part)(const fb_data *src, int src_x, int src_y,
188 int stride, int x, int y, int width, int height); 188 int stride, int x, int y, int width, int height);
189 void (*lcd_bitmap)(const unsigned char *src, int x, int y, int width, 189 void (*lcd_bitmap)(const fb_data *src, int x, int y, int width,
190 int height); 190 int height);
191#endif 191#endif
192 void (*lcd_putsxy)(int x, int y, const unsigned char *string); 192 void (*lcd_putsxy)(int x, int y, const unsigned char *string);
193 void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style); 193 void (*lcd_puts_style)(int x, int y, const unsigned char *str, int style);
194 void (*lcd_puts_scroll_style)(int x, int y, const unsigned char* string, 194 void (*lcd_puts_scroll_style)(int x, int y, const unsigned char* string,
195 int style); 195 int style);
196 unsigned char* lcd_framebuffer; 196 fb_data* lcd_framebuffer;
197 void (*lcd_blit) (const unsigned char* data, int x, int by, int width, 197 void (*lcd_blit) (const fb_data* data, int x, int by, int width,
198 int bheight, int stride); 198 int bheight, int stride);
199 void (*lcd_update)(void); 199 void (*lcd_update)(void);
200 void (*lcd_update_rect)(int x, int y, int width, int height); 200 void (*lcd_update_rect)(int x, int y, int width, int height);