SECURITY_DESCRIPTOR (Structures)
Last changed: -211.132.29.1

.
Summary
The SECURITY_DESCRIPTOR structure contains the security information associated with an object. Applications use this structure to set and query an object's security status.

C# Definition:

[StructLayoutAttribute(LayoutKind.Sequential)]
struct SECURITY_DESCRIPTOR {
   public byte revision;
   public byte size;
   public short control;
   public IntPtr owner;
   public IntPtr group;
   public IntPtr sacl;
   public IntPtr dacl;
}

VB Definition:

Structure SECURITY_DESCRIPTOR
   'TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation