Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// 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
|