09b8b8087c
* libesphttpd: added extras and example * Added "heatshrink" as a submodule * Updated libesphttpd * Updated libesphttpd * Trying to fix the commit id * Updated libesphttpd * Added zlib1g-dev package * Use native gcc to build mkespfsimage and mkupgimg * Added NS and GW for DHCP server configuration
10 lines
234 B
C
10 lines
234 B
C
#ifndef CGI_H
|
|
#define CGI_H
|
|
|
|
#include <libesphttpd/httpd.h>
|
|
|
|
int cgiLed(HttpdConnData *connData);
|
|
int tplLed(HttpdConnData *connData, char *token, void **arg);
|
|
int tplCounter(HttpdConnData *connData, char *token, void **arg);
|
|
|
|
#endif
|