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