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.

74 lines
1.7 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corporation, 1997 - 1998 **/
  4. /**********************************************************************/
  5. /*
  6. dumbprop.h
  7. Dummy property sheet to put up to avoid MMC's handlig of
  8. the property verb.
  9. FILE HISTORY:
  10. */
  11. #ifndef _DUMBPROP_H
  12. #define _DUMBPROP_H
  13. #if _MSC_VER >= 1000
  14. #pragma once
  15. #endif // _MSC_VER >= 1000
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CDummyPropGeneral dialog
  18. class CDummyPropGeneral : public CPropertyPageBase
  19. {
  20. // DECLARE_DYNCREATE(CDummyPropGeneral)
  21. // Construction
  22. public:
  23. CDummyPropGeneral();
  24. ~CDummyPropGeneral();
  25. // Dialog Data
  26. //{{AFX_DATA(CDummyPropGeneral)
  27. enum { IDD = IDD_DUMMY_PROP_PAGE };
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generate virtual function overrides
  31. //{{AFX_VIRTUAL(CDummyPropGeneral)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. // Generated message map functions
  38. //{{AFX_MSG(CDummyPropGeneral)
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. public:
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  46. //}}AFX
  47. class CDummyProperties : public CPropertyPageHolderBase
  48. {
  49. public:
  50. CDummyProperties(ITFSNode * pNode,
  51. IComponentData * pComponentData,
  52. LPCTSTR pszSheetName);
  53. virtual ~CDummyProperties();
  54. public:
  55. CDummyPropGeneral m_pageGeneral;
  56. };
  57. #endif _DUMBPROP_H