0ad3017df7
1. move btif and A2DP source code from project directory to bluetooth directory; 2. some updates of audio source code;
17 lines
339 B
C
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
|