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.

98 lines
2.4 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // ModNodes.cpp
  7. //
  8. // Abstract:
  9. // Definition of the CModifyNodesDlg dialog.
  10. //
  11. // Implementation File:
  12. // ModNodes.h
  13. //
  14. // Author:
  15. // David Potter (davidp) July 16, 1996
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _MODNODES_H_
  23. #define _MODNODES_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Include Files
  26. /////////////////////////////////////////////////////////////////////////////
  27. #ifndef _NODE_H_
  28. #include "Node.h" // for CNodeList
  29. #endif
  30. #ifndef _LCPRDLG_H_
  31. #include "LCPrDlg.h" // for CListCtrlPairDlg
  32. #endif
  33. /////////////////////////////////////////////////////////////////////////////
  34. // Forward Class Declarations
  35. /////////////////////////////////////////////////////////////////////////////
  36. class CModifyNodesDlg;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CModifyNodesDlg dialog
  39. /////////////////////////////////////////////////////////////////////////////
  40. class CModifyNodesDlg : public CListCtrlPairDlg
  41. {
  42. DECLARE_DYNCREATE(CModifyNodesDlg)
  43. // Construction
  44. public:
  45. CModifyNodesDlg(void);
  46. CModifyNodesDlg::CModifyNodesDlg(
  47. IN UINT idd,
  48. IN const DWORD * pdwHelpMap,
  49. IN OUT CNodeList & rlpciRight,
  50. IN const CNodeList & rlpciLeft,
  51. IN DWORD dwStyle,
  52. IN OUT CWnd * pParent = NULL
  53. );
  54. // Callback functions
  55. static void CALLBACK GetColumn(
  56. IN OUT CObject * pobj,
  57. IN int iItem,
  58. IN int icol,
  59. IN OUT CDialog * pdlg,
  60. OUT CString & rstr,
  61. OUT int * piimg
  62. );
  63. static BOOL CALLBACK BDisplayProperties(IN OUT CObject * pobj);
  64. // Dialog Data
  65. //{{AFX_DATA(CModifyNodesDlg)
  66. enum { IDD = 0 };
  67. //}}AFX_DATA
  68. // Overrides
  69. // ClassWizard generate virtual function overrides
  70. //{{AFX_VIRTUAL(CModifyNodesDlg)
  71. //}}AFX_VIRTUAL
  72. // Implementation
  73. protected:
  74. // Generated message map functions
  75. //{{AFX_MSG(CModifyNodesDlg)
  76. virtual BOOL OnInitDialog();
  77. //}}AFX_MSG
  78. DECLARE_MESSAGE_MAP()
  79. }; //*** class CModifyNodesDlg
  80. /////////////////////////////////////////////////////////////////////////////
  81. #endif // _MODNODES_H_