Skip to content

Latest commit

 

History

History
51 lines (44 loc) · 1.29 KB

idebugprogramnode2-getengineinfo.md

File metadata and controls

51 lines (44 loc) · 1.29 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Gets the name and identifier of the debug engine (DE) running a program.
IDebugProgramNode2::GetEngineInfo
11/04/2016
reference
IDebugProgramNode2::GetEngineInfo
IDebugProgramNode2::GetEngineInfo
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IDebugProgramNode2::GetEngineInfo

Gets the name and identifier of the debug engine (DE) running a program.

Syntax

int GetEngineInfo(
   out string pbstrEngine,
   out Guid pguidEngine
);
HRESULT GetEngineInfo ( 
   BSTR* pbstrEngine,
   GUID* pguidEngine
);

Parameters

pbstrEngine
[out] Returns the name of the DE running the program (C++-specific: this can be a null pointer indicating that the caller is not interested in the name of the engine).

pguidEngine
[out] Returns the globally unique identifier of the DE running the program (C++-specific: this can be a null pointer indicating that the caller is not interested in the GUID of the engine).

Return Value

If successful, returns S_OK; otherwise, returns an error code.

See also