mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00
wifi: fixed missing c++ guards
Closes https://github.com/espressif/esp-idf/issues/4497
This commit is contained in:
@@ -15,6 +15,10 @@
|
||||
#ifndef _ESP_WIFI_DEFAULT_H
|
||||
#define _ESP_WIFI_DEFAULT_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Attaches wifi station interface to supplied netif
|
||||
*
|
||||
@@ -95,4 +99,8 @@ esp_netif_t* esp_netif_create_default_wifi_sta(void);
|
||||
*/
|
||||
esp_err_t esp_netif_create_default_wifi_mesh_netifs(esp_netif_t **p_netif_sta, esp_netif_t **p_netif_ap);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif //_ESP_WIFI_DEFAULT_H
|
||||
|
Reference in New Issue
Block a user