CONST_GUID_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
A structure that holds a list of GUID
s.
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 GUID
s in the Members
array.
Members
Array of GUID
s.
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
Structures and Unions
PublishProgram
GetProviderProcessData
WatchForProviderEvents