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". https://source.winehq.org/source/include/wininet.h

Implemented in "dlls/wininet/internet.c". https://source.winehq.org/source/dlls/wininet/internet.c

Debug channel "wininet".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.