WindowsXP-SP1/admin/dcpromo/exe/unattendsplashdialog.hpp
2020-09-30 16:53:49 +02:00

53 lines
889 B
C++

// Copyright (C) 1998 Microsoft Corporation
//
// Splash screen for unattended mode
//
// 10-1-98 sburns
#ifndef UNATTENDSPLASHDIALOG_HPP_INCLUDED
#define UNATTENDSPLASHDIALOG_HPP_INCLUDED
class UnattendSplashDialog : public Dialog
{
public:
UnattendSplashDialog();
virtual ~UnattendSplashDialog();
// Cause the window to destroy itself and delete itself (call delete on
// the this pointer.
void
SelfDestruct();
// Dialog overrides
virtual
void
OnInit();
virtual
bool
OnMessage(
UINT message,
WPARAM wparam,
LPARAM lparam);
private:
// not defined; no copying allowed
UnattendSplashDialog(const UnattendSplashDialog&);
const UnattendSplashDialog& operator=(const UnattendSplashDialog&);
};
#endif // UNATTENDSPLASHDIALOG_HPP_INCLUDED