TOKEN_INFORMATION_CLASS    
The TOKEN_INFORMATION_CLASS
enumeration type contains values that specify the type of information being
assigned to or retrieved from an access token. 
typedef enum _TOKEN_INFORMATION_CLASS {  // tic 
    TokenUser
= 1, 
   
TokenGroups, 
   
TokenPrivileges, 
   
TokenOwner, 
    TokenPrimaryGroup,
   
TokenDefaultDacl, 
   
TokenSource, 
    TokenType,
   
TokenImpersonationLevel, 
   
TokenStatistics 
} TOKEN_INFORMATION_CLASS; 
 
See Also