OVMS3-idf/examples/09_a2dp/components/esphttpd/include/httpd-platform.h
wangmengyang 0ad3017df7 component/bt: A2DP code original in example project moved to component/bt directory;
1. move btif and A2DP source code from project directory to bluetooth directory;
2. some updates of audio source code;
2016-12-26 17:40:28 +08:00

13 lines
343 B
C

#ifndef HTTPD_PLATFORM_H
#define HTTPD_PLATFORM_H
#include "httpd-com.h"
#define WEB_SERVER_TASK_PRIO 6
int httpdPlatSendData(ConnTypePtr conn, char *buff, int len);
void httpdPlatDisconnect(ConnTypePtr conn);
void httpdPlatDisableTimeout(ConnTypePtr conn);
void httpdPlatInit(int port, int maxConnCt);
int httpdPlatUninit(void) ;
#endif