oscam-2.26.01-11942-802-wit.../module-lcd.h
2026-02-17 09:41:05 +00:00

13 lines
246 B
C
Executable File

#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