GetShortPathNameA method
Implementation
int GetShortPathNameA(
ffi.Pointer<ffi.Int8> lpszLongPath,
ffi.Pointer<ffi.Int8> lpszShortPath,
int cchBuffer,
) {
return (_GetShortPathNameA ??=
_dylib.lookupFunction<_c_GetShortPathNameA, _dart_GetShortPathNameA>(
'GetShortPathNameA'))(
lpszLongPath,
lpszShortPath,
cchBuffer,
);
}