Scroll to navigation

UrlCombineA(3w) Wine API UrlCombineA(3w)

NAME

UrlCombineA (SHLWAPI.@)

SYNOPSIS

HRESULT UrlCombineA
(
LPCSTR pszBase,
LPCSTR pszRelative,
LPSTR pszCombined,
LPDWORD pcchCombined,
DWORD dwFlags
)
 

DESCRIPTION

Combine two Urls.
 

PARAMS

pszBase [In] Base Url.
pszRelative [In] Url to combine with pszBase.
pszCombined [Out] Destination for combined Url.
pcchCombined [Out] Destination for length of pszCombined.
dwFlags [In] URL_ flags from "shlwapi.h".
 

RETURNS

Success: S_OK. pszCombined contains the combined Url, pcchCombined contains its length.
Failure: An HRESULT error code indicating the error.
 

IMPLEMENTATION

Declared in "shlwapi.h".
Implemented in "dlls/shlwapi/url.c".
Debug channel "shell".
Oct 2012 Wine API