2.2.4.104 SERVER_ALIAS_ENUM_STRUCT
The SERVER_ALIAS_ENUM_STRUCT structure specifies the information level that the client requests in the NetrServerAliasEnum method and encapsulates the SERVER_ALIAS_ENUM_UNION union that receives the entries that are enumerated by the server.
-
typedef struct _SERVER_ALIAS_ENUM_STRUCT { DWORD Level; [switch_is(Level)] union _SERVER_ALIAS_ENUM_UNION { [case(0)] SERVER_ALIAS_INFO_0_CONTAINER* Level0; } ServerAliasInfo; } SERVER_ALIAS_ENUM_STRUCT, *PSERVER_ALIAS_ENUM_STRUCT, *LPSERVER_ALIAS_ENUM_STRUCT;
Level: Specifies the information level of the data. This parameter MUST have one of the following values.
-
Value
Meaning
0
SERVER_ALIAS_INFO_0_CONTAINER
ServerAliasInfo: Contains information about server aliases in the format that is determined by the Level parameter, as shown in the preceding table. This member receives the enumerated information.