2.2.4.92 DISK_ENUM_CONTAINER

The DISK_ENUM_CONTAINER structure contains a value that indicates the number of entries that the NetrServerDiskEnum method returns and a pointer to the buffer that contains the entries.

 typedef struct _DISK_ENUM_CONTAINER {
   DWORD EntriesRead;
   [size_is(EntriesRead), length_is(EntriesRead)] 
     LPDISK_INFO Buffer;
 } DISK_ENUM_CONTAINER;

EntriesRead: The number of entries that the method returns.

Buffer: A pointer to the DISK_INFO entries that the method returns.