67 lines
994 B
C++
67 lines
994 B
C++
// Copyright (c) 1997-2001 Microsoft Corporation
|
|
//
|
|
// File: WelcomePage.h
|
|
//
|
|
// Synopsis: Declares the Welcome Page for the CYS
|
|
// wizard
|
|
//
|
|
// History: 02/03/2001 JeffJon Created
|
|
|
|
#ifndef __CYS_WELCOMEPAGE_H
|
|
#define __CYS_WELCOMEPAGE_H
|
|
|
|
#include "CYSWizardPage.h"
|
|
|
|
|
|
class WelcomePage : public CYSWizardPage
|
|
{
|
|
public:
|
|
|
|
// Constructor
|
|
|
|
WelcomePage();
|
|
|
|
// Destructor
|
|
|
|
virtual
|
|
~WelcomePage();
|
|
|
|
|
|
// Dialog overrides
|
|
|
|
virtual
|
|
void
|
|
OnInit();
|
|
|
|
// PropertyPage overrides
|
|
|
|
virtual
|
|
bool
|
|
OnSetActive();
|
|
|
|
protected:
|
|
|
|
virtual
|
|
int
|
|
Validate();
|
|
|
|
|
|
void
|
|
TerminalServerPostBoot(bool installed = true);
|
|
|
|
void
|
|
FirstServerPostBoot();
|
|
|
|
void
|
|
DCPromoPostBoot();
|
|
|
|
private:
|
|
|
|
// not defined: no copying allowed
|
|
WelcomePage(const WelcomePage&);
|
|
const WelcomePage& operator=(const WelcomePage&);
|
|
|
|
};
|
|
|
|
#endif // __CYS_WELCOMEPAGE_H
|