GetLongPathNameW method

int GetLongPathNameW(
  1. Pointer<Uint16> lpszShortPath,
  2. Pointer<Uint16> lpszLongPath,
  3. int cchBuffer
)

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