IDebugCodeContext3::GetProcess
Applies to: Visual Studio Visual Studio for Mac
Note
This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Retrieves a reference to the interface of the debug process.
Syntax
HRESULT GetProcess(
IDebugProcess2 **ppProcess
);
public int GetProcess(
out IDebugProcess2 ppProcess
);
Parameters
ppProcess
[out] Reference to the debug process interface.
Return Value
If successful, returns S_OK
; otherwise, returns an error code.
Example
The following example shows how to implement this method for a CDebugCodeContext object that exposes the IDebugBeforeSymbolSearchEvent2 interface.
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;
}