1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

Extern C blocks (#1352) (#4044)

* Add extern C guard blocks to SDK header files #1352

* fixed some extern C blocks in core and libraries
This commit is contained in:
Develo
2017-12-30 02:03:26 -03:00
committed by GitHub
parent 1cd4a00cff
commit a2d16f38d4
21 changed files with 165 additions and 11 deletions

View File

@ -25,6 +25,10 @@
#ifndef __SMARTCONFIG_H__
#define __SMARTCONFIG_H__
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
SC_STATUS_WAIT = 0,
SC_STATUS_FIND_CHANNEL,
@ -47,4 +51,9 @@ bool smartconfig_stop(void);
bool esptouch_set_timeout(uint8 time_s); //15s~255s, offset:45s
bool smartconfig_set_type(sc_type type);
#ifdef __cplusplus
}
#endif
#endif