summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/ips_layer.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-09-30 04:13:15 +0200
committerZach Hilman <zachhilman@gmail.com>2018-10-01 22:01:46 +0200
commit21b2411c44276c9955833e987d2098924c4dfc8a (patch)
tree059b5e82604ded7ef179402c07a5fb732a305e74 /src/core/file_sys/ips_layer.h
parentnso: Replace NSOHeader padding bytes with build ID (diff)
downloadyuzu-21b2411c44276c9955833e987d2098924c4dfc8a.tar
yuzu-21b2411c44276c9955833e987d2098924c4dfc8a.tar.gz
yuzu-21b2411c44276c9955833e987d2098924c4dfc8a.tar.bz2
yuzu-21b2411c44276c9955833e987d2098924c4dfc8a.tar.lz
yuzu-21b2411c44276c9955833e987d2098924c4dfc8a.tar.xz
yuzu-21b2411c44276c9955833e987d2098924c4dfc8a.tar.zst
yuzu-21b2411c44276c9955833e987d2098924c4dfc8a.zip
Diffstat (limited to '')
-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