@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm 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)] public 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: <StructLayoutAttribute(LayoutKind.Sequential)> _ Public Structure SECURITY_DESCRIPTOR Public revision As Byte Public size As Byte Public control As Short Public owner As IntPtr Public group As IntPtr Public sacl As IntPtr Public dacl As IntPtr End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: SECURITY_DESCRIPTOR@msdn on MSDN
Edit Structures.SECURI...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.