httpd.h: added C++ guards

This commit is contained in:
goldsimon 2014-11-07 17:29:33 +01:00
parent 02895c1ce3
commit efb6f0bdb4
1 changed files with 8 additions and 0 deletions

View File

@ -40,6 +40,9 @@
#include "lwip/err.h"
#include "lwip/pbuf.h"
#ifdef __cplusplus
extern "C" {
#endif
/** Set this to 1 to support CGI */
#ifndef LWIP_HTTPD_CGI
@ -233,4 +236,9 @@ void httpd_post_data_recved(void *connection, u16_t recved_len);
void httpd_init(void);
#ifdef __cplusplus
}
#endif
#endif /* LWIP_HTTPD_H */