2014-06-27 20:18:56 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-06-27 20:18:56 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2015-01-01 17:39:27 +00:00
|
|
|
#include "core/file_sys/ivfc_archive.h"
|
2014-06-27 20:18:56 +00:00
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
/// File system interface to the RomFS archive
|
2015-01-01 17:39:27 +00:00
|
|
|
class Archive_RomFS final : public IVFCArchive {
|
2014-06-27 20:18:56 +00:00
|
|
|
public:
|
2014-07-04 17:11:09 +00:00
|
|
|
Archive_RomFS(const Loader::AppLoader& app_loader);
|
2014-06-27 20:18:56 +00:00
|
|
|
|
2014-12-15 04:44:04 +00:00
|
|
|
std::string GetName() const override { return "RomFS"; }
|
2015-01-01 17:39:27 +00:00
|
|
|
ResultCode Open(const Path& path) override { return RESULT_SUCCESS; }
|
2014-06-27 20:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|