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.
 
 
 
 
 
 

62 lines
811 B

// Copyright (C) 1997 Microsoft Corporation
//
// pick site page
//
// 12-22-97 sburns
#ifndef PICKSITEPAGE_HPP_INCLUDED
#define PICKSITEPAGE_HPP_INCLUDED
class PickSitePage : public DCPromoWizardPage
{
public:
PickSitePage();
protected:
virtual ~PickSitePage();
// 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
PickSitePage(const PickSitePage&);
const PickSitePage& operator=(const PickSitePage&);
};
#endif // PICKSITEPAGE_HPP_INCLUDED