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 25bbeb2324..461c0d816a 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -237,7 +237,7 @@ struct plugin_api {
237#if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) 237#if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1)
238 void (*lcd_remote_set_foreground)(unsigned foreground); 238 void (*lcd_remote_set_foreground)(unsigned foreground);
239 unsigned (*lcd_remote_get_foreground)(void); 239 unsigned (*lcd_remote_get_foreground)(void);
240 void (*lcd_remote_set_background)(unsigned foreground); 240 void (*lcd_remote_set_background)(unsigned background);
241 unsigned (*lcd_remote_get_background)(void); 241 unsigned (*lcd_remote_get_background)(void);
242 void (*lcd_remote_bitmap_part)(const fb_remote_data *src, int src_x, int src_y, 242 void (*lcd_remote_bitmap_part)(const fb_remote_data *src, int src_x, int src_y,
243 int stride, int x, int y, int width, int height); 243 int stride, int x, int y, int width, int height);
@@ -276,7 +276,7 @@ struct plugin_api {
276 void (*gui_synclist_scroll_left)(struct gui_synclist * lists); 276 void (*gui_synclist_scroll_left)(struct gui_synclist * lists);
277#endif 277#endif
278 unsigned (*gui_synclist_do_button)(struct gui_synclist * lists, unsigned button); 278 unsigned (*gui_synclist_do_button)(struct gui_synclist * lists, unsigned button);
279 279
280 /* button */ 280 /* button */
281 long (*button_get)(bool block); 281 long (*button_get)(bool block);
282 long (*button_get_w_tmo)(int ticks); 282 long (*button_get_w_tmo)(int ticks);
@@ -319,8 +319,8 @@ struct plugin_api {
319 long* current_tick; 319 long* current_tick;
320 long (*default_event_handler)(long event); 320 long (*default_event_handler)(long event);
321 long (*default_event_handler_ex)(long event, void (*callback)(void *), void *parameter); 321 long (*default_event_handler_ex)(long event, void (*callback)(void *), void *parameter);
322 struct thread_entry* (*create_thread)(void (*function)(void), void* stack, 322 struct thread_entry* (*create_thread)(void (*function)(void), void* stack,
323 int stack_size, const char *name 323 int stack_size, const char *name
324 IF_PRIO(, int priority)); 324 IF_PRIO(, int priority));
325 void (*remove_thread)(struct thread_entry *thread); 325 void (*remove_thread)(struct thread_entry *thread);
326 void (*reset_poweroff_timer)(void); 326 void (*reset_poweroff_timer)(void);