struct user_logon_info_2 {
unsigned char usrlog2_eff_name[UNLEN+1];
unsigned char usrlog2_pad_1;
unsigned char LSFAR * LSPTR usrlog2_computer;
unsigned char LSFAR * LSPTR usrlog2_full_name;
unsigned char LSFAR * LSPTR usrlog2_usrcomment;
unsigned long usrlog2_logon_time;
};
where:
- The first three fields in this data structure are
identical to those in the previous level.
- usrlog2_full_name is the full name of the user.
- usrlog2_usrcomment points to an ASCIIZ string
that is a user-settable field for user comments. The string can be NULL.
- usrlog2_logon_time is the time and date (seconds
since 1 January 1970) when the user logged on. It can be NULL for local.
A null pointer indicates that the workstation is ignored.
[Back]
[Next]