mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-26 10:15:22 -05:00
11 lines
253 B
C++
11 lines
253 B
C++
#ifndef CURLFUNCS_H
|
|
#define CURLFUNCS_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
std::string getJSONURL(std::vector<std::string> *headers, const std::string& _url);
|
|
bool getBinURL(std::vector<uint8_t> *out, const std::string& _url);
|
|
|
|
#endif // CURLFUNCS_H
|