#49 Adding support for C++

This commit is contained in:
justinkim
2018-09-10 09:07:08 +09:00
parent 28e8a16b54
commit c69d27b875
23 changed files with 189 additions and 1 deletions

View File

@ -45,6 +45,10 @@
#ifndef _DHCP_H_
#define _DHCP_H_
#ifdef __cplusplus
extern <EFBFBD><EFBFBD>C<EFBFBD><EFBFBD> {
#endif
/*
* @brief
* @details If you want to display debug & procssing message, Define _DHCP_DEBUG_
@ -149,4 +153,8 @@ void getDNSfromDHCP(uint8_t* ip);
*/
uint32_t getDHCPLeasetime(void);
#ifdef __cplusplus
}
#endif
#endif /* _DHCP_H_ */