CreateHardLinkTransactedW method

int CreateHardLinkTransactedW(
  1. Pointer<Uint16> lpFileName,
  2. Pointer<Uint16> lpExistingFileName,
  3. Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  4. Pointer<Void> hTransaction,
)

Implementation

int CreateHardLinkTransactedW(
  ffi.Pointer<ffi.Uint16> lpFileName,
  ffi.Pointer<ffi.Uint16> lpExistingFileName,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return _CreateHardLinkTransactedW(
    lpFileName,
    lpExistingFileName,
    lpSecurityAttributes,
    hTransaction,
  );
}