GetLongPathNameTransactedW method
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,
);
}