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.

55 lines
901 B

  1. class CPropertyEntry;
  2. class CPropertyEntry : INHERIT_TRACKING,
  3. public ISupportErrorInfo,
  4. public IADsPropertyEntry
  5. {
  6. public:
  7. /* IUnknown methods */
  8. STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR* ppvObj) ;
  9. DECLARE_STD_REFCOUNTING
  10. DECLARE_IDispatch_METHODS
  11. DECLARE_ISupportErrorInfo_METHODS
  12. DECLARE_IADsPropertyEntry_METHODS
  13. CPropertyEntry::CPropertyEntry();
  14. CPropertyEntry::~CPropertyEntry();
  15. static
  16. HRESULT
  17. CPropertyEntry::CreatePropertyEntry(
  18. REFIID riid,
  19. void **ppvObj
  20. );
  21. static
  22. HRESULT
  23. CPropertyEntry::AllocatePropertyEntryObject(
  24. CPropertyEntry ** ppPropertyEntry
  25. );
  26. protected:
  27. CDispatchMgr FAR * _pDispMgr;
  28. LPWSTR _lpName;
  29. DWORD _dwValueCount;
  30. DWORD _dwADsType;
  31. DWORD _dwControlCode;
  32. VARIANT _propVar;
  33. };
  34.