include: Add TOKEN_MANDATORY_LEVEL definitions.
This commit is contained in:
parent
0b64d319c9
commit
d5e5b43cec
|
@ -3748,13 +3748,16 @@ typedef struct _ACL_SIZE_INFORMATION
|
||||||
#define SE_IMPERSONATE_NAME TEXT("SeImpersonatePrivilege")
|
#define SE_IMPERSONATE_NAME TEXT("SeImpersonatePrivilege")
|
||||||
#define SE_CREATE_GLOBAL_NAME TEXT("SeCreateGlobalPrivilege")
|
#define SE_CREATE_GLOBAL_NAME TEXT("SeCreateGlobalPrivilege")
|
||||||
|
|
||||||
#define SE_GROUP_MANDATORY 0x00000001
|
#define SE_GROUP_MANDATORY 0x00000001
|
||||||
#define SE_GROUP_ENABLED_BY_DEFAULT 0x00000002
|
#define SE_GROUP_ENABLED_BY_DEFAULT 0x00000002
|
||||||
#define SE_GROUP_ENABLED 0x00000004
|
#define SE_GROUP_ENABLED 0x00000004
|
||||||
#define SE_GROUP_OWNER 0x00000008
|
#define SE_GROUP_OWNER 0x00000008
|
||||||
#define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010
|
#define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010
|
||||||
#define SE_GROUP_LOGON_ID 0xC0000000
|
#define SE_GROUP_INTEGRITY 0x00000020
|
||||||
#define SE_GROUP_RESOURCE 0x20000000
|
#define SE_GROUP_INTEGRITY_ENABLED 0x00000040
|
||||||
|
#define SE_GROUP_LOGON_ID 0xC0000000
|
||||||
|
#define SE_GROUP_RESOURCE 0x20000000
|
||||||
|
#define SE_GROUP_VALID_ATTRIBUTES 0xE000007F
|
||||||
|
|
||||||
#define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001
|
#define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001
|
||||||
#define SE_PRIVILEGE_ENABLED 0x00000002
|
#define SE_PRIVILEGE_ENABLED 0x00000002
|
||||||
|
@ -4228,6 +4231,9 @@ typedef struct _TOKEN_ELEVATION {
|
||||||
DWORD TokenIsElevated;
|
DWORD TokenIsElevated;
|
||||||
} TOKEN_ELEVATION, * PTOKEN_ELEVATION;
|
} TOKEN_ELEVATION, * PTOKEN_ELEVATION;
|
||||||
|
|
||||||
|
typedef struct _TOKEN_MANDATORY_LABEL {
|
||||||
|
SID_AND_ATTRIBUTES Label;
|
||||||
|
} TOKEN_MANDATORY_LABEL, * PTOKEN_MANDATORY_LABEL;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ACLs of NT
|
* ACLs of NT
|
||||||
|
|
Loading…
Reference in New Issue