The SERVER_ALIAS_INFO_0_CONTAINER structure contains a value that indicates the number of entries that the NetrServerAliasEnum method returns and a pointer to the buffer that contains the entries.
typedef struct _SERVER_ALIAS_INFO_0_CONTAINER {
DWORD EntriesRead;
[size_is(EntriesRead)] LPSERVER_ALIAS_INFO_0 Buffer;
} SERVER_ALIAS_INFO_0_CONTAINER;
EntriesRead: The number of entries that the method returns.
Buffer: A pointer to the SERVER_ALIAS_INFO_0 entries that the method returns.