ReactOS 0.4.15-dev-7842-g558ab78
CWebService.h
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Automatic Testing Utility
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: Class implementing the interface to the "testman" Web Service
5 * COPYRIGHT: Copyright 2009-2015 Colin Finck (colin@reactos.org)
6 */
7
9{
10private:
15
16 PCHAR DoRequest(const string& InputData);
17 void GetTestID(const char* TestType);
18 PCHAR GetSuiteID(const char* TestType, CTestInfo* TestInfo);
19
20public:
23
24 void Finish(const char* TestType);
25 void Submit(const char* TestType, CTestInfo* TestInfo);
26};
void GetTestID(const char *TestType)
HINTERNET m_hHTTP
Definition: CWebService.h:12
void Finish(const char *TestType)
HINTERNET m_hHTTPRequest
Definition: CWebService.h:13
void Submit(const char *TestType, CTestInfo *TestInfo)
PCHAR GetSuiteID(const char *TestType, CTestInfo *TestInfo)
PCHAR m_TestID
Definition: CWebService.h:14
HINTERNET m_hInet
Definition: CWebService.h:11
PCHAR DoRequest(const string &InputData)
Definition: CWebService.cpp:65
char * PCHAR
Definition: typedefs.h:51