Leaked source code of windows server 2003
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.
 
 
 
 
 
 

54 lines
938 B

// 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(int splashMessageResId);
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:
int messageResId;
// not defined; no copying allowed
UnattendSplashDialog(const UnattendSplashDialog&);
const UnattendSplashDialog& operator=(const UnattendSplashDialog&);
};
#endif // UNATTENDSPLASHDIALOG_HPP_INCLUDED