InternetCrackUrl

This function cracks a URL into its component parts.

BOOL WINAPI InternetCrackUrl(
IN LPCTSTR lpszUrl, 
IN DWORD dwUrlLength, 
IN DWORD dwFlags, 
IN LPURL_COMPONENTS lpUrlComponents);

Parameters

  • lpszUrl
    Long pointer to a null-terminated string that contains the canonical URL to crack.

  • dwUrlLength
    Specifies the length of the lpszUrl string, or zero if lpszUrl is an ASCIIZ string.

  • dwFlags
    Specifies the operation. It is one of the following values:

    Value Description
    ICU_DECODE Converts encoded characters back to their normal form. This can be used only if the user provides buffers in the URL_COMPONENTS structure to copy the components into.
    ICU_ESCAPE Converts all escape sequences (%xx) to their corresponding characters. This can be used only if the user provides buffers in the URL_COMPONENTS structure to copy the components into.
  • lpUrlComponents
    Long pointer to a URL_COMPONENTS structure that receives the URL components.

Return Values

TRUE indicates success. FALSE indicates failure. To get extended error information, call GetLastError.

Remarks

Always directly call the ANSI version of this function, InternetCrackUrlA.

The required components are indicated by members of the URL_COMPONENTS structure. Each component has a pointer to the value and has a member that stores the length of the stored value. If both the value and the length for a component are equal to zero, that component is not returned. If the pointer to the value of the component is NULL and the value of its corresponding length member is nonzero, the address of the first character of the corresponding component in the lpszUrl string is stored in the pointer, and the length of the component is stored in the length member.

If the pointer contains the address of the user-supplied buffer, the length member must contain the size of the buffer. InternetCrackUrl copies the component into the buffer, and the length member is set to the length of the copied component, minus 1 for the trailing string terminator.

For InternetCrackUrl to work properly, the size of the URL_COMPONENTS structure must be stored in the dwStructSize member.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 2.0 and later Wininet.h   Wininet.lib

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

FtpOpenFile, GetLastError, InternetCloseHandle, InternetFindNextFile, InternetSetStatusCallback, URL_COMPONENTS

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.