diff options
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index fdcf3c2..d38cc42 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -794,6 +794,14 @@ struct plugin_api { #if defined(HAVE_LCD_MODES) void (*lcd_set_mode)(int mode); #endif + +#if defined(HAVE_LCD_MODES) +#if HAVE_LCD_MODES & LCD_MODE_PAL256 + void (*lcd_blit_pal256)(unsigned char *src, int src_x, int src_y, int x, int y, + int width, int height); + void (*lcd_pal256_update_pal)(fb_data *palette); +#endif +#endif }; /* plugin header */ |