BSTR_ARRAY

A structure that describes an array of strings.

typedef struct tagBSTR_ARRAY {
   DWORD dwCount;
   BSTR* Members;
} BSTR_ARRAY;
struct BSTR_ARRAY {
   DWORD    dwCount;
   string[] Members;
}

Terms

  • dwCount
    Number of strings in Members array.

  • Members
    Array of strings.

Remarks

This structure is returned from the IDebugPortSupplier3::EnumPersistedPorts method.

[C++ only] Each individual string must be freed using SysFreeString, and the Members array must be freed with CoTaskMemFree.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Reference

Structures and Unions

IDebugPortSupplier3::EnumPersistedPorts