Add C++ include guard to if.h (to fix linker errors in asio)

pull/9408/head
0xFEEDC0DE64 2022-06-30 00:08:30 +02:00 zatwierdzone przez David Cermak
rodzic d0fbe3a58e
commit 48c5b45e99
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -6,6 +6,10 @@
#ifndef _ESP_PLATFORM_NET_IF_H_
#define _ESP_PLATFORM_NET_IF_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "lwip/sockets.h"
#include "lwip/if_api.h"
@ -29,4 +33,8 @@ unsigned int if_nametoindex(const char *ifname);
char *if_indextoname(unsigned int ifindex, char *ifname);
#ifdef __cplusplus
}
#endif
#endif // _ESP_PLATFORM_NET_IF_H_