GetVolumeInformationA method
Implementation
int GetVolumeInformationA(
ffi.Pointer<ffi.Int8> lpRootPathName,
ffi.Pointer<ffi.Int8> lpVolumeNameBuffer,
int nVolumeNameSize,
ffi.Pointer<ffi.Uint64> lpVolumeSerialNumber,
ffi.Pointer<ffi.Uint64> lpMaximumComponentLength,
ffi.Pointer<ffi.Uint64> lpFileSystemFlags,
ffi.Pointer<ffi.Int8> lpFileSystemNameBuffer,
int nFileSystemNameSize,
) {
return (_GetVolumeInformationA ??= _dylib.lookupFunction<
_c_GetVolumeInformationA,
_dart_GetVolumeInformationA>('GetVolumeInformationA'))(
lpRootPathName,
lpVolumeNameBuffer,
nVolumeNameSize,
lpVolumeSerialNumber,
lpMaximumComponentLength,
lpFileSystemFlags,
lpFileSystemNameBuffer,
nFileSystemNameSize,
);
}