WindowsXP-SP1/admin/dcpromo/exe/newsitepage.hpp
2020-09-30 16:53:49 +02:00

62 lines
859 B
C++

// Copyright (C) 1997 Microsoft Corporation
//
// new site page
//
// 1-6-98 sburns
#ifndef NEWSITEPAGE_HPP_INCLUDED
#define NEWSITEPAGE_HPP_INCLUDED
class NewSitePage : public DCPromoWizardPage
{
public:
NewSitePage();
protected:
virtual ~NewSitePage();
// 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:
void
Enable();
// not defined; no copying allowed
NewSitePage(const NewSitePage&);
const NewSitePage& operator=(const NewSitePage&);
};
#endif // NEWSITEPAGE_HPP_INCLUDED