CONST_GUID_ARRAY

A structure that holds a list of GUIDs.

typedef struct tagCONST_GUID_ARRAY {
   DWORD       dwCount;
   CONST GUID* Members;
} CONST_GUID_ARRAY;
public struct CONST_GUID_ARRAY {
   public uint   dwCount;
   public Guid[] Members;
}

Members

  • dwCount
    Number of GUIDs in the Members array.

  • Members
    Array of GUIDs.

Remarks

This structure is passed to the IDebugProgramPublisher2::PublishProgram method, and is returned from the IDebugProgramProvider2::GetProviderProcessData and IDebugProgramProvider2::WatchForProviderEvents methods.

The owner of an instance of this structure is responsible for freeing any memory allocated.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Reference

Structures and Unions

IDebugProgramPublisher2::PublishProgram

IDebugProgramProvider2::GetProviderProcessData

IDebugProgramProvider2::WatchForProviderEvents