mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
f09c04b935
Co-authored-by: 100ask <team100ask@outlook.com> Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
46 lines
870 B
C
46 lines
870 B
C
/**
|
|
* @file lv_example_others.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_EXAMPLE_OTHERS_H
|
|
#define LV_EXAMPLE_OTHERS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "file_explorer/lv_example_file_explorer.h"
|
|
#include "fragment/lv_example_fragment.h"
|
|
#include "gridnav/lv_example_gridnav.h"
|
|
#include "ime/lv_example_ime_pinyin.h"
|
|
#include "imgfont/lv_example_imgfont.h"
|
|
#include "monkey/lv_example_monkey.h"
|
|
#include "msg/lv_example_msg.h"
|
|
#include "snapshot/lv_example_snapshot.h"
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_EXAMPLE_OTHERS_H*/
|