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
//
// auto config dns page
//
// 3-17-98 sburns
#ifndef AUTOCONFIGUREDNSPAGE_HPP_INCLUDED
#define AUTOCONFIGUREDNSPAGE_HPP_INCLUDED
class AutoConfigureDnsPage : public DCPromoWizardPage { public:
AutoConfigureDnsPage();
protected:
virtual ~AutoConfigureDnsPage();
// Dialog overrides
virtual void OnInit();
// PropertyPage overrides
virtual bool OnSetActive();
// WizardPage overrides
virtual bool OnWizBack();
// DCPromoWizardPage overrides
virtual int Validate();
private:
// not defined; no copying allowed
AutoConfigureDnsPage(const AutoConfigureDnsPage&); const AutoConfigureDnsPage& operator=(const AutoConfigureDnsPage&); };
#endif // AUTOCONFIGUREDNSPAGE_HPP_INCLUDED
|