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