1 /** 2 * @file lvgl_private.h 3 * This file exists only to be compatible with Arduino's library structure 4 */ 5 6 #ifndef LVGL_PRIVATE_SRC_H 7 #define LVGL_PRIVATE_SRC_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 #include "../lvgl_private.h" 17 18 /********************* 19 * DEFINES 20 *********************/ 21 22 /********************** 23 * TYPEDEFS 24 **********************/ 25 26 /********************** 27 * GLOBAL PROTOTYPES 28 **********************/ 29 30 /********************** 31 * MACROS 32 **********************/ 33 34 #ifdef __cplusplus 35 } /*extern "C"*/ 36 #endif 37 38 #endif /* LVGL_PRIVATE_SRC_H */ 39