| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /**
- * @file lv_png.h
- *
- */
- #ifndef LV_PNG_H
- #define LV_PNG_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*********************
- * INCLUDES
- *********************/
- /*********************
- * DEFINES
- *********************/
- /**********************
- * 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*/
|