TinWoo/include/util/curl.hpp

7 lines
311 B
C++
Raw Normal View History

2022-04-26 01:24:05 +01:00
#pragma once
#include <string>
namespace inst::curl {
bool downloadFile(const std::string ourUrl, const char *pagefilename, long timeout = 5000, bool writeProgress = false);
std::string downloadToBuffer (const std::string ourUrl, int firstRange = -1, int secondRange = -1, long timeout = 5000);
}