mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
44 lines
648 B
C
44 lines
648 B
C
|
/**
|
||
|
* @file lv_api_map.h
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef LV_API_MAP_H
|
||
|
#define LV_API_MAP_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*********************
|
||
|
* INCLUDES
|
||
|
*********************/
|
||
|
|
||
|
/*********************
|
||
|
* DEFINES
|
||
|
*********************/
|
||
|
|
||
|
/**********************
|
||
|
* TYPEDEFS
|
||
|
**********************/
|
||
|
|
||
|
/**********************
|
||
|
* GLOBAL PROTOTYPES
|
||
|
**********************/
|
||
|
|
||
|
/*---------------------
|
||
|
* V6.0 COMPATIBILITY
|
||
|
*--------------------*/
|
||
|
#define lv_chart_get_point_count lv_chart_get_point_cnt
|
||
|
|
||
|
|
||
|
/**********************
|
||
|
* MACROS
|
||
|
**********************/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern "C" */
|
||
|
#endif
|
||
|
|
||
|
#endif /*LV_API_MAP_H*/
|