1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Extract HTTP request functionality.

This commit is contained in:
Bartosz Taudul
2020-09-12 12:46:00 +02:00
parent 5e43ad84b9
commit 80e0941520
5 changed files with 82 additions and 12 deletions
+8
View File
@@ -0,0 +1,8 @@
#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