diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2018-09-29 22:13:15 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2018-10-01 16:01:46 -0400 |
| commit | 21b2411c44276c9955833e987d2098924c4dfc8a (patch) | |
| tree | 059b5e82604ded7ef179402c07a5fb732a305e74 /src/core/file_sys/ips_layer.h | |
| parent | 3c9e70fefae0754c7484484fc8f58011e5b14aaa (diff) | |
file_sys: Implement function to apply IPS patches
Diffstat (limited to 'src/core/file_sys/ips_layer.h')
| -rw-r--r-- | src/core/file_sys/ips_layer.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/file_sys/ips_layer.h b/src/core/file_sys/ips_layer.h new file mode 100644 index 000000000..81c163494 --- /dev/null +++ b/src/core/file_sys/ips_layer.h @@ -0,0 +1,15 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include <memory> + +#include "core/file_sys/vfs.h" + +namespace FileSys { + +VirtualFile PatchIPS(const VirtualFile& in, const VirtualFile& ips); + +} // namespace FileSys |
