oscam-2.26.01-11942-802-wit.../module-lcd.h

13 lines
246 B
C
Raw Permalink Normal View History

#ifndef MODULE_LCD_H_
#define MODULE_LCD_H_
#ifdef LCDSUPPORT
extern void lcd_thread_start(void);
extern void lcd_thread_stop(void);
#else
static inline void lcd_thread_start(void) { }
static inline void lcd_thread_stop(void) { }
#endif
#endif