You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
857 B
C++
23 lines
857 B
C++
//-----------------------------------------------------------------------------
|
|
#ifndef ProxyResolverContextH
|
|
#define ProxyResolverContextH ProxyResolverContextH
|
|
//-----------------------------------------------------------------------------
|
|
#include <string>
|
|
|
|
//-----------------------------------------------------------------------------
|
|
class ProxyResolverContext
|
|
//-----------------------------------------------------------------------------
|
|
{
|
|
struct ProxyResolverContextImpl* pImpl_;
|
|
public:
|
|
explicit ProxyResolverContext( const std::wstring& userAgent = std::wstring(), const std::wstring& url = std::wstring() );
|
|
~ProxyResolverContext();
|
|
|
|
std::wstring GetProxy( unsigned int index ) const;
|
|
unsigned int GetProxyPort( unsigned int index ) const;
|
|
};
|
|
|
|
bool IsCurrentUserLocalAdministrator( void );
|
|
|
|
#endif // ProxyResolverContextH
|