From 69a0ec03e9c3915d5c9df1c186616f8f2596b0c1 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 30 Sep 2021 19:21:08 -0700 Subject: [PATCH] strat: use consistent include style for lib headers --- libstratosphere/include/stratosphere/ams.hpp | 8 +++---- .../stratosphere/ams/ams_emummc_api.hpp | 2 +- .../stratosphere/ams/ams_environment.hpp | 2 +- .../stratosphere/ams/ams_exosphere_api.hpp | 2 +- .../include/stratosphere/ams/ams_types.hpp | 4 ++-- .../include/stratosphere/boot2.hpp | 2 +- libstratosphere/include/stratosphere/cfg.hpp | 2 +- .../include/stratosphere/cfg/cfg_api.hpp | 6 ++--- .../stratosphere/cfg/cfg_locale_types.hpp | 4 ++-- libstratosphere/include/stratosphere/dmnt.hpp | 2 +- .../stratosphere/fs/fs_application.hpp | 2 +- .../include/stratosphere/fs/fs_code.hpp | 2 +- .../include/stratosphere/fs/fs_content.hpp | 2 +- .../stratosphere/fs/fs_content_storage.hpp | 2 +- .../stratosphere/fs/fs_device_save_data.hpp | 4 ++-- .../include/stratosphere/fs/fs_directory.hpp | 2 +- .../include/stratosphere/fs/fs_file.hpp | 2 +- .../include/stratosphere/fs/fs_filesystem.hpp | 2 +- .../include/stratosphere/fs/fs_game_card.hpp | 2 +- .../stratosphere/fs/fs_i_event_notifier.hpp | 2 +- .../stratosphere/fs/fs_image_directory.hpp | 2 +- .../include/stratosphere/fs/fs_istorage.hpp | 6 ++--- .../stratosphere/fs/fs_memory_management.hpp | 2 +- .../stratosphere/fs/fs_memory_storage.hpp | 6 ++--- .../include/stratosphere/fs/fs_mount.hpp | 2 +- .../stratosphere/fs/fs_operate_range.hpp | 2 +- .../stratosphere/fs/fs_remote_storage.hpp | 6 ++--- .../fs/fs_save_data_management.hpp | 4 ++-- .../fs/fs_save_data_transaction.hpp | 4 ++-- .../stratosphere/fs/fs_save_data_types.hpp | 2 +- .../include/stratosphere/fs/fs_sd_card.hpp | 2 +- .../fs/fs_signed_system_partition.hpp | 2 +- .../include/stratosphere/fs/fs_substorage.hpp | 4 ++-- .../stratosphere/fs/fs_system_data.hpp | 2 +- .../stratosphere/fs/fs_system_save_data.hpp | 4 ++-- .../stratosphere/fs/fsa/fs_idirectory.hpp | 4 ++-- .../stratosphere/fs/fsa/fs_ifilesystem.hpp | 6 ++--- .../stratosphere/fs/fsa/fs_registrar.hpp | 2 +- .../fssrv/fssrv_interface_adapters.hpp | 4 ++-- .../fssrv/fssrv_path_normalizer.hpp | 2 +- ...ystem_directory_redirection_filesystem.hpp | 2 +- ...fssystem_directory_savedata_filesystem.hpp | 2 +- .../fssystem_partition_file_system.hpp | 8 +++---- .../fssystem_subdirectory_filesystem.hpp | 2 +- libstratosphere/include/stratosphere/hid.hpp | 2 +- libstratosphere/include/stratosphere/kvdb.hpp | 12 +++++----- libstratosphere/include/stratosphere/lmem.hpp | 6 ++--- .../lmem/impl/lmem_impl_common.hpp | 2 +- .../include/stratosphere/lmem/lmem_common.hpp | 2 +- .../stratosphere/lmem/lmem_exp_heap.hpp | 2 +- .../stratosphere/lmem/lmem_unit_heap.hpp | 2 +- libstratosphere/include/stratosphere/map.hpp | 4 ++-- .../include/stratosphere/map/map_api.hpp | 2 +- .../stratosphere/os/os_managed_handle.hpp | 2 +- .../stratosphere/os/os_process_handle.hpp | 2 +- .../include/stratosphere/os/os_random.hpp | 2 +- .../include/stratosphere/os/os_tick.hpp | 2 +- .../include/stratosphere/patcher.hpp | 2 +- .../stratosphere/pm/pm_boot_mode_api.hpp | 2 +- .../include/stratosphere/pm/pm_types.hpp | 2 +- .../settings/settings_fwdbg_api.hpp | 2 +- .../settings/settings_fwdbg_types.hpp | 2 +- .../sf/cmif/sf_cmif_domain_api.hpp | 4 ++-- .../sf/cmif/sf_cmif_domain_service_object.hpp | 6 ++--- .../sf/cmif/sf_cmif_pointer_and_size.hpp | 2 +- .../cmif/sf_cmif_server_message_processor.hpp | 4 ++-- .../sf/cmif/sf_cmif_service_dispatch.hpp | 6 ++--- .../sf/cmif/sf_cmif_service_object_holder.hpp | 4 ++-- .../stratosphere/sf/hipc/sf_hipc_api.hpp | 4 ++-- .../sf_hipc_server_domain_session_manager.hpp | 4 ++-- .../sf/hipc/sf_hipc_server_manager.hpp | 4 ++-- .../hipc/sf_hipc_server_session_manager.hpp | 10 ++++----- .../sf/impl/sf_impl_command_serialization.hpp | 22 +++++++++---------- .../include/stratosphere/sf/sf_buffers.hpp | 8 +++---- .../include/stratosphere/sf/sf_handles.hpp | 6 ++--- .../include/stratosphere/sm/sm_api.hpp | 2 +- .../include/stratosphere/sm/sm_mitm_api.hpp | 2 +- .../include/stratosphere/spl/smc/spl_smc.hpp | 2 +- .../include/stratosphere/updater.hpp | 4 ++-- .../stratosphere/updater/updater_api.hpp | 4 ++-- 80 files changed, 144 insertions(+), 144 deletions(-) diff --git a/libstratosphere/include/stratosphere/ams.hpp b/libstratosphere/include/stratosphere/ams.hpp index 250e756f..1cc778c3 100644 --- a/libstratosphere/include/stratosphere/ams.hpp +++ b/libstratosphere/include/stratosphere/ams.hpp @@ -16,7 +16,7 @@ #pragma once -#include "ams/ams_types.hpp" -#include "ams/ams_exosphere_api.hpp" -#include "ams/ams_emummc_api.hpp" -#include "ams/ams_environment.hpp" +#include +#include +#include +#include diff --git a/libstratosphere/include/stratosphere/ams/ams_emummc_api.hpp b/libstratosphere/include/stratosphere/ams/ams_emummc_api.hpp index 4597b2ad..ace82583 100644 --- a/libstratosphere/include/stratosphere/ams/ams_emummc_api.hpp +++ b/libstratosphere/include/stratosphere/ams/ams_emummc_api.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "ams_types.hpp" +#include namespace ams::emummc { diff --git a/libstratosphere/include/stratosphere/ams/ams_environment.hpp b/libstratosphere/include/stratosphere/ams/ams_environment.hpp index 13f20a5d..065ee2be 100644 --- a/libstratosphere/include/stratosphere/ams/ams_environment.hpp +++ b/libstratosphere/include/stratosphere/ams/ams_environment.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "ams_types.hpp" +#include namespace ams { diff --git a/libstratosphere/include/stratosphere/ams/ams_exosphere_api.hpp b/libstratosphere/include/stratosphere/ams/ams_exosphere_api.hpp index 69bbb4d8..4e258d88 100644 --- a/libstratosphere/include/stratosphere/ams/ams_exosphere_api.hpp +++ b/libstratosphere/include/stratosphere/ams/ams_exosphere_api.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "ams_types.hpp" +#include namespace ams::exosphere { diff --git a/libstratosphere/include/stratosphere/ams/ams_types.hpp b/libstratosphere/include/stratosphere/ams/ams_types.hpp index 48789fd1..7ce4c9ac 100644 --- a/libstratosphere/include/stratosphere/ams/ams_types.hpp +++ b/libstratosphere/include/stratosphere/ams/ams_types.hpp @@ -16,8 +16,8 @@ #pragma once #include -#include "../sf/sf_buffer_tags.hpp" -#include "../hos.hpp" +#include +#include namespace ams::exosphere { diff --git a/libstratosphere/include/stratosphere/boot2.hpp b/libstratosphere/include/stratosphere/boot2.hpp index ff72c8b0..ece5cb03 100644 --- a/libstratosphere/include/stratosphere/boot2.hpp +++ b/libstratosphere/include/stratosphere/boot2.hpp @@ -16,4 +16,4 @@ #pragma once -#include "boot2/boot2_api.hpp" +#include diff --git a/libstratosphere/include/stratosphere/cfg.hpp b/libstratosphere/include/stratosphere/cfg.hpp index d825db9a..aea10f16 100644 --- a/libstratosphere/include/stratosphere/cfg.hpp +++ b/libstratosphere/include/stratosphere/cfg.hpp @@ -16,4 +16,4 @@ #pragma once -#include "cfg/cfg_api.hpp" +#include diff --git a/libstratosphere/include/stratosphere/cfg/cfg_api.hpp b/libstratosphere/include/stratosphere/cfg/cfg_api.hpp index 3d7b13b2..c8bf3710 100644 --- a/libstratosphere/include/stratosphere/cfg/cfg_api.hpp +++ b/libstratosphere/include/stratosphere/cfg/cfg_api.hpp @@ -14,9 +14,9 @@ * along with this program. If not, see . */ #pragma once -#include "cfg_types.hpp" -#include "cfg_locale_types.hpp" -#include "../sm/sm_types.hpp" +#include +#include +#include namespace ams::cfg { diff --git a/libstratosphere/include/stratosphere/cfg/cfg_locale_types.hpp b/libstratosphere/include/stratosphere/cfg/cfg_locale_types.hpp index ba6f95a6..620c2916 100644 --- a/libstratosphere/include/stratosphere/cfg/cfg_locale_types.hpp +++ b/libstratosphere/include/stratosphere/cfg/cfg_locale_types.hpp @@ -14,8 +14,8 @@ * along with this program. If not, see . */ #pragma once -#include "cfg_types.hpp" -#include "../settings/settings_types.hpp" +#include +#include namespace ams::cfg { diff --git a/libstratosphere/include/stratosphere/dmnt.hpp b/libstratosphere/include/stratosphere/dmnt.hpp index 5772a435..c09474cc 100644 --- a/libstratosphere/include/stratosphere/dmnt.hpp +++ b/libstratosphere/include/stratosphere/dmnt.hpp @@ -16,4 +16,4 @@ #pragma once -#include "dmnt/dmnt_cheat_types.hpp" +#include diff --git a/libstratosphere/include/stratosphere/fs/fs_application.hpp b/libstratosphere/include/stratosphere/fs/fs_application.hpp index 8745e1b6..92504fee 100644 --- a/libstratosphere/include/stratosphere/fs/fs_application.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_application.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_code.hpp b/libstratosphere/include/stratosphere/fs/fs_code.hpp index 4db4ba3d..b38b776b 100644 --- a/libstratosphere/include/stratosphere/fs/fs_code.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_code.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include #include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_content.hpp b/libstratosphere/include/stratosphere/fs/fs_content.hpp index 32a2eded..2b3ee7af 100644 --- a/libstratosphere/include/stratosphere/fs/fs_content.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_content.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include #include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_content_storage.hpp b/libstratosphere/include/stratosphere/fs/fs_content_storage.hpp index 4a52391e..ccd07930 100644 --- a/libstratosphere/include/stratosphere/fs/fs_content_storage.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_content_storage.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_device_save_data.hpp b/libstratosphere/include/stratosphere/fs/fs_device_save_data.hpp index b7017038..cda0398a 100644 --- a/libstratosphere/include/stratosphere/fs/fs_device_save_data.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_device_save_data.hpp @@ -14,8 +14,8 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" -#include "fs_save_data_types.hpp" +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_directory.hpp b/libstratosphere/include/stratosphere/fs/fs_directory.hpp index c2e3a76b..75a333eb 100644 --- a/libstratosphere/include/stratosphere/fs/fs_directory.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_directory.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_file.hpp b/libstratosphere/include/stratosphere/fs/fs_file.hpp index 36e7d790..1f176b35 100644 --- a/libstratosphere/include/stratosphere/fs/fs_file.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_file.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_filesystem.hpp b/libstratosphere/include/stratosphere/fs/fs_filesystem.hpp index f6852db9..50f81477 100644 --- a/libstratosphere/include/stratosphere/fs/fs_filesystem.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_filesystem.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_game_card.hpp b/libstratosphere/include/stratosphere/fs/fs_game_card.hpp index 612b7844..22ddbc39 100644 --- a/libstratosphere/include/stratosphere/fs/fs_game_card.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_game_card.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_i_event_notifier.hpp b/libstratosphere/include/stratosphere/fs/fs_i_event_notifier.hpp index 375ed1af..b2b22f6e 100644 --- a/libstratosphere/include/stratosphere/fs/fs_i_event_notifier.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_i_event_notifier.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_image_directory.hpp b/libstratosphere/include/stratosphere/fs/fs_image_directory.hpp index 76252ae1..58c4faa4 100644 --- a/libstratosphere/include/stratosphere/fs/fs_image_directory.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_image_directory.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_istorage.hpp b/libstratosphere/include/stratosphere/fs/fs_istorage.hpp index 7a837242..07ade15d 100644 --- a/libstratosphere/include/stratosphere/fs/fs_istorage.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_istorage.hpp @@ -14,9 +14,9 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" -#include "fs_file.hpp" -#include "fs_operate_range.hpp" +#include +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_memory_management.hpp b/libstratosphere/include/stratosphere/fs/fs_memory_management.hpp index 7084daea..0defd217 100644 --- a/libstratosphere/include/stratosphere/fs/fs_memory_management.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_memory_management.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_memory_storage.hpp b/libstratosphere/include/stratosphere/fs/fs_memory_storage.hpp index 4049e7f9..d73b95ac 100644 --- a/libstratosphere/include/stratosphere/fs/fs_memory_storage.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_memory_storage.hpp @@ -14,9 +14,9 @@ * along with this program. If not, see . */ #pragma once -#include "impl/fs_newable.hpp" -#include "fs_istorage.hpp" -#include "fs_query_range.hpp" +#include +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_mount.hpp b/libstratosphere/include/stratosphere/fs/fs_mount.hpp index 1344b2a4..62c996e6 100644 --- a/libstratosphere/include/stratosphere/fs/fs_mount.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_mount.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_operate_range.hpp b/libstratosphere/include/stratosphere/fs/fs_operate_range.hpp index 3d2b8a28..08667241 100644 --- a/libstratosphere/include/stratosphere/fs/fs_operate_range.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_operate_range.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_remote_storage.hpp b/libstratosphere/include/stratosphere/fs/fs_remote_storage.hpp index 554dcdfe..523b825d 100644 --- a/libstratosphere/include/stratosphere/fs/fs_remote_storage.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_remote_storage.hpp @@ -14,9 +14,9 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" -#include "fs_istorage.hpp" -#include "impl/fs_newable.hpp" +#include +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_save_data_management.hpp b/libstratosphere/include/stratosphere/fs/fs_save_data_management.hpp index c502631f..f2ead33e 100644 --- a/libstratosphere/include/stratosphere/fs/fs_save_data_management.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_save_data_management.hpp @@ -14,8 +14,8 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" -#include "fs_save_data_types.hpp" +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_save_data_transaction.hpp b/libstratosphere/include/stratosphere/fs/fs_save_data_transaction.hpp index a3976244..b1d7a622 100644 --- a/libstratosphere/include/stratosphere/fs/fs_save_data_transaction.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_save_data_transaction.hpp @@ -14,8 +14,8 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" -#include "fs_save_data_types.hpp" +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_save_data_types.hpp b/libstratosphere/include/stratosphere/fs/fs_save_data_types.hpp index be6e0f05..1ebfc0dd 100644 --- a/libstratosphere/include/stratosphere/fs/fs_save_data_types.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_save_data_types.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_sd_card.hpp b/libstratosphere/include/stratosphere/fs/fs_sd_card.hpp index 183f7bea..029e139e 100644 --- a/libstratosphere/include/stratosphere/fs/fs_sd_card.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_sd_card.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_signed_system_partition.hpp b/libstratosphere/include/stratosphere/fs/fs_signed_system_partition.hpp index 1c0ff5b2..3c613af2 100644 --- a/libstratosphere/include/stratosphere/fs/fs_signed_system_partition.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_signed_system_partition.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_substorage.hpp b/libstratosphere/include/stratosphere/fs/fs_substorage.hpp index 08ac3cf7..56241edf 100644 --- a/libstratosphere/include/stratosphere/fs/fs_substorage.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_substorage.hpp @@ -14,8 +14,8 @@ * along with this program. If not, see . */ #pragma once -#include "impl/fs_newable.hpp" -#include "fs_istorage.hpp" +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_system_data.hpp b/libstratosphere/include/stratosphere/fs/fs_system_data.hpp index e95425e8..12529a30 100644 --- a/libstratosphere/include/stratosphere/fs/fs_system_data.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_system_data.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fs_system_save_data.hpp b/libstratosphere/include/stratosphere/fs/fs_system_save_data.hpp index 95093dcd..83e8cc2c 100644 --- a/libstratosphere/include/stratosphere/fs/fs_system_save_data.hpp +++ b/libstratosphere/include/stratosphere/fs/fs_system_save_data.hpp @@ -14,8 +14,8 @@ * along with this program. If not, see . */ #pragma once -#include "fs_common.hpp" -#include "fs_save_data_types.hpp" +#include +#include namespace ams::fs { diff --git a/libstratosphere/include/stratosphere/fs/fsa/fs_idirectory.hpp b/libstratosphere/include/stratosphere/fs/fsa/fs_idirectory.hpp index 40a845c3..60c8d0a3 100644 --- a/libstratosphere/include/stratosphere/fs/fsa/fs_idirectory.hpp +++ b/libstratosphere/include/stratosphere/fs/fsa/fs_idirectory.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "../fs_common.hpp" -#include "../fs_directory.hpp" +#include +#include namespace ams::fs::fsa { diff --git a/libstratosphere/include/stratosphere/fs/fsa/fs_ifilesystem.hpp b/libstratosphere/include/stratosphere/fs/fsa/fs_ifilesystem.hpp index d40e6879..325be05c 100644 --- a/libstratosphere/include/stratosphere/fs/fsa/fs_ifilesystem.hpp +++ b/libstratosphere/include/stratosphere/fs/fsa/fs_ifilesystem.hpp @@ -15,9 +15,9 @@ */ #pragma once -#include "../fs_common.hpp" -#include "../fs_filesystem.hpp" -#include "../fs_filesystem_for_debug.hpp" +#include +#include +#include namespace ams::fs::fsa { diff --git a/libstratosphere/include/stratosphere/fs/fsa/fs_registrar.hpp b/libstratosphere/include/stratosphere/fs/fsa/fs_registrar.hpp index 36d28340..ce5cea1b 100644 --- a/libstratosphere/include/stratosphere/fs/fsa/fs_registrar.hpp +++ b/libstratosphere/include/stratosphere/fs/fsa/fs_registrar.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "../fs_common.hpp" +#include namespace ams::fs::fsa { diff --git a/libstratosphere/include/stratosphere/fssrv/fssrv_interface_adapters.hpp b/libstratosphere/include/stratosphere/fssrv/fssrv_interface_adapters.hpp index 79c421a5..65c73535 100644 --- a/libstratosphere/include/stratosphere/fssrv/fssrv_interface_adapters.hpp +++ b/libstratosphere/include/stratosphere/fssrv/fssrv_interface_adapters.hpp @@ -14,5 +14,5 @@ * along with this program. If not, see . */ #pragma once -#include "interface_adapters/fssrv_storage_interface_adapter.hpp" -#include "interface_adapters/fssrv_filesystem_interface_adapter.hpp" +#include +#include diff --git a/libstratosphere/include/stratosphere/fssrv/fssrv_path_normalizer.hpp b/libstratosphere/include/stratosphere/fssrv/fssrv_path_normalizer.hpp index 2d970b4e..79bd2c95 100644 --- a/libstratosphere/include/stratosphere/fssrv/fssrv_path_normalizer.hpp +++ b/libstratosphere/include/stratosphere/fssrv/fssrv_path_normalizer.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "../fs/fs_common.hpp" +#include namespace ams::fssrv { diff --git a/libstratosphere/include/stratosphere/fssystem/fssystem_directory_redirection_filesystem.hpp b/libstratosphere/include/stratosphere/fssystem/fssystem_directory_redirection_filesystem.hpp index 0bc6645d..265b996e 100644 --- a/libstratosphere/include/stratosphere/fssystem/fssystem_directory_redirection_filesystem.hpp +++ b/libstratosphere/include/stratosphere/fssystem/fssystem_directory_redirection_filesystem.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "impl/fssystem_path_resolution_filesystem.hpp" +#include namespace ams::fssystem { diff --git a/libstratosphere/include/stratosphere/fssystem/fssystem_directory_savedata_filesystem.hpp b/libstratosphere/include/stratosphere/fssystem/fssystem_directory_savedata_filesystem.hpp index 54ccfba3..c4382aa1 100644 --- a/libstratosphere/include/stratosphere/fssystem/fssystem_directory_savedata_filesystem.hpp +++ b/libstratosphere/include/stratosphere/fssystem/fssystem_directory_savedata_filesystem.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "impl/fssystem_path_resolution_filesystem.hpp" +#include namespace ams::fssystem { diff --git a/libstratosphere/include/stratosphere/fssystem/fssystem_partition_file_system.hpp b/libstratosphere/include/stratosphere/fssystem/fssystem_partition_file_system.hpp index 97897dfa..5c237515 100644 --- a/libstratosphere/include/stratosphere/fssystem/fssystem_partition_file_system.hpp +++ b/libstratosphere/include/stratosphere/fssystem/fssystem_partition_file_system.hpp @@ -14,10 +14,10 @@ * along with this program. If not, see . */ #pragma once -#include "fssystem_partition_file_system_meta.hpp" -#include "../fs/fsa/fs_ifile.hpp" -#include "../fs/fsa/fs_idirectory.hpp" -#include "../fs/fsa/fs_ifilesystem.hpp" +#include +#include +#include +#include namespace ams::fssystem { diff --git a/libstratosphere/include/stratosphere/fssystem/fssystem_subdirectory_filesystem.hpp b/libstratosphere/include/stratosphere/fssystem/fssystem_subdirectory_filesystem.hpp index 61ac5dd3..7c561183 100644 --- a/libstratosphere/include/stratosphere/fssystem/fssystem_subdirectory_filesystem.hpp +++ b/libstratosphere/include/stratosphere/fssystem/fssystem_subdirectory_filesystem.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "impl/fssystem_path_resolution_filesystem.hpp" +#include namespace ams::fssystem { diff --git a/libstratosphere/include/stratosphere/hid.hpp b/libstratosphere/include/stratosphere/hid.hpp index 47d983df..d7961e0f 100644 --- a/libstratosphere/include/stratosphere/hid.hpp +++ b/libstratosphere/include/stratosphere/hid.hpp @@ -16,4 +16,4 @@ #pragma once -#include "hid/hid_api.hpp" \ No newline at end of file +#include \ No newline at end of file diff --git a/libstratosphere/include/stratosphere/kvdb.hpp b/libstratosphere/include/stratosphere/kvdb.hpp index 37346ac2..0241c393 100644 --- a/libstratosphere/include/stratosphere/kvdb.hpp +++ b/libstratosphere/include/stratosphere/kvdb.hpp @@ -16,9 +16,9 @@ #pragma once -#include "kvdb/kvdb_auto_buffer.hpp" -#include "kvdb/kvdb_bounded_string.hpp" -#include "kvdb/kvdb_archive.hpp" -#include "kvdb/kvdb_memory_key_value_store.hpp" -#include "kvdb/kvdb_file_key_value_store.hpp" -#include "kvdb/kvdb_file_key_value_cache.hpp" +#include +#include +#include +#include +#include +#include diff --git a/libstratosphere/include/stratosphere/lmem.hpp b/libstratosphere/include/stratosphere/lmem.hpp index fa85facb..d3dee39e 100644 --- a/libstratosphere/include/stratosphere/lmem.hpp +++ b/libstratosphere/include/stratosphere/lmem.hpp @@ -15,6 +15,6 @@ */ #pragma once -#include "lmem/lmem_common.hpp" -#include "lmem/lmem_exp_heap.hpp" -#include "lmem/lmem_unit_heap.hpp" +#include +#include +#include diff --git a/libstratosphere/include/stratosphere/lmem/impl/lmem_impl_common.hpp b/libstratosphere/include/stratosphere/lmem/impl/lmem_impl_common.hpp index 3009fa42..c517ce0d 100644 --- a/libstratosphere/include/stratosphere/lmem/impl/lmem_impl_common.hpp +++ b/libstratosphere/include/stratosphere/lmem/impl/lmem_impl_common.hpp @@ -16,7 +16,7 @@ #pragma once #include -#include "../../os.hpp" +#include namespace ams::lmem::impl { diff --git a/libstratosphere/include/stratosphere/lmem/lmem_common.hpp b/libstratosphere/include/stratosphere/lmem/lmem_common.hpp index 090fa9fa..f26ace44 100644 --- a/libstratosphere/include/stratosphere/lmem/lmem_common.hpp +++ b/libstratosphere/include/stratosphere/lmem/lmem_common.hpp @@ -16,7 +16,7 @@ #pragma once #include -#include "impl/lmem_impl_common.hpp" +#include namespace ams::lmem { diff --git a/libstratosphere/include/stratosphere/lmem/lmem_exp_heap.hpp b/libstratosphere/include/stratosphere/lmem/lmem_exp_heap.hpp index 9660ca97..83888f3a 100644 --- a/libstratosphere/include/stratosphere/lmem/lmem_exp_heap.hpp +++ b/libstratosphere/include/stratosphere/lmem/lmem_exp_heap.hpp @@ -16,7 +16,7 @@ #pragma once #include -#include "lmem_common.hpp" +#include namespace ams::lmem { diff --git a/libstratosphere/include/stratosphere/lmem/lmem_unit_heap.hpp b/libstratosphere/include/stratosphere/lmem/lmem_unit_heap.hpp index 565ad825..8dae7ee4 100644 --- a/libstratosphere/include/stratosphere/lmem/lmem_unit_heap.hpp +++ b/libstratosphere/include/stratosphere/lmem/lmem_unit_heap.hpp @@ -16,7 +16,7 @@ #pragma once #include -#include "lmem_common.hpp" +#include namespace ams::lmem { diff --git a/libstratosphere/include/stratosphere/map.hpp b/libstratosphere/include/stratosphere/map.hpp index 3932d4b1..c613d3e2 100644 --- a/libstratosphere/include/stratosphere/map.hpp +++ b/libstratosphere/include/stratosphere/map.hpp @@ -16,5 +16,5 @@ #pragma once -#include "map/map_types.hpp" -#include "map/map_api.hpp" +#include +#include diff --git a/libstratosphere/include/stratosphere/map/map_api.hpp b/libstratosphere/include/stratosphere/map/map_api.hpp index 1a596df9..7755fb17 100644 --- a/libstratosphere/include/stratosphere/map/map_api.hpp +++ b/libstratosphere/include/stratosphere/map/map_api.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "map_types.hpp" +#include namespace ams::map { diff --git a/libstratosphere/include/stratosphere/os/os_managed_handle.hpp b/libstratosphere/include/stratosphere/os/os_managed_handle.hpp index 737c3c24..c15a422c 100644 --- a/libstratosphere/include/stratosphere/os/os_managed_handle.hpp +++ b/libstratosphere/include/stratosphere/os/os_managed_handle.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "os_common_types.hpp" +#include namespace ams::os { diff --git a/libstratosphere/include/stratosphere/os/os_process_handle.hpp b/libstratosphere/include/stratosphere/os/os_process_handle.hpp index 08dd7571..25b49d04 100644 --- a/libstratosphere/include/stratosphere/os/os_process_handle.hpp +++ b/libstratosphere/include/stratosphere/os/os_process_handle.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "os_managed_handle.hpp" +#include namespace ams::os { diff --git a/libstratosphere/include/stratosphere/os/os_random.hpp b/libstratosphere/include/stratosphere/os/os_random.hpp index e1576122..dc275a92 100644 --- a/libstratosphere/include/stratosphere/os/os_random.hpp +++ b/libstratosphere/include/stratosphere/os/os_random.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "os_common_types.hpp" +#include namespace ams::os { diff --git a/libstratosphere/include/stratosphere/os/os_tick.hpp b/libstratosphere/include/stratosphere/os/os_tick.hpp index 05338e77..765ca8aa 100644 --- a/libstratosphere/include/stratosphere/os/os_tick.hpp +++ b/libstratosphere/include/stratosphere/os/os_tick.hpp @@ -14,7 +14,7 @@ * along with this program. If not, see . */ #pragma once -#include "os_common_types.hpp" +#include namespace ams::os { diff --git a/libstratosphere/include/stratosphere/patcher.hpp b/libstratosphere/include/stratosphere/patcher.hpp index 76223c62..3e8d3c95 100644 --- a/libstratosphere/include/stratosphere/patcher.hpp +++ b/libstratosphere/include/stratosphere/patcher.hpp @@ -16,4 +16,4 @@ #pragma once -#include "patcher/patcher_api.hpp" +#include diff --git a/libstratosphere/include/stratosphere/pm/pm_boot_mode_api.hpp b/libstratosphere/include/stratosphere/pm/pm_boot_mode_api.hpp index a88ef7e6..c71aa3d5 100644 --- a/libstratosphere/include/stratosphere/pm/pm_boot_mode_api.hpp +++ b/libstratosphere/include/stratosphere/pm/pm_boot_mode_api.hpp @@ -16,7 +16,7 @@ #pragma once -#include "pm_types.hpp" +#include namespace ams::pm::bm { diff --git a/libstratosphere/include/stratosphere/pm/pm_types.hpp b/libstratosphere/include/stratosphere/pm/pm_types.hpp index 28699b52..d61fa834 100644 --- a/libstratosphere/include/stratosphere/pm/pm_types.hpp +++ b/libstratosphere/include/stratosphere/pm/pm_types.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "../os/os_common_types.hpp" +#include namespace ams::pm { diff --git a/libstratosphere/include/stratosphere/settings/settings_fwdbg_api.hpp b/libstratosphere/include/stratosphere/settings/settings_fwdbg_api.hpp index 9e6e677c..117181b1 100644 --- a/libstratosphere/include/stratosphere/settings/settings_fwdbg_api.hpp +++ b/libstratosphere/include/stratosphere/settings/settings_fwdbg_api.hpp @@ -16,7 +16,7 @@ #pragma once #include -#include "settings_fwdbg_types.hpp" +#include namespace ams::settings::fwdbg { diff --git a/libstratosphere/include/stratosphere/settings/settings_fwdbg_types.hpp b/libstratosphere/include/stratosphere/settings/settings_fwdbg_types.hpp index 7fee0800..0429d058 100644 --- a/libstratosphere/include/stratosphere/settings/settings_fwdbg_types.hpp +++ b/libstratosphere/include/stratosphere/settings/settings_fwdbg_types.hpp @@ -16,7 +16,7 @@ #pragma once #include -#include "../sf/sf_buffer_tags.hpp" +#include namespace ams::settings::fwdbg { diff --git a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_api.hpp b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_api.hpp index bf380c82..b7d3eba0 100644 --- a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_api.hpp +++ b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_api.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "../sf_common.hpp" -#include "sf_cmif_service_object_holder.hpp" +#include +#include namespace ams::sf::cmif { diff --git a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_service_object.hpp b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_service_object.hpp index 34680b2f..179d84f5 100644 --- a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_service_object.hpp +++ b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_domain_service_object.hpp @@ -15,9 +15,9 @@ */ #pragma once -#include "sf_cmif_service_dispatch.hpp" -#include "sf_cmif_domain_api.hpp" -#include "sf_cmif_server_message_processor.hpp" +#include +#include +#include namespace ams::sf::cmif { diff --git a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_pointer_and_size.hpp b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_pointer_and_size.hpp index e3a26870..04d21e37 100644 --- a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_pointer_and_size.hpp +++ b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_pointer_and_size.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "../sf_common.hpp" +#include namespace ams::sf::cmif { diff --git a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_server_message_processor.hpp b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_server_message_processor.hpp index f96c6fd4..f518f819 100644 --- a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_server_message_processor.hpp +++ b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_server_message_processor.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "../sf_service_object.hpp" -#include "sf_cmif_pointer_and_size.hpp" +#include +#include namespace ams::sf::cmif { diff --git a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_dispatch.hpp b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_dispatch.hpp index 82714757..8f1f07f9 100644 --- a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_dispatch.hpp +++ b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_dispatch.hpp @@ -15,9 +15,9 @@ */ #pragma once -#include "../sf_service_object.hpp" -#include "sf_cmif_pointer_and_size.hpp" -#include "sf_cmif_server_message_processor.hpp" +#include +#include +#include namespace ams::sf::hipc { diff --git a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_object_holder.hpp b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_object_holder.hpp index cc9340ca..9192c1be 100644 --- a/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_object_holder.hpp +++ b/libstratosphere/include/stratosphere/sf/cmif/sf_cmif_service_object_holder.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "../sf_service_object.hpp" -#include "sf_cmif_service_dispatch.hpp" +#include +#include namespace ams::sf::cmif { diff --git a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_api.hpp b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_api.hpp index dfb20ccc..0a39b15a 100644 --- a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_api.hpp +++ b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_api.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "../sf_common.hpp" -#include "../cmif/sf_cmif_pointer_and_size.hpp" +#include +#include namespace ams::sf::hipc { diff --git a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_domain_session_manager.hpp b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_domain_session_manager.hpp index f26419d8..c014f2a2 100644 --- a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_domain_session_manager.hpp +++ b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_domain_session_manager.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "sf_hipc_server_session_manager.hpp" -#include "../cmif/sf_cmif_domain_manager.hpp" +#include +#include namespace ams::sf::hipc { diff --git a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_manager.hpp b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_manager.hpp index a50792e3..97b209e3 100644 --- a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_manager.hpp +++ b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_manager.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "sf_hipc_server_domain_session_manager.hpp" -#include "../../sm.hpp" +#include +#include namespace ams::sf::hipc { diff --git a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_session_manager.hpp b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_session_manager.hpp index 72778b41..b248a62e 100644 --- a/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_session_manager.hpp +++ b/libstratosphere/include/stratosphere/sf/hipc/sf_hipc_server_session_manager.hpp @@ -15,11 +15,11 @@ */ #pragma once -#include "../sf_common.hpp" -#include "../sf_service_object.hpp" -#include "../cmif/sf_cmif_pointer_and_size.hpp" -#include "../cmif/sf_cmif_service_object_holder.hpp" -#include "sf_hipc_api.hpp" +#include +#include +#include +#include +#include namespace ams::sf::cmif { diff --git a/libstratosphere/include/stratosphere/sf/impl/sf_impl_command_serialization.hpp b/libstratosphere/include/stratosphere/sf/impl/sf_impl_command_serialization.hpp index 19f760b7..38ca1526 100644 --- a/libstratosphere/include/stratosphere/sf/impl/sf_impl_command_serialization.hpp +++ b/libstratosphere/include/stratosphere/sf/impl/sf_impl_command_serialization.hpp @@ -15,17 +15,17 @@ */ #pragma once -#include "../sf_common.hpp" -#include "../sf_service_object.hpp" -#include "../sf_out.hpp" -#include "../sf_buffers.hpp" -#include "../sf_handles.hpp" -#include "../cmif/sf_cmif_pointer_and_size.hpp" -#include "../cmif/sf_cmif_service_dispatch.hpp" -#include "../cmif/sf_cmif_service_object_holder.hpp" -#include "../cmif/sf_cmif_domain_api.hpp" -#include "../hipc/sf_hipc_api.hpp" -#include "../hipc/sf_hipc_server_session_manager.hpp" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include /* Serialization classes. */ namespace ams::sf { diff --git a/libstratosphere/include/stratosphere/sf/sf_buffers.hpp b/libstratosphere/include/stratosphere/sf/sf_buffers.hpp index 438e88f6..fb306b81 100644 --- a/libstratosphere/include/stratosphere/sf/sf_buffers.hpp +++ b/libstratosphere/include/stratosphere/sf/sf_buffers.hpp @@ -15,10 +15,10 @@ */ #pragma once -#include "sf_common.hpp" -#include "sf_out.hpp" -#include "cmif/sf_cmif_pointer_and_size.hpp" -#include "sf_buffer_tags.hpp" +#include +#include +#include +#include namespace ams::sf { diff --git a/libstratosphere/include/stratosphere/sf/sf_handles.hpp b/libstratosphere/include/stratosphere/sf/sf_handles.hpp index 047a1873..d9812a29 100644 --- a/libstratosphere/include/stratosphere/sf/sf_handles.hpp +++ b/libstratosphere/include/stratosphere/sf/sf_handles.hpp @@ -15,9 +15,9 @@ */ #pragma once -#include "sf_common.hpp" -#include "sf_out.hpp" -#include "cmif/sf_cmif_pointer_and_size.hpp" +#include +#include +#include namespace ams::sf { diff --git a/libstratosphere/include/stratosphere/sm/sm_api.hpp b/libstratosphere/include/stratosphere/sm/sm_api.hpp index e14a417c..50c20d0c 100644 --- a/libstratosphere/include/stratosphere/sm/sm_api.hpp +++ b/libstratosphere/include/stratosphere/sm/sm_api.hpp @@ -16,7 +16,7 @@ #pragma once -#include "sm_types.hpp" +#include namespace ams::sm { diff --git a/libstratosphere/include/stratosphere/sm/sm_mitm_api.hpp b/libstratosphere/include/stratosphere/sm/sm_mitm_api.hpp index d78f63b1..fa3d53ab 100644 --- a/libstratosphere/include/stratosphere/sm/sm_mitm_api.hpp +++ b/libstratosphere/include/stratosphere/sm/sm_mitm_api.hpp @@ -16,7 +16,7 @@ #pragma once -#include "sm_types.hpp" +#include namespace ams::sm::mitm { diff --git a/libstratosphere/include/stratosphere/spl/smc/spl_smc.hpp b/libstratosphere/include/stratosphere/spl/smc/spl_smc.hpp index ace91218..b4841f09 100644 --- a/libstratosphere/include/stratosphere/spl/smc/spl_smc.hpp +++ b/libstratosphere/include/stratosphere/spl/smc/spl_smc.hpp @@ -15,7 +15,7 @@ */ #pragma once -#include "../spl_types.hpp" +#include namespace ams::spl::smc { diff --git a/libstratosphere/include/stratosphere/updater.hpp b/libstratosphere/include/stratosphere/updater.hpp index 6cf813fa..ebe907f5 100644 --- a/libstratosphere/include/stratosphere/updater.hpp +++ b/libstratosphere/include/stratosphere/updater.hpp @@ -16,5 +16,5 @@ #pragma once -#include "updater/updater_types.hpp" -#include "updater/updater_api.hpp" +#include +#include diff --git a/libstratosphere/include/stratosphere/updater/updater_api.hpp b/libstratosphere/include/stratosphere/updater/updater_api.hpp index 268d8021..0267033f 100644 --- a/libstratosphere/include/stratosphere/updater/updater_api.hpp +++ b/libstratosphere/include/stratosphere/updater/updater_api.hpp @@ -15,8 +15,8 @@ */ #pragma once -#include "updater_types.hpp" -#include "../spl/spl_types.hpp" +#include +#include namespace ams::updater {