GetShortPathNameW method
Implementation
int GetShortPathNameW(
ffi.Pointer<ffi.Uint16> lpszLongPath,
ffi.Pointer<ffi.Uint16> lpszShortPath,
int cchBuffer,
) {
return (_GetShortPathNameW ??=
_dylib.lookupFunction<_c_GetShortPathNameW, _dart_GetShortPathNameW>(
'GetShortPathNameW'))(
lpszLongPath,
lpszShortPath,
cchBuffer,
);
}