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.

54 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: ServiceSelPage.h
  9. //
  10. // History: 30-Oct-01 Yanggao created
  11. //
  12. //-----------------------------------------------------------------------------
  13. #ifndef SERVICESELPAGE_H_INCLUDED
  14. #define SERVICESELPAGE_H_INCLUDED
  15. #include "page.h"
  16. class ServiceEnabledPage : public Dialog
  17. {
  18. public:
  19. ServiceEnabledPage();
  20. protected:
  21. virtual ~ServiceEnabledPage();
  22. // Dialog overrides
  23. virtual
  24. bool
  25. OnCommand(
  26. HWND windowFrom,
  27. unsigned controlIDFrom,
  28. unsigned code);
  29. virtual
  30. bool
  31. OnMessage(
  32. UINT message,
  33. WPARAM wparam,
  34. LPARAM lparam);
  35. virtual
  36. void
  37. OnInit();
  38. private:
  39. // not defined; no copying allowed
  40. ServiceEnabledPage(const ServiceEnabledPage&);
  41. const ServiceEnabledPage& operator=(const ServiceEnabledPage&);
  42. };
  43. #endif // SERVICESELPAGE_H_INCLUDED