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.
|
|
// Copyright (c) 2001 Microsoft Corporation
//
// File: DecisionPage.h
//
// Synopsis: Declares the Decision Page for the CYS
// wizard. This page lets the user choose
// between the express and custom paths.
//
// History: 02/08/2001 JeffJon Created
#ifndef __CYS_DECISIONPAGE_H
#define __CYS_DECISIONPAGE_H
#include "CYSWizardPage.h"
class DecisionPage : public CYSWizardPage { public: // Constructor
DecisionPage();
// Destructor
virtual ~DecisionPage();
// Dialog overrides
virtual void OnInit();
virtual bool OnSetActive();
bool OnCommand( HWND windowFrom, unsigned controlIDFrom, unsigned code);
protected:
// CYSWizardPage overrides
virtual int Validate();
private:
// not defined: no copying allowed
DecisionPage(const DecisionPage&); const DecisionPage& operator=(const DecisionPage&);
};
#endif // __CYS_DECISIONPAGE_H
|