mirror of
https://github.com/reactos/reactos.git
synced 2025-05-19 17:14:32 +00:00
[NDK][NTOS:SE] Fix the member offsets in TOKEN, again...
The member offsets in comments were wrong again, whoops....
This commit is contained in:
parent
f5dc1c77b5
commit
0fe7fdbdea
1 changed files with 6 additions and 6 deletions
|
@ -221,12 +221,12 @@ typedef struct _TOKEN
|
||||||
TOKEN_TYPE TokenType; /* 0x80 */
|
TOKEN_TYPE TokenType; /* 0x80 */
|
||||||
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel; /* 0x84 */
|
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel; /* 0x84 */
|
||||||
ULONG TokenFlags; /* 0x88 */
|
ULONG TokenFlags; /* 0x88 */
|
||||||
BOOLEAN TokenInUse; /* 0x89 */
|
BOOLEAN TokenInUse; /* 0x8C */
|
||||||
PSECURITY_TOKEN_PROXY_DATA ProxyData; /* 0x8C */
|
PSECURITY_TOKEN_PROXY_DATA ProxyData; /* 0x90 */
|
||||||
PSECURITY_TOKEN_AUDIT_DATA AuditData; /* 0x90 */
|
PSECURITY_TOKEN_AUDIT_DATA AuditData; /* 0x94 */
|
||||||
PSEP_LOGON_SESSION_REFERENCES LogonSession; /* 0x94 */
|
PSEP_LOGON_SESSION_REFERENCES LogonSession; /* 0x98 */
|
||||||
LUID OriginatingLogonSession; /* 0x98 */
|
LUID OriginatingLogonSession; /* 0x9C */
|
||||||
ULONG VariablePart; /* 0xA0 */
|
ULONG VariablePart; /* 0xA4 */
|
||||||
} TOKEN, *PTOKEN;
|
} TOKEN, *PTOKEN;
|
||||||
|
|
||||||
typedef struct _AUX_ACCESS_DATA
|
typedef struct _AUX_ACCESS_DATA
|
||||||
|
|
Loading…
Reference in a new issue