Prev Next
The WKSTA_INFO_100 structure contains information about a workstation
environment, including platform-specific information, the name of the domain
and the local computer, and information concerning the LAN Manager software. 
typedef struct _WKSTA_INFO_100 {
    DWORD     wki100_platform_id;
    LPTSTR    wki100_computername;
    LPTSTR    wki100_langroup;
    DWORD     wki100_ver_major;
    DWORD     wki100_ver_minor;
}WKSTA_INFO_100, *PWKSTA_INFO_100, *LPWKSTA_INFO_100;
 
Members
- 
wki100_platform_id
- 
Indicates the information level to use to retrieve platform-specific
information.
 
- 
wki100_computername
- 
Points to a Unicode string containing the name of the local computer.
 
- 
wki100_langroup
- 
Points to a Unicode string containing the name of the domain to which the
computer belongs.
 
- 
wki100_ver_major
- 
Specifies the major version number of the LAN Manager software running on the
computer.
 
- 
wki100_ver_minor
- 
Specifies the minor version number of the LAN Manager software running on the
computer.
See Also
NetWkstaGetInfo, NetWkstaSetInfo