AUTH_USER

typedef  struct  auth_user {
    CPU_CHAR    Name[AUTH_NAME_MAX_LENGTH];
    AUTH_RIGHT  Rights;
} AUTH_USER;
FileUsed for

auth.h

Argument of various authentication functions.

A pointer to a AUTH_USER structure is the argument of many authentication functions.

Members

Name

Name of the user, restricted to 32 characters, by default.

Rights

Combination of rights associated to this user.

Notes

None.