mirror of
https://github.com/slendidev/lunar.git
synced 2026-08-06 17:19:39 +03: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
|