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.

72 lines
1.8 KiB

  1. //+---------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993 - 1997.
  5. //
  6. // File: cnfgpsht.h
  7. //
  8. // Contents: Defines class COlecnfgPropertySheet
  9. //
  10. // Classes:
  11. //
  12. // Methods:
  13. //
  14. // History: 23-Apr-96 BruceMa Created.
  15. //
  16. //----------------------------------------------------------------------
  17. #ifndef __CNFGPSHT_H__
  18. #define __CNFGPSHT_H__
  19. #include "SrvPPg.h"
  20. #include "defprot.h"
  21. /////////////////////////////////////////////////////////////////////////////
  22. // COlecnfgPropertySheet
  23. class COlecnfgPropertySheet : public CPropertySheet
  24. {
  25. DECLARE_DYNAMIC(COlecnfgPropertySheet)
  26. // Construction
  27. public:
  28. COlecnfgPropertySheet(CWnd* pParentWnd = NULL);
  29. // Attributes
  30. public:
  31. CServersPropertyPage m_Page1;
  32. CMachinePropertyPage m_Page2;
  33. CDefaultSecurityPropertyPage m_Page3;
  34. CDefaultProtocols m_Page4;
  35. // Operations
  36. public:
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(COlecnfgPropertySheet)
  40. public:
  41. virtual INT_PTR DoModal();
  42. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  43. protected:
  44. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. virtual ~COlecnfgPropertySheet();
  49. // Generated message map functions
  50. protected:
  51. //{{AFX_MSG(COlecnfgPropertySheet)
  52. afx_msg BOOL OnNcCreate(LPCREATESTRUCT lpCreateStruct);
  53. afx_msg void OnDestroy();
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. /////////////////////////////////////////////////////////////////////////////
  58. #endif // __CNFGPSHT_H__