GetLongPathNameTransactedA method

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

Implementation

int GetLongPathNameTransactedA(
  ffi.Pointer<ffi.Int8> lpszShortPath,
  ffi.Pointer<ffi.Int8> lpszLongPath,
  int cchBuffer,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return (_GetLongPathNameTransactedA ??= _dylib.lookupFunction<
      _c_GetLongPathNameTransactedA,
      _dart_GetLongPathNameTransactedA>('GetLongPathNameTransactedA'))(
    lpszShortPath,
    lpszLongPath,
    cchBuffer,
    hTransaction,
  );
}