CONST_GUID_ARRAY

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. 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

A structure that holds a list of GUIDs.

Syntax

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 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