summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_romfs.h
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2017-02-10 16:15:26 +0100
committerwwylele <wwylele@gmail.com>2017-02-13 12:57:38 +0100
commit20544977dab5b00a86c73572b94e7e75a7499f7a (patch)
tree1c5f2e443a8c73d70cfbf52b0e5783f99d831802 /src/core/file_sys/archive_romfs.h
parentfile_sys: add Self NCCH archive (diff)
downloadyuzu-20544977dab5b00a86c73572b94e7e75a7499f7a.tar
yuzu-20544977dab5b00a86c73572b94e7e75a7499f7a.tar.gz
yuzu-20544977dab5b00a86c73572b94e7e75a7499f7a.tar.bz2
yuzu-20544977dab5b00a86c73572b94e7e75a7499f7a.tar.lz
yuzu-20544977dab5b00a86c73572b94e7e75a7499f7a.tar.xz
yuzu-20544977dab5b00a86c73572b94e7e75a7499f7a.tar.zst
yuzu-20544977dab5b00a86c73572b94e7e75a7499f7a.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/archive_romfs.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/core/file_sys/archive_romfs.h b/src/core/file_sys/archive_romfs.h
deleted file mode 100644
index 1eaf99b54..000000000
--- a/src/core/file_sys/archive_romfs.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2014 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include <memory>
-#include <string>
-#include <vector>
-#include "common/common_types.h"
-#include "core/file_sys/archive_backend.h"
-#include "core/hle/result.h"
-#include "core/loader/loader.h"
-
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// FileSys namespace
-
-namespace FileSys {
-
-/// File system interface to the RomFS archive
-class ArchiveFactory_RomFS final : public ArchiveFactory {
-public:
- explicit ArchiveFactory_RomFS(Loader::AppLoader& app_loader);
-
- std::string GetName() const override {
- return "RomFS";
- }
- ResultVal<std::unique_ptr<ArchiveBackend>> Open(const Path& path) override;
- ResultCode Format(const Path& path, const FileSys::ArchiveFormatInfo& format_info) override;
- ResultVal<ArchiveFormatInfo> GetFormatInfo(const Path& path) const override;
-
-private:
- std::shared_ptr<FileUtil::IOFile> romfs_file;
- u64 data_offset;
- u64 data_size;
-};
-
-} // namespace FileSys