Files
LightningMods 36ca31d21b ItemzCore version: 1.4-V-2024-01-23T18:42:41
- 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
2024-01-23 18:56:00 -05:00

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_