mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 12:34:37 +03:00
14 lines
346 B
C++
14 lines
346 B
C++
#pragma once
|
|
#include <QHostAddress>
|
|
#include <QObject>
|
|
#include <QString>
|
|
//
|
|
namespace Qv2ray::components::proxy
|
|
{
|
|
void ClearSystemProxy();
|
|
void SetSystemProxy(const QString &address, int http_port, int socks_port);
|
|
} // namespace Qv2ray::components::proxy
|
|
|
|
using namespace Qv2ray::components;
|
|
using namespace Qv2ray::components::proxy;
|