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.

49 lines
831 B

  1. class CDNWithBinary;
  2. class CDNWithBinary : INHERIT_TRACKING,
  3. public ISupportErrorInfo,
  4. public IADsDNWithBinary
  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_IADsDNWithBinary_METHODS
  13. CDNWithBinary::CDNWithBinary();
  14. CDNWithBinary::~CDNWithBinary();
  15. static
  16. HRESULT
  17. CDNWithBinary::CreateDNWithBinary(
  18. REFIID riid,
  19. void **ppvObj
  20. );
  21. static
  22. HRESULT
  23. CDNWithBinary::AllocateDNWithBinaryObject(
  24. CDNWithBinary ** ppDNWithBinary
  25. );
  26. protected:
  27. CDispatchMgr FAR * _pDispMgr;
  28. LPWSTR _pszDNStr;
  29. DWORD _dwLength;
  30. LPBYTE _lpOctetStr;
  31. };