mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
47 lines
977 B
C
47 lines
977 B
C
/**
|
|
* @file lv_test_conf.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_TEST_CONF_H
|
|
#define LV_TEST_CONF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
typedef int16_t lv_coord_t;
|
|
typedef void * lv_disp_drv_user_data_t; /*Type of user data in the display driver*/
|
|
typedef void * lv_indev_drv_user_data_t; /*Type of user data in the input device driver*/
|
|
typedef void * lv_font_user_data_t;
|
|
typedef void * lv_obj_user_data_t;
|
|
typedef void * lv_anim_user_data_t;
|
|
typedef void * lv_group_user_data_t;
|
|
typedef void * lv_fs_drv_user_data_t;
|
|
typedef void * lv_img_decoder_user_data_t;
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /*LV_TEST_CONF_H*/
|