// ntifs.h
typedef struct _TOKEN_CONTROL {
LUID TokenId;
LUID AuthenticationId;
LUID ModifiedId;
TOKEN_SOURCE TokenSource;
} TOKEN_CONTROL, *PTOKEN_CONTROL;
View the official Windows Driver Kit DDI referenceNo description available.
The TOKEN_CONTROL structure contains information that identifies an access token.
TokenIdSpecifies a locally unique identifier (LUID) identifying this instance of the token object.
AuthenticationIdSpecifies an LUID assigned to the session this token represents. There can be many tokens representing a single logon session.
ModifiedIdSpecifies an LUID that changes each time the token is modified. An application can use this value as a test of whether a security context has changed since it was last used.
TokenSourceSpecifies a TOKEN_SOURCE structure identifying the source that issued the token. This information is used in audit logging.