GetFileSecurityA method
Implementation
int GetFileSecurityA(
ffi.Pointer<ffi.Int8> lpFileName,
int RequestedInformation,
ffi.Pointer<ffi.Void> pSecurityDescriptor,
int nLength,
ffi.Pointer<ffi.Uint64> lpnLengthNeeded,
) {
return (_GetFileSecurityA ??=
_dylib.lookupFunction<_c_GetFileSecurityA, _dart_GetFileSecurityA>(
'GetFileSecurityA'))(
lpFileName,
RequestedInformation,
pSecurityDescriptor,
nLength,
lpnLengthNeeded,
);
}