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 AddAccessAllowedAce(pAcl As IntPtr, _
dwAceRevision As UInteger, _
AccessMask As ACCESS_MASK, _
pSid As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
VB Signature:
Public Declare Function AddAccessAllowedAce Lib "advapi32.dll" _
(pAcl As Long, _
dwAceRevision As Long, _
AccessMask As ACCESS_MASK, _
pSid As Long) As Boolean
Declare Function AddAccessAllowedAce Lib "advapi32.dll" (TODO) As TODO
The [AddAccessAllowedAce] function adds an access-allowed access control entry (ACE) to an access control list (ACL). The access is granted to a specified security identifier (SID).
5/19/2019 4:07:26 AM - -91.119.3.204
The [ACCESS_MASK] data type is a double word value that defines standard, specific, and generic rights. These rights are used in access control entries (ACEs) and are the primary means of specifying the requested or granted access to an object.
5/10/2014 10:45:06 AM - -193.195.33.66
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).