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(
    lpszShortPath,
    lpszLongPath,
    cchBuffer,
    hTransaction,
  );
}