Awoo-Installer/include/util/curl.hpp

7 lines
305 B
C++
Raw Normal View History

2019-11-29 08:23:11 +00:00
#pragma once
2019-10-17 20:20:40 +00:00
#include <string>
namespace inst::curl {
2019-12-18 03:25:21 +00:00
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);
2019-10-17 20:20:40 +00:00
}