summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 874b9b4a56..15f7e96946 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -62,6 +62,7 @@ void* plugin_get_buffer(size_t *buffer_size);
62#include "usb.h" 62#include "usb.h"
63#include "font.h" 63#include "font.h"
64#include "lcd.h" 64#include "lcd.h"
65#include "scroll_engine.h"
65#include "metadata.h" 66#include "metadata.h"
66#include "sound.h" 67#include "sound.h"
67#include "mpeg.h" 68#include "mpeg.h"
@@ -195,7 +196,7 @@ struct plugin_api {
195 void (*lcd_puts)(int x, int y, const unsigned char *string); 196 void (*lcd_puts)(int x, int y, const unsigned char *string);
196 void (*lcd_putsf)(int x, int y, const unsigned char *fmt, ...); 197 void (*lcd_putsf)(int x, int y, const unsigned char *fmt, ...);
197 void (*lcd_puts_scroll)(int x, int y, const unsigned char* string); 198 void (*lcd_puts_scroll)(int x, int y, const unsigned char* string);
198 void (*lcd_stop_scroll)(void); 199 void (*lcd_scroll_stop)(void);
199#ifdef HAVE_LCD_CHARCELLS 200#ifdef HAVE_LCD_CHARCELLS
200 void (*lcd_define_pattern)(unsigned long ucs, const char *pattern); 201 void (*lcd_define_pattern)(unsigned long ucs, const char *pattern);
201 unsigned long (*lcd_get_locked_pattern)(void); 202 unsigned long (*lcd_get_locked_pattern)(void);
@@ -327,7 +328,7 @@ struct plugin_api {
327 void (*lcd_remote_clear_display)(void); 328 void (*lcd_remote_clear_display)(void);
328 void (*lcd_remote_puts)(int x, int y, const unsigned char *string); 329 void (*lcd_remote_puts)(int x, int y, const unsigned char *string);
329 void (*lcd_remote_puts_scroll)(int x, int y, const unsigned char* string); 330 void (*lcd_remote_puts_scroll)(int x, int y, const unsigned char* string);
330 void (*lcd_remote_stop_scroll)(void); 331 void (*lcd_remote_scroll_stop)(void);
331 void (*lcd_remote_set_drawmode)(int mode); 332 void (*lcd_remote_set_drawmode)(int mode);
332 int (*lcd_remote_get_drawmode)(void); 333 int (*lcd_remote_get_drawmode)(void);
333 void (*lcd_remote_setfont)(int font); 334 void (*lcd_remote_setfont)(int font);