UrlIsNoHistoryA function (shlwapi.h)
Returns whether a URL is a URL that browsers typically do not include in navigation history.
Syntax
BOOL UrlIsNoHistoryA(
[in] PCSTR pszURL
);
Parameters
[in] pszURL
Type: PCTSTR
A null-terminated string of maximum length INTERNET_MAX_URL_LENGTH that contains the URL.
Return value
Type: BOOL
Returns a nonzero value if the URL is a URL that is not included in navigation history, or zero otherwise.
Remarks
This function is equivalent to the following:
UrlIs(pszURL, URLIS_NOHISTORY)
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional, Windows XP [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | shlwapi.h |
Library | Shlwapi.lib |
DLL | Shlwapi.dll (version 5.0 or later) |