Files
csgo2_tiny_server_plugin_sy…/csgo2/Server.h

10 lines
368 B
C
Raw Normal View History

2023-10-09 16:41:40 +08:00
#pragma once
#include "head.h"
#include "libcurl/libcurl.h"
namespace Server {
CURLcode HttpPost(const std::string& strUrl, std::string header,
std::string szJson, std::string& strResponse, int nTimeout);
CURLcode HttpGet(const std::string& strUrl, std::string& strResponse,
std::string header, int nTimeout);
} // namespace Server