IDebugPortEx2::GetProgram
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
Gets the program associated with a program node.
Syntax
HRESULT GetProgram(
IDebugProgramNode2* pProgramNode,
IDebugProgram2** ppProgram
);
int GetProgram(
IDebugProgramNode2 pProgramNode,
out IDebugProgram2 ppProgram
);
Parameters
pProgramNode
[in] An IDebugProgramNode2 object representing the program node.
ppProgram
[out] Returns an IDebugProgram2 object that represents the program associated with the program node.
Return Value
If successful, returns S_OK
; otherwise, returns an error code.