MakeSelfRelativeSD method

int MakeSelfRelativeSD(
  1. Pointer<Void> pAbsoluteSecurityDescriptor,
  2. Pointer<Void> pSelfRelativeSecurityDescriptor,
  3. Pointer<Uint64> lpdwBufferLength
)

Implementation

int MakeSelfRelativeSD(
  ffi.Pointer<ffi.Void> pAbsoluteSecurityDescriptor,
  ffi.Pointer<ffi.Void> pSelfRelativeSecurityDescriptor,
  ffi.Pointer<ffi.Uint64> lpdwBufferLength,
) {
  return (_MakeSelfRelativeSD ??=
      _dylib.lookupFunction<_c_MakeSelfRelativeSD, _dart_MakeSelfRelativeSD>(
          'MakeSelfRelativeSD'))(
    pAbsoluteSecurityDescriptor,
    pSelfRelativeSecurityDescriptor,
    lpdwBufferLength,
  );
}