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(
    pSecurityDescriptor,
    pOwner,
    bOwnerDefaulted,
  );
}