mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Fix SECURITY_DESCRIPTOR_RELATIVE that I broke, spotted by Stefan
svn path=/trunk/; revision=43348
This commit is contained in:
parent
ce47d4b62f
commit
543c259ae7
1 changed files with 4 additions and 4 deletions
|
@ -945,10 +945,10 @@ typedef struct _SECURITY_DESCRIPTOR_RELATIVE {
|
|||
UCHAR Revision;
|
||||
UCHAR Sbz1;
|
||||
SECURITY_DESCRIPTOR_CONTROL Control;
|
||||
DWORD_PTR Owner;
|
||||
DWORD_PTR Group;
|
||||
DWORD_PTR Sacl;
|
||||
DWORD_PTR Dacl;
|
||||
ULONG Owner;
|
||||
ULONG Group;
|
||||
ULONG Sacl;
|
||||
ULONG Dacl;
|
||||
} SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
|
||||
typedef enum _TOKEN_INFORMATION_CLASS {
|
||||
TokenUser=1,TokenGroups,TokenPrivileges,TokenOwner,
|
||||
|
|
Loading…
Reference in a new issue