1 /**
2  * @file lv_example_libs.h
3  *
4  */
5 
6 #ifndef LV_EXAMPLE_LIBS_H
7 #define LV_EXAMPLE_LIBS_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "barcode/lv_example_barcode.h"
17 #include "bmp/lv_example_bmp.h"
18 #include "ffmpeg/lv_example_ffmpeg.h"
19 #include "freetype/lv_example_freetype.h"
20 #include "gif/lv_example_gif.h"
21 #include "lodepng/lv_example_lodepng.h"
22 #include "libpng/lv_example_libpng.h"
23 #include "qrcode/lv_example_qrcode.h"
24 #include "rlottie/lv_example_rlottie.h"
25 #include "tjpgd/lv_example_tjpgd.h"
26 #include "libjpeg_turbo/lv_example_libjpeg_turbo.h"
27 #include "tiny_ttf/lv_example_tiny_ttf.h"
28 #include "svg/lv_example_svg.h"
29 
30 /*********************
31  *      DEFINES
32  *********************/
33 
34 /**********************
35  *      TYPEDEFS
36  **********************/
37 
38 /**********************
39  * GLOBAL PROTOTYPES
40  **********************/
41 
42 /**********************
43  *      MACROS
44  **********************/
45 
46 #ifdef __cplusplus
47 } /*extern "C"*/
48 #endif
49 
50 #endif /*LV_EXAMPLE_LIBS_H*/
51