reactos/rostests/rosautotest/CDialogSurpass.h
Giannis Adamopoulos ff9649d7d7 [rosautotest]
-Implement closing any dialog that shows and stays visible for some time. This way rosautotest can now continue if a test application crashes or asserts.

svn path=/trunk/; revision=50381
2011-01-13 09:58:04 +00:00

17 lines
378 B
C++

/*
* PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
* PURPOSE: Class for managing all the configuration parameters
* COPYRIGHT: Copyright 2011
*/
class CDialogSurpass
{
private:
DWORD ThreadID;
HANDLE hThread;
public:
CDialogSurpass();
~CDialogSurpass();
};