GetFullPathNameTransactedW method

int GetFullPathNameTransactedW(
  1. Pointer<Uint16> lpFileName,
  2. int nBufferLength,
  3. Pointer<Uint16> lpBuffer,
  4. Pointer<Pointer<Uint16>> lpFilePart,
  5. Pointer<Void> hTransaction,
)

Implementation

int GetFullPathNameTransactedW(
  ffi.Pointer<ffi.Uint16> lpFileName,
  int nBufferLength,
  ffi.Pointer<ffi.Uint16> lpBuffer,
  ffi.Pointer<ffi.Pointer<ffi.Uint16>> lpFilePart,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return _GetFullPathNameTransactedW(
    lpFileName,
    nBufferLength,
    lpBuffer,
    lpFilePart,
    hTransaction,
  );
}