1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00
tracy/profiler/src/HttpRequest.hpp
2023-04-16 16:44:18 +02:00

9 lines
203 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 );
#endif