httpd.h 281 B

1234567891011121314
  1. #ifndef _HTTPD_H
  2. #include "common.h"
  3. #include <esp_http_server.h>
  4. extern_c void my_httpd_start(void);
  5. extern_c void my_httpd_stop(void);
  6. extern_c esp_err_t httpd_firmware_upgrade_handler(httpd_req_t *);
  7. typedef int (*read_func_t)(void *pvt, void *buf, size_t buflen);
  8. #endif