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