หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
The DEBUG_EXCEPTION_FILTER_PARAMETERS structure contains the parameters for an exception filter.
Syntax
typedef struct _DEBUG_EXCEPTION_FILTER_PARAMETERS {
ULONG ExecutionOption;
ULONG ContinueOption;
ULONG TextSize;
ULONG CommandSize;
ULONG SecondCommandSize;
ULONG ExceptionCode;
} DEBUG_EXCEPTION_FILTER_PARAMETERS, *PDEBUG_EXCEPTION_FILTER_PARAMETERS;
Members
ExecutionOption
The break status of the exception filter, including the terminator. For possible values, see DEBUG_FILTER_XXX.
ContinueOption
The handling status of the exception filter. For possible values, see DEBUG_FILTER_XXX.
TextSize
The size, in characters, of the name (including the terminator) of the exception filter. If the filter is an arbitrary exception filter, it does not have a name and TextSize is zero.
CommandSize
The size, in characters, of the command (including the terminator) to execute upon the first chance of the exception.
SecondCommandSize
The size, in characters, of the command (including the terminator) to execute upon the second chance of the exception.
ExceptionCode
The exception code for the exception filter.
Requirements
Requirement | Value |
---|---|
Header | dbgeng.h (include DbgEng.h) |