USER_INFO_10
The USER_INFO_10 structure contains information about a user account, including the account name, comments associated with the account, and the user's full name.
typedef struct _USER_INFO_10 {
LPWSTR usri10_name;
LPWSTR usri10_comment;
LPWSTR usri10_usr_comment;
LPWSTR usri10_full_name;
}USER_INFO_10, *PUSER_INFO_10, *LPUSER_INFO_10;
Members
- usri10_name
- Pointer to a Unicode string that specifies the name of the user account. Calls to the NetUserSetInfo function ignore this member. The number of characters in the name cannot exceed the value of UNLEN.
- usri10_comment
- Pointer to a Unicode string that contains a comment associated with the user account. The string can be a null string, or can have any number of characters before the terminating null character.
- usri10_usr_comment
- Pointer to a Unicode string that contains a user comment. This string can be a null string, or it can have any number of characters before the terminating null character.
- usri10_full_name
- Pointer to a Unicode string that contains the full name of the user. This string can be a null string, or it can have any number of characters before the terminating null character.
Windows NT/2000: Requires Windows NT 3.1 or later.
Windows 95/98: Unsupported.
Header: Declared in Lmaccess.h.
See Also
Network Management Overview, Network Management Structures, User Functions, NetUserDel, NetUserEnum, NetUserSetInfo