1 /** 2 * @file lv_monkey_private.h 3 * 4 */ 5 6 #ifndef LV_MONKEY_PRIVATE_H 7 #define LV_MONKEY_PRIVATE_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 17 #include "lv_monkey.h" 18 19 #if LV_USE_MONKEY != 0 20 21 /********************* 22 * DEFINES 23 *********************/ 24 25 /********************** 26 * TYPEDEFS 27 **********************/ 28 29 /********************** 30 * GLOBAL PROTOTYPES 31 **********************/ 32 33 /********************** 34 * MACROS 35 **********************/ 36 37 #endif /* LV_USE_MONKEY != 0 */ 38 39 #ifdef __cplusplus 40 } /*extern "C"*/ 41 #endif 42 43 #endif /*LV_MONKEY_PRIVATE_H*/ 44