Add security information and access token types
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 33s
Builds / ExectOS (amd64, release) (push) Successful in 42s
Builds / ExectOS (i686, debug) (push) Successful in 31s
Builds / ExectOS (i686, release) (push) Successful in 39s

This commit is contained in:
2026-07-03 10:46:56 +02:00
parent b76a240fd8
commit c1bc4e4940
3 changed files with 20 additions and 6 deletions

View File

@@ -20,6 +20,9 @@
/* Access mask */
typedef ULONG ACCESS_MASK, *PACCESS_MASK;
/* Access token */
typedef PVOID PACCESS_TOKEN;
/* Kernel affinity */
typedef ULONG_PTR KAFFINITY, *PKAFFINITY;
@@ -50,12 +53,8 @@ typedef PVOID PSECURITY_DESCRIPTOR;
/* Security context tracking mode */
typedef BOOLEAN SECURITY_CONTEXT_TRACKING_MODE, *PSECURITY_CONTEXT_TRACKING_MODE;
/* 128-bit 16-byte aligned XMM register */
typedef struct _M128
{
ULONGLONG Low;
LONGLONG High;
} ALIGN(16) M128, *PM128;
/* Security information */
typedef ULONG SECURITY_INFORMATION, *PSECURITY_INFORMATION;
#endif /* __XTOS_ASSEMBLER_ */
#endif /* __XTDK_XTBASE_H */