mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
bugfix(wifi): Add missing brackets in the C++ guard
Closes https://github.com/espressif/esp-idf/issues/14991
This commit is contained in:
parent
a4f233eacf
commit
8cb861890a
@ -76,4 +76,8 @@ void fixed_pkt_queue_unregister_dequeue(fixed_pkt_queue_t *queue);
|
|||||||
|
|
||||||
void fixed_pkt_queue_process(fixed_pkt_queue_t *queue);
|
void fixed_pkt_queue_process(fixed_pkt_queue_t *queue);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
*
|
*
|
||||||
* This is the public interface file for the simulatenous advanced
|
* This is the public interface file for the simultaneous advanced
|
||||||
* audio/video streaming (AV) source and sink of BTA, Broadcom's Bluetooth
|
* audio/video streaming (AV) source and sink of BTA, Broadcom's Bluetooth
|
||||||
* application layer for mobile phones.
|
* application layer for mobile phones.
|
||||||
*
|
*
|
||||||
@ -35,6 +35,10 @@
|
|||||||
|
|
||||||
#if (BTA_AR_INCLUDED == TRUE)
|
#if (BTA_AR_INCLUDED == TRUE)
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
** Constants and data types
|
** Constants and data types
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
@ -23,6 +23,9 @@
|
|||||||
#include "stack/a2d_sbc.h"
|
#include "stack/a2d_sbc.h"
|
||||||
|
|
||||||
#if (BTC_AV_INCLUDED == TRUE)
|
#if (BTC_AV_INCLUDED == TRUE)
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
** Constants and data types
|
** Constants and data types
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
@ -10,6 +10,9 @@
|
|||||||
#pragma message("esp_wpa2.h is deprecated. Use esp_eap_client.h instead.")
|
#pragma message("esp_wpa2.h is deprecated. Use esp_eap_client.h instead.")
|
||||||
|
|
||||||
#include "esp_eap_client.h"
|
#include "esp_eap_client.h"
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Enable wpa2 enterprise authentication.
|
* @brief Enable wpa2 enterprise authentication.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user