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