SERVER_INFO_101 structure
The SERVER_INFO_101 structure contains information about the specified server, including name, platform, type of server, and associated software.
Syntax
typedef struct _SERVER_INFO_101 { DWORD sv101_platform_id; LPWSTR sv101_name; DWORD sv101_version_major; DWORD sv101_version_minor; DWORD sv101_type; LPWSTR sv101_comment; } SERVER_INFO_101, *PSERVER_INFO_101, *LPSERVER_INFO_101;
Members
- sv101_platform_id
-
Type: DWORD
-
The information level to use for platform-specific information.
Possible values for this member are listed in the Lmcons.h header file.
- sv101_name
-
Type: LPWSTR
-
A pointer to a Unicode string specifying the name of a server.
- sv101_version_major
-
Type: DWORD
-
The major version number and the server type.
The major release version number of the operating system is specified in the least significant 4 bits. The server type is specified in the most significant 4 bits. The MAJOR_VERSION_MASK bitmask defined in the Lmserver.h header should be used by an application to obtain the major version number from this member.
- sv101_version_minor
-
Type: DWORD
-
The minor release version number of the operating system.
- sv101_type
-
Type: DWORD
-
The type of software the computer is running.
Possible values for this member are listed in the Lmserver.h header file. This member can be a combination of some of the following values.
The SV_TYPE_ALL constant is defined to 0xFFFFFFFF in the Lmserver.h header file. This constant can be used to check for all server types when used with the NetServerEnum function.
- sv101_comment
-
Type: LPWSTR
-
A pointer to a Unicode string specifying a comment describing the server. The comment can be null.
Remarks
To retrieve a value that indicates whether a share is the root volume in a Dfs tree structure, you must call the NetShareGetInfo function and specify information level 1005.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
See also
- Network Management Overview
- Network Management Structures
- Server Functions
- NetServerEnum
- NetServerGetInfo
- NetServerSetInfo
- NetShareGetInfo