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.

47 lines
855 B

  1. class CDNWithString;
  2. class CDNWithString : INHERIT_TRACKING,
  3. public ISupportErrorInfo,
  4. public IADsDNWithString
  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_IADsDNWithString_METHODS
  13. CDNWithString::CDNWithString();
  14. CDNWithString::~CDNWithString();
  15. static
  16. HRESULT
  17. CDNWithString::CreateDNWithString(
  18. REFIID riid,
  19. void **ppvObj
  20. );
  21. static
  22. HRESULT
  23. CDNWithString::AllocateDNWithStringObject(
  24. CDNWithString ** ppDNWithString
  25. );
  26. protected:
  27. CDispatchMgr FAR * _pDispMgr;
  28. LPWSTR _pszStrVal;
  29. LPWSTR _pszDNStr;
  30. };