SetSecurityDescriptorOwner method

int SetSecurityDescriptorOwner(
  1. Pointer<Void> pSecurityDescriptor,
  2. Pointer<Void> pOwner,
  3. int bOwnerDefaulted
)

Implementation

int SetSecurityDescriptorOwner(
  ffi.Pointer<ffi.Void> pSecurityDescriptor,
  ffi.Pointer<ffi.Void> pOwner,
  int bOwnerDefaulted,
) {
  return (_SetSecurityDescriptorOwner ??= _dylib.lookupFunction<
      _c_SetSecurityDescriptorOwner,
      _dart_SetSecurityDescriptorOwner>('SetSecurityDescriptorOwner'))(
    pSecurityDescriptor,
    pOwner,
    bOwnerDefaulted,
  );
}