The CONNECT_INFO_0_CONTAINER structure contains a value that indicates the number of entries that the NetrConnectionEnum method returns and a pointer to the buffer that contains the entries.
typedef struct _CONNECT_INFO_0_CONTAINER {
DWORD EntriesRead;
[size_is(EntriesRead)] LPCONNECTION_INFO_0 Buffer;
} CONNECT_INFO_0_CONTAINER,
*PCONNECT_INFO_0_CONTAINER,
*LPCONNECT_INFO_0_CONTAINER;
EntriesRead: The number of entries returned by the method.
Buffer: A pointer to the CONNECTION_INFO_0 entries returned by the method.