GetSecurityDescriptorOwner method
Implementation
int GetSecurityDescriptorOwner(
ffi.Pointer<ffi.Void> pSecurityDescriptor,
ffi.Pointer<ffi.Pointer<ffi.Void>> pOwner,
ffi.Pointer<ffi.Int32> lpbOwnerDefaulted,
) {
return (_GetSecurityDescriptorOwner ??= _dylib.lookupFunction<
_c_GetSecurityDescriptorOwner,
_dart_GetSecurityDescriptorOwner>('GetSecurityDescriptorOwner'))(
pSecurityDescriptor,
pOwner,
lpbOwnerDefaulted,
);
}