DEBUG_EXCEPTION_FILTER_PARAMETERS
The DEBUG_EXCEPTION_FILTER_PARAMETERS structure contains the parameters for an exception filter.
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
Headers: Defined in DbgEng.h.  Include DbgEng.h.
See Also
GetExceptionFilterParameters, SetExceptionFilterParameters
Build machine: CAPEBUILD