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: SelectInputCfgPage.h
  9. //
  10. // History: 2-Oct-01 EricB created
  11. //
  12. //-----------------------------------------------------------------------------
  13. #ifndef SELECTINPUTCFGPAGE_H_INCLUDED
  14. #define SELECTINPUTCFGPAGE_H_INCLUDED
  15. #include "page.h"
  16. class SelectInputCfgPage : public SecCfgWizardPage
  17. {
  18. public:
  19. SelectInputCfgPage();
  20. protected:
  21. virtual ~SelectInputCfgPage();
  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. SelectInputCfgPage(const SelectInputCfgPage&);
  43. const SelectInputCfgPage& operator=(const SelectInputCfgPage&);
  44. };
  45. #endif // SELECTINPUTCFGPAGE_H_INCLUDED