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.
55 lines
748 B
55 lines
748 B
// 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
|