CreateHardLinkTransactedA method

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

Implementation

int CreateHardLinkTransactedA(
  ffi.Pointer<ffi.Int8> lpFileName,
  ffi.Pointer<ffi.Int8> lpExistingFileName,
  ffi.Pointer<SECURITY_ATTRIBUTES> lpSecurityAttributes,
  ffi.Pointer<ffi.Void> hTransaction,
) {
  return _CreateHardLinkTransactedA(
    lpFileName,
    lpExistingFileName,
    lpSecurityAttributes,
    hTransaction,
  );
}