SetSecurityDescriptorOwner method
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,
);
}