UrlIsNoHistory function
Returns whether a URL is a URL that browsers typically do not include in navigation history.
Syntax
BOOL UrlIsNoHistory( _In_ PCTSTR pszURL );
Parameters
- pszURL [in]
-
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
|
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 |
UrlIsNoHistoryW (Unicode) and UrlIsNoHistoryA (ANSI) |
See also