IDebugControl::GetExceptionFilterParameters method (dbgeng.h)
The GetExceptionFilterParameters method returns the parameters for exception filters specified by exception codes or by index.
Syntax
HRESULT GetExceptionFilterParameters(
[in] ULONG Count,
[in, optional] PULONG Codes,
[in] ULONG Start,
[out] PDEBUG_EXCEPTION_FILTER_PARAMETERS Params
);
Parameters
[in] Count
Specifies the number of exception filters for which to return parameters.
[in, optional] 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.
[in] 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.
[out] 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
This method may also return error values. See Return Values for more details.
Return code | Description |
---|---|
|
The method was successful. |
Remarks
For more information about event filters, see Event Filters.
Requirements
Requirement | Value |
---|---|
Target Platform | Desktop |
Header | dbgeng.h (include Dbgeng.h) |