IDebugBoundBreakpoint2::GetState
获取此绑定断点的状态。
语法
参数
pState
[out]从描述断点状态的BP_STATE枚举中返回一个值。
返回值
如果成功,则返回 S_OK
;否则,返回错误代码。
示例
以下示例演示如何为公开 IDebugBoundBreakpoint2 接口的简单CBoundBreakpoint
对象实现此方法。
HRESULT CBoundBreakpoint::GetState(BP_STATE* pState)
{
HRESULT hr;
// Check for a valid pointer to pState and assign the local state variable.
if (pState)
{
*pState = m_state;
hr = S_OK;
}
else
{
hr = E_INVALIDARG;
}
return hr;
}