mirror of
https://github.com/wolfpld/tracy.git
synced 2026-09-15 14:54:23 +00:00
10 lines
228 B
C++
10 lines
228 B
C++
#ifndef __HTTPREQUEST_HPP__
|
|
#define __HTTPREQUEST_HPP__
|
|
|
|
#include <functional>
|
|
|
|
void HttpRequest( const char* server, const char* resource, int port, const std::function<void(int, char*)>& cb );
|
|
void HttpRequestAbort();
|
|
|
|
#endif
|