tracy/profiler/src/HttpRequest.hpp

9 lines
196 B
C++
Raw Normal View History

2020-09-12 10:46:00 +00:00
#ifndef __HTTPREQUEST_HPP__
#define __HTTPREQUEST_HPP__
#include <functional>
void HttpRequest( const char* server, const char* resource, int port, std::function<void(int, char*)> cb );
#endif