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.

27 lines
793 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: ncinet2.h
  7. //
  8. // Contents: Wrappers to do useful things with the Urlmon APIs
  9. //
  10. // Notes:
  11. //
  12. //----------------------------------------------------------------------------
  13. // note: this uses Urlmon, where the other methods only pull in
  14. // wininet
  15. HRESULT HrCombineUrl(LPCWSTR pszBaseUrl,
  16. LPCWSTR pszRelativeUrl,
  17. LPWSTR * ppszResult);
  18. HRESULT HrCopyAndValidateUrl(LPCWSTR pszUrl,
  19. LPWSTR * ppszResult);
  20. HRESULT HrGetSecurityDomainOfUrl(LPCWSTR pszUrl,
  21. LPWSTR * ppszResult);
  22. BOOL FIsHttpUrl(LPCWSTR pszUrl);