mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-22 19:53:07 +00:00
7 lines
No EOL
305 B
C++
Executable file
7 lines
No EOL
305 B
C++
Executable file
#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);
|
|
} |