1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
41
42
43
44
45
46
47
/* ... */
#ifndef ESP_EVENT_PRIVATE_H_
#define ESP_EVENT_PRIVATE_H_
#include <stdbool.h>
#include "esp_event.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
bool esp_event_is_handler_registered(esp_event_loop_handle_t event_loop, esp_event_base_t event_base, int32_t event_id, esp_event_handler_t event_handler);
/* ... */
esp_err_t esp_event_loop_deinit(void);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif