1 /*
2  * Copyright (C) 2019-2020 Alibaba Group Holding Limited
3  */
4 
5 #ifndef YOC_USERVICE_EVENT_H
6 #define YOC_USERVICE_EVENT_H
7 
8 #include <stdint.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 typedef void (*event_callback_t)(uint32_t event_id, const void *data, void *context);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 
20 #endif
21