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