InternetConfirmZoneCrossing function
Checks for changes between secure and nonsecure URLs. Always inform the user when a change occurs in security between two URLs. Typically, an application should allow the user to acknowledge the change through interaction with a dialog box.
Syntax
DWORD InternetConfirmZoneCrossing( _In_ HWND hWnd, _In_ LPTSTR szUrlPrev, _In_ LPTSTR szUrlNew, _In_ BOOL bPost );
Parameters
- hWnd [in]
-
Handle to the parent window for any required dialog box.
- szUrlPrev [in]
-
Pointer to a null-terminated string that specifies the URL that was viewed before the current request was made.
- szUrlNew [in]
-
Pointer to a null-terminated string that specifies the new URL that the user has requested to view.
- bPost [in]
-
Not implemented.
Return value
Returns one of the following values.
| Return code | Description |
|---|---|
|
The user confirmed that it was okay to continue, or there was no user input required. |
|
The user canceled the request. |
|
There is not enough memory to carry out the request. |
Remarks
Always inform the user when a change in security level occurs, or you risk subjecting the user to involuntary information disclosure.
Like all other aspects of the WinINet API, this function cannot be safely called from within DllMain or the constructors and destructors of global objects.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Library |
|
|
DLL |
|
|
Unicode and ANSI names |
InternetConfirmZoneCrossingW (Unicode) and InternetConfirmZoneCrossingA (ANSI) |
See also