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) 1997 Microsoft Corporation
//
// downlevel RAS server fixup page
//
// 11-23-98 sburns
#ifndef RASFIXUP_HPP_INCLUDED
#define RASFIXUP_HPP_INCLUDED
#include "page.hpp"
class RASFixupPage : public DCPromoWizardPage { public:
RASFixupPage();
protected:
virtual ~RASFixupPage();
// Dialog overrides
virtual void OnInit();
// PropertyPage overrides
virtual bool OnSetActive();
// DCPromoWizardPage overrides
virtual int Validate();
private:
// not defined; no copying allowed
RASFixupPage(const RASFixupPage&); const RASFixupPage& operator=(const RASFixupPage&); };
#endif // RASFIXUP_HPP_INCLUDED
|