summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/system_archive/system_archive.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-16 04:34:35 +0100
committerZach Hilman <zachhilman@gmail.com>2018-11-16 04:34:35 +0100
commit6aa69880ea008870709f556b2e0dc0bd881b31d9 (patch)
tree5e8b62418cd5e8edb88f7cb131d346d1da69e662 /src/core/file_sys/system_archive/system_archive.h
parentvfs_vector: Add VFS backend for std::array (diff)
downloadyuzu-6aa69880ea008870709f556b2e0dc0bd881b31d9.tar
yuzu-6aa69880ea008870709f556b2e0dc0bd881b31d9.tar.gz
yuzu-6aa69880ea008870709f556b2e0dc0bd881b31d9.tar.bz2
yuzu-6aa69880ea008870709f556b2e0dc0bd881b31d9.tar.lz
yuzu-6aa69880ea008870709f556b2e0dc0bd881b31d9.tar.xz
yuzu-6aa69880ea008870709f556b2e0dc0bd881b31d9.tar.zst
yuzu-6aa69880ea008870709f556b2e0dc0bd881b31d9.zip
Diffstat (limited to 'src/core/file_sys/system_archive/system_archive.h')
-rw-r--r--src/core/file_sys/system_archive/system_archive.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/file_sys/system_archive/system_archive.h b/src/core/file_sys/system_archive/system_archive.h
new file mode 100644
index 000000000..724a8eb17
--- /dev/null
+++ b/src/core/file_sys/system_archive/system_archive.h
@@ -0,0 +1,14 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+#include "core/file_sys/vfs_types.h"
+
+namespace FileSys::SystemArchive {
+
+VirtualFile SynthesizeSystemArchive(u64 title_id);
+
+} // namespace FileSys::SystemArchive