RemoveVectoredExceptionHandler

Other versions of this page are also available for the following:

Windows Mobile Not SupportedWindows Embedded CE Supported

8/28/2008

This function unregisters a vectored exception handler.

Syntax

ULONG RemoveVectoredExceptionHandler(
  PVOID VectoredHandlerHandle
);

Parameters

  • VectoredHandlerHandle
    [in] Pointer to a vectored exception handler previously registered using the AddVectoredExceptionHandler function.

Return Value

Nonzero indicates success. Zero indicates failure.

Remarks

Vectored exception handlers are not frame-based handlers. Therefore, you can add a handler and ensure that it gets called regardless of where you are in a call frame. The handlers are called in the order that they were added, after the debugger gets a first chance notification, but before frame-based dispatching occurs.

Requirements

Header winbase.h
Library coredll.lib
Windows Embedded CE Windows Embedded CE 6.0 and later

See Also

Reference

Exception Functions
AddVectoredExceptionHandler
VectoredHandler

Other Resources

New Kernel APIs