_except_handler3

Used by a framework to find the appropriate exception handler to process the current exception.

int _except_handler3(
   PEXCEPTION_RECORD exception_record,
   PEXCEPTION_REGISTRATION registration,
   PCONTEXT context,
   PEXCEPTION_REGISTRATION dispatcher
);

Parameters

  • [in] exception_record
    Information about the specific exception.

  • [in] registration
    The record that indicates which scope table should be used to find the exception handler.

  • [in] context
    Reserved.

  • [in] dispatcher
    Reserved.

Return Value

If an exception should be dismissed, returns DISPOSITION_DISMISS. If the exception should be passed up a level to the encapsulating exception handlers, returns DISPOSITION_CONTINUE_SEARCH.

Remarks

If this method finds an appropriate exception handler, it passes the exception to the handler. In this situation, this method does not return to the code that called it and the return value is irrelevant.

See Also

Other Resources

Alphabetical Function Reference