22 lines
259 B
C
22 lines
259 B
C
/**
|
|
* @file lv_port_indev.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_PORT_INDEV_H
|
|
#define LV_PORT_INDEV_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lv_drv_conf.h"
|
|
|
|
void lv_port_indev_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* LV_PORT_INDEV_H */
|