GetVolumePathNameA method
Implementation
int GetVolumePathNameA(
ffi.Pointer<ffi.Int8> lpszFileName,
ffi.Pointer<ffi.Int8> lpszVolumePathName,
int cchBufferLength,
) {
return (_GetVolumePathNameA ??=
_dylib.lookupFunction<_c_GetVolumePathNameA, _dart_GetVolumePathNameA>(
'GetVolumePathNameA'))(
lpszFileName,
lpszVolumePathName,
cchBufferLength,
);
}