2019-12-09 12:57:37 +01:00
|
|
|
/*
|
2021-10-04 21:59:10 +02:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2019-12-09 12:57:37 +01: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-12 00:04:51 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_allocator_utility.hpp>
|
2020-04-04 11:37:21 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_utility.hpp>
|
2022-03-12 23:08:39 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_bitmap_utils.hpp>
|
2020-05-12 00:04:51 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_speed_emulation_configuration.hpp>
|
2020-04-04 11:37:21 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_external_code.hpp>
|
2022-03-08 19:05:32 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_forwarding_file_system.hpp>
|
2020-04-04 11:37:21 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_partition_file_system.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_partition_file_system_meta.hpp>
|
2020-04-06 12:58:52 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_thread_priority_changer.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_aes_ctr_storage.hpp>
|
2020-04-06 14:44:33 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_aes_xts_storage.hpp>
|
2020-04-04 11:37:21 +02: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-12 00:04:51 +02: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 07:42:32 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_compression_configuration.hpp>
|
2020-05-12 00:04:51 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_aes_ctr_counter_extended_storage.hpp>
|
2020-04-04 11:37:21 +02:00
|
|
|
#include <stratosphere/fssystem/buffers/fssystem_buffer_manager_utils.hpp>
|
2020-05-12 00:04:51 +02:00
|
|
|
#include <stratosphere/fssystem/buffers/fssystem_file_system_buffer_manager.hpp>
|
2020-04-06 12:15:24 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_pooled_buffer.hpp>
|
2021-12-06 19:58:19 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_service_context.hpp>
|
2020-05-12 00:04:51 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_alignment_matching_storage_impl.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_alignment_matching_storage.hpp>
|
2021-12-14 07:42:32 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_compressed_storage.hpp>
|
2022-03-12 23:08:39 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_buffered_storage.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_hierarchical_integrity_verification_storage.hpp>
|
2020-05-12 00:04:51 +02:00
|
|
|
#include <stratosphere/fssystem/fssystem_integrity_romfs_storage.hpp>
|
2021-12-14 17:51:27 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_sha256_hash_generator.hpp>
|
2022-03-06 21:08:20 +01:00
|
|
|
#include <stratosphere/fssystem/fssystem_local_file_system.hpp>
|
|
|
|
#include <stratosphere/fssystem/fssystem_file_system_proxy_api.hpp>
|