1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
25
26
27
32
33
34
42
43
44
50
51
52
53
54
55
56
/* ... */
#pragma once
#include "esp_log.h"
#include "esp_err.h"
#include "esp_wifi_types.h"
#include "esp_netif.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIG_ESP_WIFI_NAN_ENABLE
/* ... */
void esp_nan_app_init(void);
/* ... */
void esp_nan_app_deinit(void);
/* ... */
void esp_nan_action_start(esp_netif_t *nan_netif);
/* ... */
void esp_nan_action_stop(void);
/* ... */
#endif
#ifdef __cplusplus
}{...}
#endif