1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/examples/lv_examples.h

49 lines
887 B
C
Raw Normal View History

2021-02-08 09:53:03 +01:00
/**
2021-02-19 18:19:32 +01:00
* @file lv_examples.h
2021-02-08 09:53:03 +01:00
*
*/
2021-02-19 18:19:32 +01:00
#ifndef LV_EXAMPLES_H
#define LV_EXAMPLES_H
2021-02-08 09:53:03 +01:00
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
2021-04-08 13:07:48 +02:00
#include "../lvgl.h"
#include "anim/lv_example_anim.h"
#include "event/lv_example_event.h"
2021-02-19 18:19:32 +01:00
#include "get_started/lv_example_get_started.h"
#include "layouts/lv_example_layout.h"
#include "libs/lv_example_libs.h"
#include "others/lv_example_others.h"
#include "scroll/lv_example_scroll.h"
2021-05-27 11:50:04 +02:00
#include "styles/lv_example_style.h"
#include "widgets/lv_example_widgets.h"
2021-02-08 09:53:03 +01:00
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /*extern "C"*/
2021-02-08 09:53:03 +01:00
#endif
2021-02-19 18:19:32 +01:00
#endif /*LV_EXAMPLES_H*/