1 /** 2 * @file lv_vg_lite_decoder.h 3 * 4 */ 5 6 #ifndef LV_VG_LITE_DECODER_H 7 #define LV_VG_LITE_DECODER_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 17 #include "../lv_image_decoder.h" 18 19 #if LV_USE_DRAW_VG_LITE 20 21 /********************* 22 * DEFINES 23 *********************/ 24 25 /********************** 26 * TYPEDEFS 27 **********************/ 28 29 /********************** 30 * GLOBAL PROTOTYPES 31 **********************/ 32 33 void lv_vg_lite_decoder_init(void); 34 35 void lv_vg_lite_decoder_deinit(void); 36 37 /********************** 38 * MACROS 39 **********************/ 40 41 #endif /*LV_USE_DRAW_VG_LITE*/ 42 43 #ifdef __cplusplus 44 } /*extern "C"*/ 45 #endif 46 47 #endif /*LV_VG_LITE_DECODER_H*/ 48