RemoveVectoredExceptionHandler (Compact 2013)
3/28/2014
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 |
See Also
Reference
Exception Functions
AddVectoredExceptionHandler
VectoredHandler