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.
59 lines
974 B
59 lines
974 B
// 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
|
|
OnNotify(
|
|
HWND windowFrom,
|
|
UINT_PTR controlIDFrom,
|
|
UINT code,
|
|
LPARAM lParam);
|
|
|
|
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
|