PROGRAM_NODE_ARRAY
Note
This article applies to Visual Studio 2015. 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
Contains an array of objects that describe programs of interest.
Syntax
typedef struct tagPROGRAM_NODE_ARRAY {
DWORD dwCount;
IDebugProgramNode2** Members;
} PROGRAM_NODE_ARRAY;
public struct tagPROGRAM_NODE_ARRAY {
public uint dwCount;
public IDebugProgramNode2[] Members;
}
Members
dwCount
Number of objects in the Members
array.
Members
An array of IDebugProgramNode2 objects describing the programs requested.
Remarks
This structure is part of the PROVIDER_PROCESS_DATA structure which in turn is filled in by a call to the GetProviderProcessData method.
Requirements
Header: msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
See Also
Structures and Unions
PROVIDER_PROCESS_DATA
IDebugProgramNode2
GetProviderProcessData