1 /**
2  * @file lv_os_private.h
3  *
4  */
5 
6 #ifndef LV_OS_PRIVATE_H
7 #define LV_OS_PRIVATE_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *    OS OPTIONS
15  *********************/
16 
17 /*********************
18  *      INCLUDES
19  *********************/
20 
21 /*********************
22  *      DEFINES
23  *********************/
24 
25 /**********************
26  *      TYPEDEFS
27  **********************/
28 
29 /**********************
30  * GLOBAL PROTOTYPES
31  **********************/
32 
33 /**
34  * Initialize the OS layer
35  */
36 void lv_os_init(void);
37 
38 
39 /**********************
40  *      MACROS
41  **********************/
42 
43 #ifdef __cplusplus
44 } /*extern "C"*/
45 #endif
46 
47 #endif /*LV_OS_PRIVATE_H*/
48