mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
a12d029ec0
This reverts commit 9ff3adb7d7
.
84 lines
2.1 KiB
C++
84 lines
2.1 KiB
C++
/*
|
|
* PROJECT: ReactOS Automatic Testing Utility
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Main header file
|
|
* COPYRIGHT: Copyright 2009-2015 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
#ifndef _ROSAUTOTEST_H_
|
|
#define _ROSAUTOTEST_H_
|
|
|
|
/* General includes */
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <iomanip>
|
|
|
|
using namespace std;
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winnls.h>
|
|
#include <reason.h>
|
|
#include <shlobj.h>
|
|
#include <wininet.h>
|
|
#include <winreg.h>
|
|
|
|
#include <ndk/rtlfuncs.h>
|
|
#include <reactos/buildno.h>
|
|
|
|
/* Class includes */
|
|
#include "auto_array_ptr.h"
|
|
#include "CConfiguration.h"
|
|
#include "CFatalException.h"
|
|
#include "CInvalidParameterException.h"
|
|
#include "CPipe.h"
|
|
#include "CProcess.h"
|
|
#include "CPipedProcess.h"
|
|
#include "CSimpleException.h"
|
|
#include "CTestException.h"
|
|
#include "CTestInfo.h"
|
|
#include "CTest.h"
|
|
#include "CTestList.h"
|
|
#include "CJournaledTestList.h"
|
|
#include "CVirtualTestList.h"
|
|
#include "CWebService.h"
|
|
#include "CWineTest.h"
|
|
|
|
#include <rosautotestmsg.h>
|
|
|
|
/* Useful macros */
|
|
#define EXCEPTION(Message) throw CSimpleException(Message)
|
|
#define FATAL(Message) throw CFatalException(__FILE__, __LINE__, Message)
|
|
#define SSEXCEPTION throw CSimpleException(ss.str())
|
|
#define TESTEXCEPTION(Message) throw CTestException(Message)
|
|
|
|
/* main.c */
|
|
extern CConfiguration Configuration;
|
|
|
|
/* misc.c */
|
|
VOID FreeLogs(VOID);
|
|
VOID InitLogs(VOID);
|
|
extern HANDLE hLog;
|
|
|
|
/* shutdown.c */
|
|
bool ShutdownSystem();
|
|
|
|
/* tools.c */
|
|
wstring AsciiToUnicode(const char* AsciiString);
|
|
wstring AsciiToUnicode(const string& AsciiString);
|
|
string EscapeString(const char* Input);
|
|
string EscapeString(const string& Input);
|
|
string GetINIValue(PCWCH AppName, PCWCH KeyName, PCWCH FileName);
|
|
bool IsNumber(const char* Input);
|
|
string StringOut(const string& String, bool forcePrint = true);
|
|
string UnicodeToAscii(PCWSTR UnicodeString);
|
|
string UnicodeToAscii(const wstring& UnicodeString);
|
|
|
|
#endif /* _ROSAUTOTEST_H_ */
|