mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:46:29 +00:00
[NTOSKRNL] Implement IopCreateDefaultDeviceSecurityDescriptor() and IopCreateSecurityDescriptorPerType()
CORE-9176
This commit is contained in:
parent
07b120bd56
commit
36c38c45ee
2 changed files with 178 additions and 0 deletions
|
@ -526,6 +526,18 @@ typedef struct _RESERVE_IRP_ALLOCATOR
|
|||
CCHAR StackSize;
|
||||
} RESERVE_IRP_ALLOCATOR, *PRESERVE_IRP_ALLOCATOR;
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
typedef enum _SECURITY_DESCRIPTOR_TYPE
|
||||
{
|
||||
RestrictedPublic = 1,
|
||||
UnrestrictedPublic,
|
||||
RestrictedPublicOpen,
|
||||
UnrestrictedPublicOpen,
|
||||
SystemDefault,
|
||||
} SECURITY_DESCRIPTOR_TYPE, *PSECURITY_DESCRIPTOR_TYPE;
|
||||
|
||||
//
|
||||
// Resource code
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue