mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 05:36:34 +02:00
22 lines
523 B
C++
22 lines
523 B
C++
// Copyright 2021 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "DiscIO/RiivolutionParser.h"
|
|
|
|
namespace DiscIO
|
|
{
|
|
struct FSTBuilderNode;
|
|
}
|
|
|
|
namespace DiscIO::Riivolution
|
|
{
|
|
void ApplyPatchesToFiles(const std::vector<Patch>& patches,
|
|
std::vector<DiscIO::FSTBuilderNode>* fst,
|
|
DiscIO::FSTBuilderNode* dol_node);
|
|
void ApplyPatchesToMemory(const std::vector<Patch>& patches);
|
|
} // namespace DiscIO::Riivolution
|