RtlNormalizeSecurityDescriptor method
Implementation
int RtlNormalizeSecurityDescriptor(
ffi.Pointer<ffi.Pointer<ffi.Void>> SecurityDescriptor,
int SecurityDescriptorLength,
ffi.Pointer<ffi.Pointer<ffi.Void>> NewSecurityDescriptor,
ffi.Pointer<ffi.Uint64> NewSecurityDescriptorLength,
int CheckOnly,
) {
return (_RtlNormalizeSecurityDescriptor ??= _dylib.lookupFunction<
_c_RtlNormalizeSecurityDescriptor,
_dart_RtlNormalizeSecurityDescriptor>(
'RtlNormalizeSecurityDescriptor'))(
SecurityDescriptor,
SecurityDescriptorLength,
NewSecurityDescriptor,
NewSecurityDescriptorLength,
CheckOnly,
);
}