Source code of Windows XP (NT5)
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
//
// dns client configuration page
//
// 12-22-97 sburns
#ifndef CONFIGUREDNSCLIENTPAGE_HPP_INCLUDED
#define CONFIGUREDNSCLIENTPAGE_HPP_INCLUDED
class ConfigureDnsClientPage : public DCPromoWizardPage { public:
ConfigureDnsClientPage();
protected:
virtual ~ConfigureDnsClientPage();
// Dialog overrides
virtual bool OnCommand( HWND windowFrom, unsigned controlIDFrom, unsigned code);
virtual void OnInit();
// PropertyPage overrides
virtual bool OnSetActive();
// DCPromoWizardPage overrides
virtual int Validate();
private:
// not defined; no copying allowed
ConfigureDnsClientPage(const ConfigureDnsClientPage&); const ConfigureDnsClientPage& operator=(const ConfigureDnsClientPage&); };
#endif // CONFIGUREDNSCLIENTPAGE_HPP_INCLUDED
|