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
1022 B

  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: WelcomePage.h
  9. //
  10. // History: 2-Oct-01 EricB created
  11. //
  12. //-----------------------------------------------------------------------------
  13. #ifndef WELCOMEPAGE_HPP_INCLUDED
  14. #define WELCOMEPAGE_HPP_INCLUDED
  15. #include "page.h"
  16. class WelcomePage : public SecCfgWizardPage
  17. {
  18. public:
  19. WelcomePage();
  20. protected:
  21. virtual ~WelcomePage();
  22. // Dialog overrides
  23. virtual
  24. void
  25. OnInit();
  26. // PropertyPage overrides
  27. virtual
  28. bool
  29. OnSetActive();
  30. // DCPromoWizardPage overrides
  31. virtual
  32. int
  33. Validate();
  34. private:
  35. // not defined; no copying allowed
  36. WelcomePage(const WelcomePage&);
  37. const WelcomePage& operator=(const WelcomePage&);
  38. };
  39. #endif // WELCOMEPAGE_HPP_INCLUDED