mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
- fix SECURITY_DESCRIPTOR_RELATIVE and KDPC_DATA
svn path=/branches/ros-amd64-bringup/; revision=34987
This commit is contained in:
parent
f9b1269405
commit
82d72f9d04
2 changed files with 5 additions and 5 deletions
|
@ -787,10 +787,10 @@ typedef struct _SECURITY_DESCRIPTOR_RELATIVE {
|
|||
BYTE Revision;
|
||||
BYTE Sbz1;
|
||||
SECURITY_DESCRIPTOR_CONTROL Control;
|
||||
DWORD Owner;
|
||||
DWORD Group;
|
||||
DWORD Sacl;
|
||||
DWORD Dacl;
|
||||
DWORD_PTR Owner;
|
||||
DWORD_PTR Group;
|
||||
DWORD_PTR Sacl;
|
||||
DWORD_PTR Dacl;
|
||||
} SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
|
||||
typedef enum _TOKEN_INFORMATION_CLASS {
|
||||
TokenUser=1,TokenGroups,TokenPrivileges,TokenOwner,
|
||||
|
|
|
@ -558,7 +558,7 @@ typedef enum _PROCESSOR_CACHE_TYPE
|
|||
typedef struct _KDPC_DATA
|
||||
{
|
||||
LIST_ENTRY DpcListHead;
|
||||
ULONG DpcLock;
|
||||
ULONG_PTR DpcLock;
|
||||
volatile ULONG DpcQueueDepth;
|
||||
ULONG DpcCount;
|
||||
} KDPC_DATA, *PKDPC_DATA;
|
||||
|
|
Loading…
Reference in a new issue