mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-28 07:03:00 +08:00
43 lines
718 B
C
43 lines
718 B
C
/**
|
|
* @file lv_example_event.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_EXAMPLE_EVENT_H
|
|
#define LV_EXAMPLE_EVENT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
void lv_example_event_click(void);
|
|
void lv_example_event_streak(void);
|
|
void lv_example_event_button(void);
|
|
void lv_example_event_bubble(void);
|
|
void lv_example_event_draw(void);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /*LV_EXAMPLE_EVENT_H*/
|