GetVolumeInformationW method
Implementation
int GetVolumeInformationW(
ffi.Pointer<ffi.Uint16> lpRootPathName,
ffi.Pointer<ffi.Uint16> lpVolumeNameBuffer,
int nVolumeNameSize,
ffi.Pointer<ffi.Uint64> lpVolumeSerialNumber,
ffi.Pointer<ffi.Uint64> lpMaximumComponentLength,
ffi.Pointer<ffi.Uint64> lpFileSystemFlags,
ffi.Pointer<ffi.Uint16> lpFileSystemNameBuffer,
int nFileSystemNameSize,
) {
return (_GetVolumeInformationW ??= _dylib.lookupFunction<
_c_GetVolumeInformationW,
_dart_GetVolumeInformationW>('GetVolumeInformationW'))(
lpRootPathName,
lpVolumeNameBuffer,
nVolumeNameSize,
lpVolumeSerialNumber,
lpMaximumComponentLength,
lpFileSystemFlags,
lpFileSystemNameBuffer,
nFileSystemNameSize,
);
}