GetLongPathNameA method
Implementation
int GetLongPathNameA(
ffi.Pointer<ffi.Int8> lpszShortPath,
ffi.Pointer<ffi.Int8> lpszLongPath,
int cchBuffer,
) {
return (_GetLongPathNameA ??=
_dylib.lookupFunction<_c_GetLongPathNameA, _dart_GetLongPathNameA>(
'GetLongPathNameA'))(
lpszShortPath,
lpszLongPath,
cchBuffer,
);
}