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.

41 lines
1.1 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: HTTPCLS.HXX
  7. //
  8. // Contents: Implements the HTTPMoniker class, which is derived from
  9. // the CAsyncMoniker class.
  10. //
  11. // Classes: HTTPMoniker
  12. //
  13. // Functions:
  14. //
  15. // History: 11-02-95 JoeS (Joe Souza) Created
  16. //
  17. //----------------------------------------------------------------------------
  18. class FAR HTTPMoniker : public CAsyncMoniker
  19. {
  20. public:
  21. // *** IUnknown methods
  22. STDMETHOD_(ULONG, Release)(void);
  23. // *** IPersist methods
  24. STDMETHOD(GetClassID)(CLSID *pClassID);
  25. // *** IMoniker methods ***
  26. STDMETHOD(BindToStorage) (THIS_ LPBC pbc, LPMONIKER pmkToLeft,
  27. REFIID riid, LPVOID FAR* ppvObj);
  28. STDMETHOD(ParseDisplayName) (THIS_ LPBC pbc, LPMONIKER pmkToLeft,
  29. LPWSTR lpszDisplayName, ULONG FAR* pchEaten,
  30. LPMONIKER FAR* ppmkOut);
  31. private:
  32. ULONG m_refs;
  33. LPWSTR m_pwzURL; // the url string
  34. protected:
  35. };