mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
9 lines
203 B
C++
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
|