1 /** 2 * @file lv_win_private.h 3 * 4 */ 5 6 #ifndef LV_WIN_PRIVATE_H 7 #define LV_WIN_PRIVATE_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 17 #include "../../core/lv_obj_private.h" 18 #include "lv_win.h" 19 20 #if LV_USE_WIN 21 22 /********************* 23 * DEFINES 24 *********************/ 25 26 /********************** 27 * TYPEDEFS 28 **********************/ 29 30 /********************** 31 * TYPEDEFS 32 **********************/ 33 struct _lv_win_t { 34 lv_obj_t obj; 35 }; 36 37 38 /********************** 39 * GLOBAL PROTOTYPES 40 **********************/ 41 42 /********************** 43 * MACROS 44 **********************/ 45 46 #endif /* LV_USE_WIN */ 47 48 #ifdef __cplusplus 49 } /*extern "C"*/ 50 #endif 51 52 #endif /*LV_WIN_PRIVATE_H*/ 53