SECURITY_DESCRIPTOR_CONTROL (Enums)
Last changed: -72.52.96.15

.
Summary
The SECURITY_DESCRIPTOR_CONTROL data type is a set of bit flags that qualify the meaning of a security descriptor or its components. Each security descriptor has a Control member that stores the SECURITY_DESCRIPTOR_CONTROL bits.

C# Definition:

enum SECURITY_DESCRIPTOR_CONTROL : uint
     {
     SE_DACL_AUTO_INHERIT_REQ = 0x0100,
     SE_DACL_AUTO_INHERITED = 0x0400,
     SE_DACL_DEFAULTED = 0x0008,
     SE_DACL_PRESENT = 0x0004,
     SE_DACL_PROTECTED = 0x1000,
     SE_GROUP_DEFAULTED = 0x0002,
     SE_OWNER_DEFAULTED = 0x0001,
     SE_RM_CONTROL_VALID = 0x4000,
     SE_SACL_AUTO_INHERIT_REQ = 0x0200,
     SE_SACL_AUTO_INHERITED = 0x0800,
     SE_SACL_DEFAULTED = 0x0008,
     SE_SACL_PRESENT = 0x0010,
     SE_SACL_PROTECTED = 0x2000,
     SE_SELF_RELATIVE = 0x8000
     }

VB Definition:

Enum SECURITY_DESCRIPTOR_CONTROL
   TODO
End Enum

Notes:

Used By:

GetSecurityDescriptorControl

GetSecurityDescriptorDacl

GetSecurityDescriptorGroup

GetSecurityDescriptorOwner

GetSecurityDescriptorSacl

SetSecurityDescriptorControl

SetSecurityDescriptorDacl

SetSecurityDescriptorGroup

SetSecurityDescriptorOwner

SetSecurityDescriptorSacl

Documentation