Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.57 KB

File metadata and controls

52 lines (38 loc) · 1.57 KB
description Learn more about: _except_handler3
title _except_handler3
ms.date 1/14/2021
api_name
_except_handler3
api_location
msvcrt.dll
msvcr90.dll
msvcr80.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr100.dll
msvcr110.dll
api_type
DLLExport
topic_type
apiref
f1_keywords
_except_handler3
except_handler3
helpviewer_keywords
_except_handler3 function
except_handler3 function
ms.assetid b0c64898-0ae5-48b7-9724-80135a0813e2

_except_handler3

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

Syntax

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

Parameters

exception_record
[in] Information about the specific exception.

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

context
[in] Reserved.

dispatcher
[in] 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 doesn't return to the code that called it and the return value is irrelevant.

See also

Alphabetical function reference