DEBUG_SPECIFIC_FILTER_PARAMETERS structure (dbgeng.h)

The DEBUG_SPECIFIC_FILTER_PARAMETERS structure contains the parameters for a specific event filter.

Syntax

typedef struct _DEBUG_SPECIFIC_FILTER_PARAMETERS {
  ULONG ExecutionOption;
  ULONG ContinueOption;
  ULONG TextSize;
  ULONG CommandSize;
  ULONG ArgumentSize;
} DEBUG_SPECIFIC_FILTER_PARAMETERS, *PDEBUG_SPECIFIC_FILTER_PARAMETERS;

Members

ExecutionOption

The break status of the specific event filter. For possible values, see DEBUG_FILTER_XXX.

ContinueOption

The handling status of the specific event filter. For possible values, see DEBUG_FILTER_XXX.

TextSize

The size, in characters (including the terminator), of the name of the specific event filter.

CommandSize

The size, in characters, of the command (including the terminator), to execute when the event occurs.

ArgumentSize

Specifies the size, in characters, of the specific event filter argument. This size includes the NULL terminator. If the specific event filter does not take an argument, ArgumentSize is zero.

Note  If the filter does take an argument, but the argument is empty, ArgumentSize will be one, reflecting the NULL terminator.
 

Requirements

Requirement Value
Header dbgeng.h (include DbgEng.h)

See also

GetSpecificFilterParameters

SetSpecificFilterParameters