mirror of
https://github.com/lvgl/lvgl.git
synced 2026-08-17 18:22:42 +08:00
21 lines
277 B
C
21 lines
277 B
C
/**
|
|
* @file lv_example_split.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_EXAMPLE_SPLIT_H
|
|
#define LV_EXAMPLE_SPLIT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void lv_example_split(void);
|
|
void lv_example_split_vertical(void);
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_EXAMPLE_SPLIT_H*/
|