Leaked source code of windows server 2003
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.
 
 
 
 
 
 

56 lines
741 B

// Copyright (c) 1997-1999 Microsoft Corporation
//
// demote page
//
// 1-20-98 sburns
#ifndef DEMOTE_HPP_INCLUDED
#define DEMOTE_HPP_INCLUDED
class DemotePage : public DCPromoWizardPage
{
public:
DemotePage();
protected:
virtual ~DemotePage();
// Dialog overrides
virtual
void
OnInit();
// PropertyPage overrides
virtual
bool
OnSetActive();
// DCPromoWizardPage overrides
virtual
int
Validate();
private:
// not defined; no copying allowed
DemotePage(const DemotePage&);
const DemotePage& operator=(const DemotePage&);
void
SetBulletFont();
HFONT bulletFont;
};
#endif // DEMOTE_HPP_INCLUDED