IDebugBoundBreakpoint2:: 删除
删除断点。
HRESULT Delete(
void
);
int Delete();
返回值
如果成功,则返回; S_OK否则,返回错误代码。 返回 E_BP_DELETED ,如果绑定断点对象的状态设置为 BPS_DELETED (的一部分 BP_STATE 枚举)。
示例
下面的示例演示如何执行显示 IDebugBoundBreakpoint2 接口的简单 CBoundBreakpoint 对象的方法。
HRESULT CBoundBreakpoint::Delete(void)
{
HRESULT hr;
// Verify that the bound breakpoint has not been
// deleted. If deleted, then return hr = E_BP_DELETED.
if (m_state != BPS_DELETED)
{
m_pInterp->RemoveBreakpoint(m_sbstrDoc, this);
// Change the state of the breakpoint to BPS_DELETED.
m_state = BPS_DELETED;
hr = S_OK;
}
else
{
hr = E_BP_DELETED;
}
return hr;
}