GetVolumePathNameW method
Implementation
int GetVolumePathNameW(
ffi.Pointer<ffi.Uint16> lpszFileName,
ffi.Pointer<ffi.Uint16> lpszVolumePathName,
int cchBufferLength,
) {
return (_GetVolumePathNameW ??=
_dylib.lookupFunction<_c_GetVolumePathNameW, _dart_GetVolumePathNameW>(
'GetVolumePathNameW'))(
lpszFileName,
lpszVolumePathName,
cchBufferLength,
);
}