mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTOSKRNL] Use proper enum type for IopCreateSecurityDescriptorPerType()
This commit is contained in:
parent
73e7a5d474
commit
67e7399164
2 changed files with 2 additions and 2 deletions
|
@ -527,7 +527,7 @@ typedef struct _RESERVE_IRP_ALLOCATOR
|
||||||
} RESERVE_IRP_ALLOCATOR, *PRESERVE_IRP_ALLOCATOR;
|
} RESERVE_IRP_ALLOCATOR, *PRESERVE_IRP_ALLOCATOR;
|
||||||
|
|
||||||
//
|
//
|
||||||
//
|
// Type selection for IopCreateSecurityDescriptorPerType()
|
||||||
//
|
//
|
||||||
typedef enum _SECURITY_DESCRIPTOR_TYPE
|
typedef enum _SECURITY_DESCRIPTOR_TYPE
|
||||||
{
|
{
|
||||||
|
|
|
@ -727,7 +727,7 @@ IopVerifyDeviceObjectOnStack(IN PDEVICE_OBJECT BaseDeviceObject,
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
IopCreateSecurityDescriptorPerType(IN PSECURITY_DESCRIPTOR SecurityDescriptor,
|
IopCreateSecurityDescriptorPerType(IN PSECURITY_DESCRIPTOR SecurityDescriptor,
|
||||||
IN ULONG Type,
|
IN SECURITY_DESCRIPTOR_TYPE Type,
|
||||||
OUT PULONG OutputFlags)
|
OUT PULONG OutputFlags)
|
||||||
{
|
{
|
||||||
PACL Dacl;
|
PACL Dacl;
|
||||||
|
|
Loading…
Reference in a new issue