chore(lvgl): add the new lv_layouts.h header file (#3927)
This commit is contained in:
4
lvgl.h
4
lvgl.h
@@ -95,8 +95,8 @@ extern "C" {
|
|||||||
#include "src/libs/rlottie/lv_rlottie.h"
|
#include "src/libs/rlottie/lv_rlottie.h"
|
||||||
#include "src/libs/ffmpeg/lv_ffmpeg.h"
|
#include "src/libs/ffmpeg/lv_ffmpeg.h"
|
||||||
#include "src/libs/tiny_ttf/lv_tiny_ttf.h"
|
#include "src/libs/tiny_ttf/lv_tiny_ttf.h"
|
||||||
#include "src/layouts/flex/lv_flex.h"
|
|
||||||
#include "src/layouts/grid/lv_grid.h"
|
#include "src/layouts/lv_layouts.h"
|
||||||
|
|
||||||
#include "src/draw/lv_draw.h"
|
#include "src/draw/lv_draw.h"
|
||||||
|
|
||||||
|
|||||||
43
src/layouts/lv_layouts.h
Normal file
43
src/layouts/lv_layouts.h
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
/**
|
||||||
|
* @file lv_layouts.h
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef LV_LAYOUTS_H
|
||||||
|
#define LV_LAYOUTS_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*********************
|
||||||
|
* INCLUDES
|
||||||
|
*********************/
|
||||||
|
#if LV_USE_FLEX
|
||||||
|
#include "flex/lv_flex.h"
|
||||||
|
#endif /* LV_USE_FLEX */
|
||||||
|
#if LV_USE_GRID
|
||||||
|
#include "grid/lv_grid.h"
|
||||||
|
#endif /* LV_USE_GRID */
|
||||||
|
|
||||||
|
/*********************
|
||||||
|
* DEFINES
|
||||||
|
*********************/
|
||||||
|
|
||||||
|
/**********************
|
||||||
|
* TYPEDEFS
|
||||||
|
**********************/
|
||||||
|
|
||||||
|
/**********************
|
||||||
|
* GLOBAL PROTOTYPES
|
||||||
|
**********************/
|
||||||
|
|
||||||
|
/**********************
|
||||||
|
* MACROS
|
||||||
|
**********************/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} /*extern "C"*/
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /*LV_LAYOUTS_H*/
|
||||||
Reference in New Issue
Block a user