@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The [AddAce] function adds one or more access control entries (ACEs) to a specified access control list (ACL). !!!!C# Signature: [DllImport("advapi32.dll", SetLastError = true)] static extern bool AddAce(IntPtr pAcl, uint dwAceRevision, uint dwStartingAceIndex, IntPtr pAceList, uint nAceListLength); !!!!VB.NET Signature: <DllImport("advapi32.dll", SetLastError:=true)> _ Public Function AddAce(pAcl As IntPtr, _ dwAceRevision As UInteger, _ dwStartingAceIndex As UInteger, _ pAceList As IntPtr, _ nAceListLength As UInteger) As <MarshalAs(UnmanagedType.Bool)> Boolean End Function !!!!VB Signature <DllImport("advapi32.dll", SetLastError:=true)> _ Public Declare Function AddAce Lib "advapi32.dll" _ (pAcl As Long, _ dwAceRevision As Long, _ dwStartingAceIndex As Long _ pAceList As Long, _ nAceListLength As Long) As Boolean !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! Documentation: AddAce@msdn on MSDN
Edit advapi32.AddAce
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.