improve diff-dol-files
This commit is contained in:
@@ -5,10 +5,16 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
struct DiffEntry {
|
||||
uint32_t address;
|
||||
std::string a_data;
|
||||
std::string b_data;
|
||||
};
|
||||
|
||||
inline void run_address_translator(const std::string&, const std::string&, const std::string&) {
|
||||
throw std::runtime_error("resource_file is not available; install it and rebuild newserv");
|
||||
}
|
||||
|
||||
inline std::vector<std::pair<uint32_t, std::string>> diff_dol_files(const std::string&, const std::string&) {
|
||||
inline std::vector<DiffEntry> diff_dol_files(const std::string&, const std::string&) {
|
||||
throw std::runtime_error("resource_file is not available; install it and rebuild newserv");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user