1
6
7
8
9
13
14
15
16
17
18
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
41
42
43
48
49
50
51
52
53
54
/* ... */
#ifndef __ESP_TLS_ERROR_CAPTURE_INTERNAL_H__
#define __ESP_TLS_ERROR_CAPTURE_INTERNAL_H__
/* ... */
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
#define ESP_INT_EVENT_TRACKER_CAPTURE(h, type, code) esp_tls_internal_event_tracker_capture(h, type, code)
/* ... */
void esp_tls_internal_event_tracker_capture(esp_tls_error_handle_t h, uint32_t type, int code);
/* ... */
esp_tls_error_handle_t esp_tls_internal_event_tracker_create(void);
/* ... */
void esp_tls_internal_event_tracker_destroy(esp_tls_error_handle_t h);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif