IDebugPendingBreakpoint2::EnumErrorBreakpoints
获取由此挂起断点导致的所有错误断点的列表。
语法
int EnumErrorBreakpoints(
enum_BP_ERROR_TYPE bpErrorType,
out IEnumDebugErrorBreakpoints2 ppEnum
);
参数
bpErrorType
[in]BP_ERROR_TYPE枚举中的值的组合,用于选择要枚举的错误类型。
ppEnum
[out]返回一个 IEnumDebugErrorBreakpoints2 对象,该对象包含 IDebugErrorBreakpoint2 对象的列表。
返回值
如果成功,则返回 S_OK
;否则,返回错误代码。 返回 E_BP_DELETED
是否已删除断点。
示例
以下示例演示如何为公开 IDebugPendingBreakpoint2 接口的简单CPendingBreakpoint
对象实现此方法。
HRESULT CPendingBreakpoint::EnumErrorBreakpoints(
BP_ERROR_TYPE bpErrorType,
IEnumDebugErrorBreakpoints2** ppEnum)
{
HRESULT hr;
// Verify that the passed IEnumDebugErrorBreakpoints2 interface pointer
// is valid.
if (ppEnum)
{
// Verify that the pending breakpoint has not been deleted. If
// deleted, then return hr = E_BP_DELETED.
if (m_state.state != PBPS_DELETED)
{
// Verify that this error is not a warning.
// All errors supported by this DE are errors, not warnings.
if (IsFlagSet(bpErrorType, BPET_TYPE_ERROR) && m_pErrorBP)
{
// Get the error breakpoint.
CComPtr<IDebugErrorBreakpoint2> spErrorBP;
hr = m_pErrorBP->QueryInterface(&spErrorBP);
assert(hr == S_OK);
if (hr == S_OK)
{
// Create the error breakpoint enumerator.
CComObject<CEnumDebugErrorBreakpoints>* pErrorEnum;
hr = CComObject<CEnumDebugErrorBreakpoints>::CreateInstance(&pErrorEnum);
assert(hr == S_OK);
if (hr == S_OK)
{
// Initialize the enumerator of error breakpoints with
// the IDebugErrorBreakpoint2 information.
IDebugErrorBreakpoint2* rgpErrorBP[] = { spErrorBP.p };
hr = pErrorEnum->Init(rgpErrorBP, &(rgpErrorBP[1]), NULL, AtlFlagCopy);
if (hr == S_OK)
{
// Verify that the passed IEnumDebugErrorBreakpoints2
// interface can be queried by the created
// CEnumDebugErrorBreakpoints object.
hr = pErrorEnum->QueryInterface(ppEnum);
assert(hr == S_OK);
}
// Otherwise, delete the CEnumDebugErrorBreakpoints
// object.
if (FAILED(hr))
{
delete pErrorEnum;
}
}
}
}
else
{
hr = S_FALSE;
}
}
else
{
hr = E_BP_DELETED;
}
}
else
{
hr = E_INVALIDARG;
}
return hr;
}