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.
61 lines
963 B
61 lines
963 B
// Copyright (c) 2001 Microsoft Corporation
|
|
//
|
|
// forced demotion page
|
|
// NTRAID#NTBUG9-496409-2001/11/29-sburns
|
|
//
|
|
// 29 Nov 2001 sburns
|
|
|
|
|
|
|
|
#ifndef FORCEDDEMOTION_HPP_INCLUDED
|
|
#define FORCEDDEMOTION_HPP_INCLUDED
|
|
|
|
|
|
|
|
class ForcedDemotionPage : public DCPromoWizardPage
|
|
{
|
|
public:
|
|
|
|
ForcedDemotionPage();
|
|
|
|
protected:
|
|
|
|
virtual ~ForcedDemotionPage();
|
|
|
|
// Dialog overrides
|
|
|
|
virtual
|
|
void
|
|
OnInit();
|
|
|
|
virtual
|
|
bool
|
|
OnNotify(
|
|
HWND windowFrom,
|
|
UINT_PTR controlIDFrom,
|
|
UINT code,
|
|
LPARAM lParam);
|
|
|
|
// PropertyPage overrides
|
|
|
|
virtual
|
|
bool
|
|
OnSetActive();
|
|
|
|
// DCPromoWizardPage overrides
|
|
|
|
virtual
|
|
int
|
|
Validate();
|
|
|
|
private:
|
|
|
|
// not defined; no copying allowed
|
|
|
|
ForcedDemotionPage(const ForcedDemotionPage&);
|
|
const ForcedDemotionPage& operator=(const ForcedDemotionPage&);
|
|
};
|
|
|
|
|
|
|
|
#endif // FORCEDDEMOTION_HPP_INCLUDED
|