Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than advapi32, prefix the name with the module name and a period.
<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.
C# Signature:
Alternative Managed API:
Do you know one? Please contribute it!
/// <summary>
/// The AddAce function adds one or more access control entries (ACEs) to a specified access control list (ACL).
/// </summary>
/// <param name="pAcl">A pointer to an ACL. This function adds an ACE to this ACL.</param>
/// <param name="dwAceRevision">Specifies the revision level of the ACL being modified.</param>
/// <param name="dwStartingAceIndex">Specifies the position in the ACL's list of ACEs at
/// which to add new ACEs. A value of zero inserts the ACEs at the beginning of the
/// list. A value of MAXDWORD appends the ACEs to the end of the list.</param>
/// <param name="pAceList">A pointer to a list of one or more ACEs to be added
/// to the specified ACL. The ACEs in the list must be stored contiguously.</param>
/// <param name="nAceListLength">Specifies the size, in bytes, of the input buffer
/// pointed to by the pAceList parameter.</param>
/// <returns>If the function succeeds, the return value is nonzero.</returns>
[System.Runtime.InteropServices.DllImport("advapi32.dll", SetLastError = true)]
public static unsafe extern bool AddAce(
ACL* pAcl,
uint dwAceRevision,
uint dwStartingAceIndex,
[System.Runtime.InteropServices.MarshalAs(
System.Runtime.InteropServices.UnmanagedType.FunctionPtr)]
System.Collections.Generic.List<ACL> 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!
The [AddAce] function adds one or more access control entries (ACEs) to a specified access control list (ACL).
11/18/2020 11:36:07 AM - -192.180.154.40
TODO - a short description
10/16/2008 7:58:14 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).