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.

61 lines
1.2 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: ClientRoleSelPage.h
  9. //
  10. // History: 25-Oct-01 Yanggao created
  11. //
  12. //-----------------------------------------------------------------------------
  13. #ifndef CLIENTROLESELPAGE_H_INCLUDED
  14. #define CLIENTROLESELPAGE_H_INCLUDED
  15. #include "page.h"
  16. class ClientRoleSelPage : public SecCfgWizardPage
  17. {
  18. public:
  19. ClientRoleSelPage();
  20. protected:
  21. virtual ~ClientRoleSelPage();
  22. // Dialog overrides
  23. virtual
  24. bool
  25. OnCommand(
  26. HWND windowFrom,
  27. unsigned controlIDFrom,
  28. unsigned code);
  29. virtual
  30. void
  31. OnInit();
  32. // PropertyPage overrides
  33. virtual
  34. bool
  35. OnSetActive();
  36. // DCPromoWizardPage oveerrides
  37. virtual
  38. int
  39. Validate();
  40. private:
  41. // not defined; no copying allowed
  42. ClientRoleSelPage(const ClientRoleSelPage&);
  43. const ClientRoleSelPage& operator=(const ClientRoleSelPage&);
  44. };
  45. #endif // CLIENTROLESELPAGE_H_INCLUDED