1
5
6
7
8
9
10
11
12
13
16
17
18
19
22
23
26
27
30
31
35
36
37
40
41
42
45
46
47
50
51
52
53
54
55
/* ... */
#ifndef LV_INIT_H
#define LV_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
#include "lv_conf_internal.h"
#include "misc/lv_types.h"
/* ... */
/* ... */
/* ... */
/* ... */
void lv_init(void);
/* ... */
void lv_deinit(void);
/* ... */
bool lv_is_initialized(void);
/* ... */
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif