GetLongPathNameA method

int GetLongPathNameA(
  1. Pointer<Int8> lpszShortPath,
  2. Pointer<Int8> lpszLongPath,
  3. int cchBuffer
)

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,
  );
}