2.2.4.4 CONNECT_INFO_1_CONTAINER

The CONNECT_INFO_1_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_1_CONTAINER {
   DWORD EntriesRead;
   [size_is(EntriesRead)] LPCONNECTION_INFO_1 Buffer;
 } CONNECT_INFO_1_CONTAINER,
  *PCONNECT_INFO_1_CONTAINER,
  *LPCONNECT_INFO_1_CONTAINER;

EntriesRead: The number of entries returned by the method.

Buffer: A pointer to the CONNECTION_INFO_1 entries returned by the method.