mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 22:00:10 +01:00
38 lines
582 B
C++
38 lines
582 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <QObject>
|
|
|
|
#ifndef CURL_STATICLIB
|
|
#define CURL_STATICLIB
|
|
#endif
|
|
#include <curl/curl.h>
|
|
|
|
namespace rpcs3::curl
|
|
{
|
|
inline bool g_curl_verbose = false;
|
|
|
|
class curl_handle : public QObject
|
|
{
|
|
public:
|
|
explicit curl_handle(QObject* parent = nullptr);
|
|
~curl_handle();
|
|
|
|
CURL* get_curl() const;
|
|
|
|
operator CURL*() const
|
|
{
|
|
return get_curl();
|
|
}
|
|
|
|
void reset_error_buffer();
|
|
std::string get_verbose_error(CURLcode code);
|
|
|
|
private:
|
|
CURL* m_curl = nullptr;
|
|
bool m_uses_error_buffer = false;
|
|
std::array<char, CURL_ERROR_SIZE> m_error_buffer;
|
|
};
|
|
|
|
}
|