UrlGetPart function
Accepts a URL string and returns a specified part of that URL.
Syntax
HRESULT UrlGetPart( _In_ PCTSTR pszIn, _Out_ PTSTR pszOut, _Inout_ DWORD *pcchOut, DWORD dwPart, DWORD dwFlags );
Parameters
- pszIn [in]
-
Type: PCTSTR
A null-terminated string of maximum length INTERNET_MAX_URL_LENGTH that contains the URL.
- pszOut [out]
-
Type: PTSTR
A pointer to a buffer that, when this function returns successfully, receives a null-terminated string with the specified part of the URL.
- pcchOut [in, out]
-
Type: DWORD*
A pointer to a value that, on entry, is set to the number of characters in the pszOut buffer. When this function returns successfully, the value depends on whether the function is successful or returns E_POINTER. For other return values, the value of this parameter is meaningless.
- dwPart
-
Type: DWORD
The flags that specify which part of the URL to retrieve. It can have one of the following values.
- dwFlags
-
Type: DWORD
A flag that can be set to keep the URL scheme, in addition to the part that is specified by dwPart.
Return value
Type: HRESULT
Returns S_OK if successful. The value pointed to by pcchOut will be set to the number of characters written to the output buffer, excluding the terminating NULL. If the buffer was too small, E_POINTER is returned, and the value pointed to by pcchOut will be set to the minimum number of characters that the buffer must be able to contain, including the terminating NULL character. Otherwise, a COM error value is returned.
Requirements
|
Minimum supported client |
Windows 2000 Professional, Windows XP [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
|
Unicode and ANSI names |
UrlGetPartW (Unicode) and UrlGetPartA (ANSI) |