Scroll to navigation

InternetCreateUrlW(3w) Wine API InternetCreateUrlW(3w)

NAME

InternetCreateUrlW (WININET.@)

SYNOPSIS

BOOL InternetCreateUrlW
(
LPURL_COMPONENTSW lpUrlComponents,
DWORD dwFlags,
LPWSTR lpszUrl,
LPDWORD lpdwUrlLength
)
 

DESCRIPTION

Creates a Url from its component parts.
 

PARAMS

lpUrlComponents [In] Url Components.
dwFlags [In] Flags. See notes.
lpszUrl [In] Buffer in which to store the created URL.
lpdwUrlLength [In/Out] On input, the length of the buffer pointed to by lpszUrl in characters. On output, the number of bytes required to store the Url including terminator.
 

NOTES

The dwFlags parameter can be zero or more of the following:
 
ICU_ESCAPE - Generates escape sequences for unsafe characters in the path and extra info of the URL.
 

RETURNS

TRUE on success FALSE on failure
 

IMPLEMENTATION

Declared in "wininet.h".
Implemented in "dlls/wininet/internet.c".
Debug channel "wininet".
Oct 2012 Wine API