AddAccessAllowedAce method
Implementation
int AddAccessAllowedAce(
ffi.Pointer<ACL> pAcl,
int dwAceRevision,
int AccessMask,
ffi.Pointer<ffi.Void> pSid,
) {
return (_AddAccessAllowedAce ??= _dylib.lookupFunction<
_c_AddAccessAllowedAce,
_dart_AddAccessAllowedAce>('AddAccessAllowedAce'))(
pAcl,
dwAceRevision,
AccessMask,
pSid,
);
}