IDebugCodeContext3::GetProcess

检索对调试进程的接口的引用。

语法

public int GetProcess(
    out IDebugProcess2 ppProcess
);

参数

ppProcess
[out]对调试进程接口的引用。

返回值

如果成功,则返回 S_OK;否则,返回错误代码。

示例

以下示例演示如何为公开 IDebugBeforeSymbolSearchEvent2 接口的 CDebugCodeContext 对象实现此方法。

HRESULT CDebugCodeContext::GetProcess(IDebugProcess2** ppProcess)
{
    HRESULT hr = S_OK;
    CComPtr<CDebugEngine> pEngine;
    CComPtr<IDebugPort2> pPort2;

    IfFalseGo( ppProcess, E_INVALIDARG );
    *ppProcess = NULL;

    IfFalseGo( m_pProgram, E_FAIL );
    IfFailGo( ((CDebugProgram *)m_pProgram)->GetEngine(&pEngine) );
    IfFailGo( pEngine->GetSDMProcess(ppProcess) );

Error:

    return hr;
}

另请参阅