Share via


PROGRAM_NODE_ARRAY

Contains an array of objects that describe programs of interest.

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 IDebugProgramProvider2::GetProviderProcessData method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Reference

Structures and Unions

PROVIDER_PROCESS_DATA

IDebugProgramNode2

IDebugProgramProvider2::GetProviderProcessData