aboutsummaryrefslogtreecommitdiff
path: root/src/core/file_sys/ips_layer.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-09-29 22:13:15 -0400
committerZach Hilman <zachhilman@gmail.com>2018-10-01 16:01:46 -0400
commit21b2411c44276c9955833e987d2098924c4dfc8a (patch)
tree059b5e82604ded7ef179402c07a5fb732a305e74 /src/core/file_sys/ips_layer.h
parent3c9e70fefae0754c7484484fc8f58011e5b14aaa (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.h15
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