lv_png.h 588 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * @file lv_png.h
  3. *
  4. */
  5. #ifndef LV_PNG_H
  6. #define LV_PNG_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. /*********************
  11. * INCLUDES
  12. *********************/
  13. /*********************
  14. * DEFINES
  15. *********************/
  16. /**********************
  17. * TYPEDEFS
  18. **********************/
  19. /**********************
  20. * GLOBAL PROTOTYPES
  21. **********************/
  22. /**
  23. * Register the PNG decoder functions in LittlevGL
  24. */
  25. void lv_png_init(void);
  26. /**********************
  27. * MACROS
  28. **********************/
  29. #ifdef __cplusplus
  30. } /* extern "C" */
  31. #endif
  32. #endif /*LV_PNG_H*/