Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / include / ntos / security.h
1 #ifndef __INCLUDE_SECURITY_H
2 #define __INCLUDE_SECURITY_H
3
4 #include <windef.h>
5 #include <ntdef.h>
6 #include <winnt.h>
7
8 typedef struct _ROS_ACE_HEADER {
9 UCHAR AceType;
10 UCHAR AceFlags;
11 USHORT AceSize;
12 ACCESS_MASK AccessMask;
13 } ROS_ACE_HEADER, *PROS_ACE_HEADER;
14
15 typedef struct _ROS_ACE {
16 ROS_ACE_HEADER Header;
17 } ROS_ACE, *PROS_ACE;
18
19 typedef ACL_REVISION_INFORMATION *PACL_REVISION_INFORMATION;
20 typedef ACL_SIZE_INFORMATION *PACL_SIZE_INFORMATION;
21
22 typedef struct _SECURITY_DESCRIPTOR_CONTEXT
23 {
24 } SECURITY_DESCRIPTOR_CONTEXT, *PSECURITY_DESCRIPTOR_CONTEXT;
25
26 #endif /* __INCLUDE_SECURITY_H */