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.

74 lines
2.1 KiB

  1. // chicdial.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCSDialog dialog
  14. class CCSDialog : public CDialog
  15. {
  16. // Construction
  17. public:
  18. CCSDialog();
  19. CCSDialog(LPCTSTR lpszTemplateName, CWnd* pParentWnd = NULL);
  20. CCSDialog(UINT nIDTemplate, CWnd* pParentWnd = NULL);
  21. // Implementation
  22. protected:
  23. virtual const DWORD* GetHelpIDs() = 0;
  24. // Generated message map functions
  25. //{{AFX_MSG(CCSDialog)
  26. virtual BOOL OnInitDialog();
  27. //}}AFX_MSG
  28. afx_msg LONG OnHelp(WPARAM wParam, LPARAM lParam);
  29. afx_msg LONG OnHelpContextMenu(WPARAM wParam, LPARAM lParam);
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. class CCSPropertyPage : public CPropertyPage
  33. {
  34. // Construction
  35. public:
  36. CCSPropertyPage(UINT nIDTemplate, UINT nIDCaption = 0);
  37. CCSPropertyPage(LPCTSTR lpszTemplateName, UINT nIDCaption = 0);
  38. // Implementation
  39. protected:
  40. virtual const DWORD* GetHelpIDs() = 0;
  41. // Generated message map functions
  42. //{{AFX_MSG(CCSPropertyPage)
  43. //}}AFX_MSG
  44. afx_msg LONG OnHelp(WPARAM wParam, LPARAM lParam);
  45. afx_msg LONG OnHelpContextMenu(WPARAM wParam, LPARAM lParam);
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. class CCSPropertySheet : public CPropertySheet
  49. {
  50. // Construction
  51. public:
  52. CCSPropertySheet(UINT nIDCaption, CWnd *pParentWnd = NULL,
  53. UINT iSelectPage = 0);
  54. CCSPropertySheet(LPCTSTR pszCaption, CWnd *pParentWnd = NULL,
  55. UINT iSelectPage = 0);
  56. // Implementation
  57. protected:
  58. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  59. // Generated message map functions
  60. //{{AFX_MSG(CCSPropertySheet)
  61. //}}AFX_MSG
  62. afx_msg LONG OnHelp(WPARAM wParam, LPARAM lParam);
  63. afx_msg LONG OnHelpContextMenu(WPARAM wParam, LPARAM lParam);
  64. afx_msg BOOL OnNcCreate(LPCREATESTRUCT);
  65. DECLARE_MESSAGE_MAP()
  66. };