2019-12-09 11:57:37 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) 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-05-11 22:04:51 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_allocator_utility.hpp>
|
2020-04-04 09:37:21 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_utility.hpp>
|
2022-03-12 22:08:39 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_bitmap_utils.hpp>
|
2020-05-11 22:04:51 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_speed_emulation_configuration.hpp>
|
2020-04-04 09:37:21 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_external_code.hpp>
|
2022-03-08 18:05:32 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_forwarding_file_system.hpp>
|
2020-04-04 09:37:21 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_partition_file_system.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_partition_file_system_meta.hpp>
|
2020-04-06 10:58:52 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_thread_priority_changer.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_aes_ctr_storage.hpp>
|
2020-04-06 12:44:33 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_aes_xts_storage.hpp>
|
2020-04-04 09:37:21 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_subdirectory_filesystem.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_directory_redirection_filesystem.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_directory_savedata_filesystem.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_romfs_file_system.hpp>
|
2020-05-11 22:04:51 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_bucket_tree.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_bucket_tree_template_impl.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_indirect_storage.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_indirect_storage_template_impl.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_sparse_storage.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_nca_header.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_nca_file_system_driver.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_crypto_configuration.hpp>
|
2021-12-14 06:42:32 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_compression_configuration.hpp>
|
2020-05-11 22:04:51 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_aes_ctr_counter_extended_storage.hpp>
|
2022-03-25 16:48:24 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_aes_ctr_storage_external.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_aes_xts_storage_external.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_switch_storage.hpp>
|
2020-04-04 09:37:21 +00:00
|
|
|
#include <stratosphere/fssystem/buffers/fssystem_buffer_manager_utils.hpp>
|
2020-05-11 22:04:51 +00:00
|
|
|
#include <stratosphere/fssystem/buffers/fssystem_file_system_buffer_manager.hpp>
|
2020-04-06 10:15:24 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_pooled_buffer.hpp>
|
2021-12-06 18:58:19 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_service_context.hpp>
|
2020-05-11 22:04:51 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_alignment_matching_storage_impl.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_alignment_matching_storage.hpp>
|
2021-12-14 06:42:32 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_compressed_storage.hpp>
|
2022-03-12 22:08:39 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_buffered_storage.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_hierarchical_integrity_verification_storage.hpp>
|
2020-05-11 22:04:51 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_integrity_romfs_storage.hpp>
|
2022-03-25 04:57:28 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_sha_hash_generator.hpp>
|
2022-03-06 20:08:20 +00:00
|
|
|
#include <stratosphere/fssystem/fssystem_local_file_system.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_file_system_proxy_api.hpp>
|