FindFirstFreeAce method

int FindFirstFreeAce(
  1. Pointer<ACL> pAcl,
  2. Pointer<Pointer<Void>> pAce
)

Implementation

int FindFirstFreeAce(
  ffi.Pointer<ACL> pAcl,
  ffi.Pointer<ffi.Pointer<ffi.Void>> pAce,
) {
  return (_FindFirstFreeAce ??=
      _dylib.lookupFunction<_c_FindFirstFreeAce, _dart_FindFirstFreeAce>(
          'FindFirstFreeAce'))(
    pAcl,
    pAce,
  );
}