mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:02:59 +00:00

-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
17 lines
378 B
C++
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();
|
|
};
|