https://git.reactos.org/?p=reactos.git;a=commitdiff;h=0fe7fdbdeaccf00607d93c...
commit 0fe7fdbdeaccf00607d93c7cdb6ee4b1e7a345cb Author: George Bișoc george.bisoc@reactos.org AuthorDate: Sun May 9 18:17:53 2021 +0200 Commit: George Bișoc george.bisoc@reactos.org CommitDate: Sun May 9 18:17:53 2021 +0200
[NDK][NTOS:SE] Fix the member offsets in TOKEN, again...
The member offsets in comments were wrong again, whoops.... --- sdk/include/ndk/setypes.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/sdk/include/ndk/setypes.h b/sdk/include/ndk/setypes.h index b74787ae245..b89dff14417 100644 --- a/sdk/include/ndk/setypes.h +++ b/sdk/include/ndk/setypes.h @@ -221,12 +221,12 @@ typedef struct _TOKEN TOKEN_TYPE TokenType; /* 0x80 */ SECURITY_IMPERSONATION_LEVEL ImpersonationLevel; /* 0x84 */ ULONG TokenFlags; /* 0x88 */ - BOOLEAN TokenInUse; /* 0x89 */ - PSECURITY_TOKEN_PROXY_DATA ProxyData; /* 0x8C */ - PSECURITY_TOKEN_AUDIT_DATA AuditData; /* 0x90 */ - PSEP_LOGON_SESSION_REFERENCES LogonSession; /* 0x94 */ - LUID OriginatingLogonSession; /* 0x98 */ - ULONG VariablePart; /* 0xA0 */ + BOOLEAN TokenInUse; /* 0x8C */ + PSECURITY_TOKEN_PROXY_DATA ProxyData; /* 0x90 */ + PSECURITY_TOKEN_AUDIT_DATA AuditData; /* 0x94 */ + PSEP_LOGON_SESSION_REFERENCES LogonSession; /* 0x98 */ + LUID OriginatingLogonSession; /* 0x9C */ + ULONG VariablePart; /* 0xA4 */ } TOKEN, *PTOKEN;
typedef struct _AUX_ACCESS_DATA