mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
353 B
16 lines
353 B
#ifndef CGISERVICES_H
|
|
#define CGISERVICES_H
|
|
|
|
#include "httpd.h"
|
|
|
|
int cgiSystemSet(HttpdConnData *connData);
|
|
int cgiSystemInfo(HttpdConnData *connData);
|
|
|
|
void cgiServicesSNTPInit();
|
|
int cgiServicesInfo(HttpdConnData *connData);
|
|
int cgiServicesSet(HttpdConnData *connData);
|
|
|
|
extern char* rst_codes[7];
|
|
extern char* flash_maps[7];
|
|
|
|
#endif // CGISERVICES_H
|
|
|