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.

55 lines
741 B

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. //
  3. // demote page
  4. //
  5. // 1-20-98 sburns
  6. #ifndef DEMOTE_HPP_INCLUDED
  7. #define DEMOTE_HPP_INCLUDED
  8. class DemotePage : public DCPromoWizardPage
  9. {
  10. public:
  11. DemotePage();
  12. protected:
  13. virtual ~DemotePage();
  14. // Dialog overrides
  15. virtual
  16. void
  17. OnInit();
  18. // PropertyPage overrides
  19. virtual
  20. bool
  21. OnSetActive();
  22. // DCPromoWizardPage overrides
  23. virtual
  24. int
  25. Validate();
  26. private:
  27. // not defined; no copying allowed
  28. DemotePage(const DemotePage&);
  29. const DemotePage& operator=(const DemotePage&);
  30. void
  31. SetBulletFont();
  32. HFONT bulletFont;
  33. };
  34. #endif // DEMOTE_HPP_INCLUDED