mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
40 lines
674 B
C
40 lines
674 B
C
/**
|
|
* @file lv_app_visual.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_APP_VISUAL_H
|
|
#define LV_APP_VISUAL_H
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "lvgl/lv_app/lv_app.h"
|
|
|
|
#if LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
typedef struct
|
|
{
|
|
|
|
}lv_app_visual_conf_t;
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
const lv_app_dsc_t * lv_app_visual_init(void);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#endif /*LV_APP_ENABLE != 0 && USE_LV_APP_VISUAL != 0*/
|
|
|
|
#endif /* LV_APP_VISUAL_H */
|