AddResourceAttributeAce method

int AddResourceAttributeAce(
  1. Pointer<ACL> pAcl,
  2. int dwAceRevision,
  3. int AceFlags,
  4. int AccessMask,
  5. Pointer<Void> pSid,
  6. Pointer<PCLAIM_SECURITY_ATTRIBUTES_INFORMATION> pAttributeInfo,
  7. Pointer<Uint64> pReturnLength,
)

Implementation

int AddResourceAttributeAce(
  ffi.Pointer<ACL> pAcl,
  int dwAceRevision,
  int AceFlags,
  int AccessMask,
  ffi.Pointer<ffi.Void> pSid,
  ffi.Pointer<PCLAIM_SECURITY_ATTRIBUTES_INFORMATION> pAttributeInfo,
  ffi.Pointer<ffi.Uint64> pReturnLength,
) {
  return (_AddResourceAttributeAce ??= _dylib.lookupFunction<
      _c_AddResourceAttributeAce,
      _dart_AddResourceAttributeAce>('AddResourceAttributeAce'))(
    pAcl,
    dwAceRevision,
    AceFlags,
    AccessMask,
    pSid,
    pAttributeInfo,
    pReturnLength,
  );
}