CreateHardLinkTransactedW method
Implementation
int CreateHardLinkTransactedW(
ffi.Pointer<ffi.Uint16> lpFileName,
ffi.Pointer<ffi.Uint16> lpExistingFileName,
ffi.Pointer<LPSECURITY_ATTRIBUTES> lpSecurityAttributes,
ffi.Pointer<ffi.Void> hTransaction,
) {
return (_CreateHardLinkTransactedW ??= _dylib.lookupFunction<
_c_CreateHardLinkTransactedW,
_dart_CreateHardLinkTransactedW>('CreateHardLinkTransactedW'))(
lpFileName,
lpExistingFileName,
lpSecurityAttributes,
hTransaction,
);
}