1 /*
2  * Copyright (c) 2006-2022, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2022-02-01     Rudy Lo      The first version
9  */
10 
11 #ifndef LV_PORT_DISP_H
12 #define LV_PORT_DISP_H
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 void lv_port_disp_init(void);
19 
20 #ifdef __cplusplus
21 } /*extern "C"*/
22 #endif
23 
24 #endif
25