2019-12-09 11:57:37 +00:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-12-09 11:57:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-02-26 00:44:36 +00:00
|
|
|
#include <stratosphere/fs/fs_common.hpp>
|
|
|
|
#include <stratosphere/fs/fsa/fs_ifile.hpp>
|
|
|
|
#include <stratosphere/fs/fsa/fs_idirectory.hpp>
|
|
|
|
#include <stratosphere/fs/fsa/fs_ifilesystem.hpp>
|
2020-03-08 08:06:23 +00:00
|
|
|
#include <stratosphere/fs/impl/fs_filesystem_proxy_type.hpp>
|
|
|
|
#include <stratosphere/fs/fsa/fs_registrar.hpp>
|
2020-02-26 00:44:36 +00:00
|
|
|
#include <stratosphere/fs/fs_remote_filesystem.hpp>
|
2020-03-09 10:10:12 +00:00
|
|
|
#include <stratosphere/fs/fs_read_only_filesystem.hpp>
|
2020-02-26 00:44:36 +00:00
|
|
|
#include <stratosphere/fs/fs_istorage.hpp>
|
2020-03-08 08:06:23 +00:00
|
|
|
#include <stratosphere/fs/fs_substorage.hpp>
|
|
|
|
#include <stratosphere/fs/fs_memory_storage.hpp>
|
2020-02-26 00:44:36 +00:00
|
|
|
#include <stratosphere/fs/fs_remote_storage.hpp>
|
|
|
|
#include <stratosphere/fs/fs_file_storage.hpp>
|
|
|
|
#include <stratosphere/fs/fs_query_range.hpp>
|
2020-03-08 08:06:23 +00:00
|
|
|
#include <stratosphere/fs/impl/fs_common_mount_name.hpp>
|
|
|
|
#include <stratosphere/fs/fs_mount.hpp>
|
2020-02-26 00:44:36 +00:00
|
|
|
#include <stratosphere/fs/fs_path_tool.hpp>
|
|
|
|
#include <stratosphere/fs/fs_path_utils.hpp>
|
2020-03-08 09:45:12 +00:00
|
|
|
#include <stratosphere/fs/fs_filesystem_utils.hpp>
|
2020-03-08 08:06:23 +00:00
|
|
|
#include <stratosphere/fs/fs_romfs_filesystem.hpp>
|
|
|
|
#include <stratosphere/fs/impl/fs_data.hpp>
|
2020-03-09 10:10:12 +00:00
|
|
|
#include <stratosphere/fs/fs_application.hpp>
|
2020-03-08 08:06:23 +00:00
|
|
|
#include <stratosphere/fs/fs_bis.hpp>
|
|
|
|
#include <stratosphere/fs/fs_code.hpp>
|
|
|
|
#include <stratosphere/fs/fs_content.hpp>
|
|
|
|
#include <stratosphere/fs/fs_content_storage.hpp>
|
2020-03-27 23:59:27 +00:00
|
|
|
#include <stratosphere/fs/fs_image_directory.hpp>
|
2020-03-08 08:06:23 +00:00
|
|
|
#include <stratosphere/fs/fs_game_card.hpp>
|
|
|
|
#include <stratosphere/fs/fs_save_data_types.hpp>
|
|
|
|
#include <stratosphere/fs/fs_save_data_management.hpp>
|
|
|
|
#include <stratosphere/fs/fs_save_data_transaction.hpp>
|
2020-03-19 03:05:39 +00:00
|
|
|
#include <stratosphere/fs/fs_device_save_data.hpp>
|
|
|
|
#include <stratosphere/fs/fs_system_save_data.hpp>
|
2020-03-09 10:10:12 +00:00
|
|
|
#include <stratosphere/fs/fs_sd_card.hpp>
|
|
|
|
#include <stratosphere/fs/fs_signed_system_partition.hpp>
|
|
|
|
#include <stratosphere/fs/fs_system_data.hpp>
|