1 /** 2 * @file lv_libs.h 3 * 4 */ 5 6 #ifndef LV_LIBS_H 7 #define LV_LIBS_H 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 /********************* 14 * INCLUDES 15 *********************/ 16 #include "bmp/lv_bmp.h" 17 #include "fsdrv/lv_fsdrv.h" 18 #include "png/lv_png.h" 19 #include "gif/lv_gif.h" 20 #include "qrcode/lv_qrcode.h" 21 #include "sjpg/lv_sjpg.h" 22 #include "freetype/lv_freetype.h" 23 #include "rlottie/lv_rlottie.h" 24 #include "ffmpeg/lv_ffmpeg.h" 25 #include "tiny_ttf/lv_tiny_ttf.h" 26 27 /********************* 28 * DEFINES 29 *********************/ 30 31 /********************** 32 * TYPEDEFS 33 **********************/ 34 35 /********************** 36 * GLOBAL PROTOTYPES 37 **********************/ 38 39 /********************** 40 * MACROS 41 **********************/ 42 43 #ifdef __cplusplus 44 } /*extern "C"*/ 45 #endif 46 47 #endif /*LV_LIBS_H*/ 48