Source code of Windows XP (NT5)
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.

76 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. #ifndef _CHICAGO_
  21. #include "defprot.h"
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // COlecnfgPropertySheet
  25. class COlecnfgPropertySheet : public CPropertySheet
  26. {
  27. DECLARE_DYNAMIC(COlecnfgPropertySheet)
  28. // Construction
  29. public:
  30. COlecnfgPropertySheet(CWnd* pParentWnd = NULL);
  31. // Attributes
  32. public:
  33. CServersPropertyPage m_Page1;
  34. CMachinePropertyPage m_Page2;
  35. CDefaultSecurityPropertyPage m_Page3;
  36. #ifndef _CHICAGO_
  37. CDefaultProtocols m_Page4;
  38. #endif
  39. // Operations
  40. public:
  41. // Overrides
  42. // ClassWizard generated virtual function overrides
  43. //{{AFX_VIRTUAL(COlecnfgPropertySheet)
  44. public:
  45. virtual INT_PTR DoModal();
  46. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  47. protected:
  48. virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  49. //}}AFX_VIRTUAL
  50. // Implementation
  51. public:
  52. virtual ~COlecnfgPropertySheet();
  53. // Generated message map functions
  54. protected:
  55. //{{AFX_MSG(COlecnfgPropertySheet)
  56. afx_msg BOOL OnNcCreate(LPCREATESTRUCT lpCreateStruct);
  57. afx_msg void OnDestroy();
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. /////////////////////////////////////////////////////////////////////////////
  62. #endif // __CNFGPSHT_H__