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.

101 lines
2.5 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // ModRes.cpp
  7. //
  8. // Abstract:
  9. // Definition of the CModifyResourcesDlg dialog.
  10. //
  11. // Implementation File:
  12. // ModNodes.h
  13. //
  14. // Author:
  15. // David Potter (davidp) November 26, 1996
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _MODRES_H_
  23. #define _MODRES_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Include Files
  26. /////////////////////////////////////////////////////////////////////////////
  27. #ifndef _RES_H_
  28. #include "Res.h" // for CResourceList
  29. #endif
  30. #ifndef _LCPRDLG_H_
  31. #include "LCPrDlg.h" // for CListCtrlPairDlg
  32. #endif
  33. /////////////////////////////////////////////////////////////////////////////
  34. // Forward Class Declarations
  35. /////////////////////////////////////////////////////////////////////////////
  36. class CModifyResourcesDlg;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CModifyResourcesDlg dialog
  39. /////////////////////////////////////////////////////////////////////////////
  40. class CModifyResourcesDlg : public CListCtrlPairDlg
  41. {
  42. DECLARE_DYNCREATE(CModifyResourcesDlg)
  43. // Construction
  44. public:
  45. CModifyResourcesDlg(void);
  46. CModifyResourcesDlg::CModifyResourcesDlg(
  47. IN UINT idd,
  48. IN const DWORD * pdwHelpMap,
  49. IN OUT CResourceList & rlpciRight,
  50. IN const CResourceList & 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(CModifyResourcesDlg)
  66. enum { IDD = 0 };
  67. //}}AFX_DATA
  68. // Overrides
  69. // ClassWizard generate virtual function overrides
  70. //{{AFX_VIRTUAL(CModifyResourcesDlg)
  71. //}}AFX_VIRTUAL
  72. // Implementation
  73. protected:
  74. IDS m_idsTitle;
  75. IDS IdsTitle(void) const { return m_idsTitle; }
  76. // Generated message map functions
  77. //{{AFX_MSG(CModifyResourcesDlg)
  78. virtual BOOL OnInitDialog();
  79. //}}AFX_MSG
  80. DECLARE_MESSAGE_MAP()
  81. }; //*** class CModifyResourcesDlg
  82. /////////////////////////////////////////////////////////////////////////////
  83. #endif // _MODRES_H_