blob: 78fc859bfcb7c1f469793ca97a6445fc7354a966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include <string>
#include <vector>
namespace QuickMedia {
enum class DownloadResult {
OK,
ERR,
NET_ERR
};
struct CommandArg {
std::string option;
std::string value;
};
struct FormData {
std::string key;
std::string value;
};
DownloadResult download_to_string(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args = {}, bool use_tor = false);
std::vector<CommandArg> create_command_args_from_form_data(const std::vector<FormData> &form_data);
}
|