Files

22 lines
702 B
C++

/*
* PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Class implementing the WinInet version of the interface to the "testman" Web Service
* COPYRIGHT: Copyright 2009-2015 Colin Finck <[email protected]>
* Copyright 2025 Mark Jansen <[email protected]>
*/
class CWebServiceWinInet : public CWebService
{
private:
HINTERNET m_hInet;
HINTERNET m_hHTTP;
HINTERNET m_hHTTPRequest;
PCHAR DoRequest(const char* Hostname, INTERNET_PORT Port, const char* ServerFile, const string& InputData) override;
public:
CWebServiceWinInet();
virtual ~CWebServiceWinInet();
};