GetLongPathNameW method
Implementation
int GetLongPathNameW(
ffi.Pointer<ffi.Uint16> lpszShortPath,
ffi.Pointer<ffi.Uint16> lpszLongPath,
int cchBuffer,
) {
return (_GetLongPathNameW ??=
_dylib.lookupFunction<_c_GetLongPathNameW, _dart_GetLongPathNameW>(
'GetLongPathNameW'))(
lpszShortPath,
lpszLongPath,
cchBuffer,
);
}