21 lines
268 B
C
21 lines
268 B
C
/**
|
|
* @file lv_port_disp.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_PORT_DISP_H
|
|
#define LV_PORT_DISP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void lv_port_disp_init(lv_coord_t hor_res, lv_coord_t ver_res, int rot);
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_PORT_DISP_H*/
|
|
|