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.

59 lines
1.1 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Windows NT Secure Server Roles Security Configuration Wizard
  4. //
  5. // Microsoft Windows
  6. // Copyright (C) Microsoft Corporation, 1992 - 2002
  7. //
  8. // File: page.h
  9. //
  10. // Contents: Wizard page class declaration.
  11. //
  12. // History: 4-Oct-01 EricB created
  13. //
  14. //-----------------------------------------------------------------------------
  15. #ifndef PAGE_H_INCLUDED
  16. #define PAGE_H_INCLUDED
  17. class SecCfgWizardPage : public WizardPage
  18. {
  19. public:
  20. virtual
  21. bool
  22. OnWizNext();
  23. protected:
  24. SecCfgWizardPage(
  25. int dialogResID,
  26. int titleResID,
  27. int subtitleResID,
  28. bool isInteriorPage = true);
  29. virtual ~SecCfgWizardPage();
  30. // PropertyPage overrides
  31. //virtual
  32. //bool
  33. //OnQueryCancel();
  34. virtual
  35. int
  36. Validate() = 0;
  37. private:
  38. // not defined: no copying allowed
  39. SecCfgWizardPage(const SecCfgWizardPage&);
  40. const SecCfgWizardPage& operator=(const SecCfgWizardPage&);
  41. };
  42. #endif // PAGE_H_INCLUDED