Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

SECURITY_DESCRIPTOR_CONTROL (Enums)
 
.
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
     }
       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
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions