GetLongPathNameTransactedW method

int GetLongPathNameTransactedW(
  1. Pointer<Uint16> lpszShortPath,
  2. Pointer<Uint16> lpszLongPath,
  3. int cchBuffer,
  4. Pointer<Void> hTransaction,
)

Implementation

int GetLongPathNameTransactedW(
  ffi.Pointer<ffi.Uint16> lpszShortPath,
  ffi.Pointer<ffi.Uint16> lpszLongPath,
  int cchBuffer,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return (_GetLongPathNameTransactedW ??= _dylib.lookupFunction<
      _c_GetLongPathNameTransactedW,
      _dart_GetLongPathNameTransactedW>('GetLongPathNameTransactedW'))(
    lpszShortPath,
    lpszLongPath,
    cchBuffer,
    hTransaction,
  );
}