mirror of
https://github.com/ApfelTeeSaft/Itemzflow.git
synced 2026-09-03 03:33:36 +00:00
- Fixed dumping DLCs and AC w/p data - Added an Install all PKGs option for folders with more than 1 PKG - Installing a PKG will no longer boot you back to settings - Carried over some improvements from the PS5 version of IF - Replaced reg. vectors for ThreadSafeVectors - Added the Chinese lang files - Fixed a bug that would cause the Utility thread to deadlock - Fixed a Bug that caused the daemon not to give a backtrace on 9.00
16 lines
379 B
C++
16 lines
379 B
C++
// Copyright (c) 2021 Al Azif
|
|
// License: GPLv3
|
|
|
|
#ifndef DUMP_HPP_
|
|
#define DUMP_HPP_
|
|
|
|
#include <iostream>
|
|
#include "dumper.h"
|
|
|
|
namespace dump {
|
|
bool __dump(const std::string& usb_device, const std::string& title_id, Dump_Options opt, const std::string& title);
|
|
bool dump_dlc(const std::string & usb_device, const std::string & title_id);
|
|
} // namespace dump
|
|
|
|
#endif // DUMP_HPP_
|