mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-24 02:03:53 +08:00
chore(lvgl): add the new lv_layouts.h header file (#3927)
This commit is contained in:
parent
9fe6ce9bae
commit
abdaa4c6af
4
lvgl.h
4
lvgl.h
@ -95,8 +95,8 @@ extern "C" {
|
||||
#include "src/libs/rlottie/lv_rlottie.h"
|
||||
#include "src/libs/ffmpeg/lv_ffmpeg.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"
|
||||
|
||||
|
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*/
|
Loading…
Reference in New Issue
Block a user