2014-09-11 15:44:16 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-11 15:44:16 -07:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2014-12-15 21:33:41 -08:00
|
|
|
#include "core/file_sys/disk_archive.h"
|
2014-09-11 15:44:16 -07:00
|
|
|
#include "core/loader/loader.h"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// FileSys namespace
|
|
|
|
|
|
|
|
namespace FileSys {
|
|
|
|
|
|
|
|
/// File system interface to the SDMC archive
|
2014-12-15 21:33:41 -08:00
|
|
|
class Archive_SDMC final : public DiskArchive {
|
2014-09-11 15:44:16 -07:00
|
|
|
public:
|
|
|
|
Archive_SDMC(const std::string& mount_point);
|
|
|
|
|
2014-09-27 12:09:04 -07:00
|
|
|
/**
|
|
|
|
* Initialize the archive.
|
|
|
|
* @return true if it initialized successfully
|
|
|
|
*/
|
2014-09-11 15:44:16 -07:00
|
|
|
bool Initialize();
|
|
|
|
|
2014-12-14 20:44:04 -08:00
|
|
|
std::string GetName() const override { return "SDMC"; }
|
2014-09-11 15:44:16 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace FileSys
|