Files
base/middleware/littlevgl/lvgl_sdrv/decoder/lodepng/lv_png.h
2025-11-07 09:57:14 +08:00

46 lines
662 B
C

/**
* @file lv_png.h
*
*/
#ifndef LV_PNG_H
#define LV_PNG_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
/*********************
* DEFINES
*********************/
#ifndef LV_PNG_USE_LV_FILESYSTEM
#define LV_PNG_USE_LV_FILESYSTEM 1
#endif
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**
* Register the PNG decoder functions in LittlevGL
*/
void lv_png_init(void);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*LV_PNG_H*/