mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
44 lines
672 B
Plaintext
44 lines
672 B
Plaintext
|
/**
|
||
|
* @file lv_os_custom.h
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef LV_OS_CUSTOM_H
|
||
|
#define LV_OS_CUSTOM_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*********************
|
||
|
* INCLUDES
|
||
|
*********************/
|
||
|
#if LV_USE_OS == LV_OS_CUSTOM
|
||
|
|
||
|
/*********************
|
||
|
* DEFINES
|
||
|
*********************/
|
||
|
|
||
|
/**********************
|
||
|
* TYPEDEFS
|
||
|
**********************/
|
||
|
typedef int lv_mutex_t;
|
||
|
typedef int lv_thread_t;
|
||
|
typedef int lv_thread_sync_t;
|
||
|
|
||
|
/**********************
|
||
|
* GLOBAL PROTOTYPES
|
||
|
**********************/
|
||
|
|
||
|
/**********************
|
||
|
* MACROS
|
||
|
**********************/
|
||
|
|
||
|
#endif /*LV_USE_OS == LV_OS_CUSTOM*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /*extern "C"*/
|
||
|
#endif
|
||
|
|
||
|
#endif /*LV_OS_CUSTOM_H*/
|