Edit

Share via


CONST_GUID_ARRAY

A structure that holds a list of GUIDs.

Syntax

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 PublishProgram method, and is returned from the GetProviderProcessData and 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