共用方式為


IDebugBreakpointUnboundEvent2::GetBreakpoint

取得未系結的斷點。

語法

int GetBreakpoint(
    out IDebugBoundBreakpoint2 ppBP
);

參數

ppBP
[out]會傳 回 IDebugBoundBreakpoint2 物件,代表未繫結的斷點。

傳回值

如果成功,則會傳回 S_OK;否則,會傳回錯誤碼。

範例

下列範例示範如何針對公開 IDebugBreakpointUnboundEvent2 介面的 CBreakpointUnboundDebugEventBase 物件實作這個方法。

STDMETHODIMP CBreakpointUnboundDebugEventBase::GetBreakpoint(
    IDebugBoundBreakpoint2 **ppbp)
{
    HRESULT hRes = E_FAIL;

    if ( ppbp )
    {
        if ( m_pbp )
        {
            IDebugBoundBreakpoint2 *pibp;

            hRes = m_pbp->QueryInterface(IID_IDebugBoundBreakpoint2, (void **) & pibp);

            if ( S_OK == hRes )
                *ppbp = pibp;
        }
        else
            hRes = E_FAIL;
    }
    else
        hRes = E_INVALIDARG;

    return ( hRes );
}

另請參閱