Debugging Tools for Windows

GetExceptionFilterParameters

The GetExceptionFilterParameters method returns the parameters for exception filters specified by exception codes or by index.

HRESULT
  IDebugControl::GetExceptionFilterParameters(
    IN ULONG  Count,
    IN OPTIONAL PULONG  Codes,
    IN ULONG  Start,
    OUT DEBUG_EXCEPTION_FILTER_PARAMETERS *  Params
    );

Parameters

Count
Specifies the number of exception filters for which to return parameters.
Codes
Specifies an array of exception codes. The parameters for the exception filters with these exception codes will be returned. If Codes is NULL, Start is used instead.
Start
Specifies the index of the first exception filter. The parameters for the exception filters starting at Start will be returned. If Codes is not NULL, Start is ignored.
Params
Receives the parameters for the exception filters specified by Codes or Start. Params is an array of elements of type DEBUG_EXCEPTION_FILTER_PARAMETERS.

Return Value

S_OK
The method was successful.

This method may also return error values. See Return Values for more details.

Interface Version

GetExceptionFilterParameters is available in all versions of IDebugControl.

Comments

For more information about event filters, see Event Filters.

Requirements

Headers: Defined in Dbgeng.h. Include Dbgeng.h.

See Also

sx, sxd, sxe, sxi, sxn (Set Exceptions), SetExceptionFilterParameters, GetSpecificFilterParameters

Build machine: CAPEBUILD