SetSecurityInfo (Enums)
Last changed: -178.7.65.20

.
Summary
TODO - a short description

C# Definition:

enum SetSecurityInfo {
   TODO
}


  [DllImport("advapi32.dll", EntryPoint = "SetSecurityInfo", CallingConvention = CallingConvention.Winapi,
    SetLastError = true, ExactSpelling = true, CharSet = CharSet.Unicode)]
    internal static extern /*DWORD*/ uint SetSecurityInfoByHandle(SafeHandle handle, /*DWORD*/ uint objectType, /*DWORD*/ uint securityInformation,
    byte[] owner, byte[] group, byte[] dacl, byte[] sacl);

  [DllImport("advapi32.dll", EntryPoint = "SetNamedSecurityInfoW", CallingConvention = CallingConvention.Winapi,
    SetLastError = true, ExactSpelling = true, CharSet = CharSet.Unicode)]
    internal static extern /*DWORD*/ uint SetSecurityInfoByName(string name, /*DWORD*/ uint objectType, /*DWORD*/ uint securityInformation,
    byte[] owner, byte[] group, byte[] dacl, byte[] sacl);

VB Definition:

Enum SetSecurityInfo
   TODO
End Enum

Notes:

None.

Documentation