OVMS3-idf/examples/09_a2dp/components/esphttpd/include/httpd-com.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

17 lines
339 B
C

#ifndef HTTPD_COM_H
#define HTTPD_COM_H
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include "httpd-com.h"
typedef struct RtosConnType RtosConnType;
typedef RtosConnType* ConnTypePtr;
#define httpd_printf(fmt, ...) do { \
ets_printf(fmt, ##__VA_ARGS__); \
} while(0)
#endif