1
6
7
8
9
10
11
12
13
14
18
19
20
27
28
29
35
36
37
38
39
/* ... */
#pragma once
#include "esp_eth_driver.h"
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
typedef struct esp_eth_netif_glue_t* esp_eth_netif_glue_handle_t;
/* ... */
esp_eth_netif_glue_handle_t esp_eth_new_netif_glue(esp_eth_handle_t eth_hdl);
/* ... */
esp_err_t esp_eth_del_netif_glue(esp_eth_netif_glue_handle_t eth_netif_glue);
#ifdef __cplusplus
}{...}
#endif