From a7061eb4c8afc3a74bd983212131954671317f0b Mon Sep 17 00:00:00 2001 From: PavelBARABANOV Date: Wed, 16 Sep 2026 03:46:44 +0200 Subject: [PATCH] [ns] Rename i_async_result -> async_result (#4439) - [x] I have read and followed the [Contribution Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/CONTRIBUTING.md#code-contributions). - [x] I have read and followed the [AI Policy](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/AI.md) - [x] I have read and followed the [Coding Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/Coding.md) to the best of my ability. ------------------- Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4439 Reviewed-by: lizzie Reviewed-by: MaranBr --- src/core/CMakeLists.txt | 4 ++-- src/core/hle/service/ns/application_manager_interface.h | 2 +- .../hle/service/ns/{i_async_result.cpp => async_result.cpp} | 0 src/core/hle/service/ns/{i_async_result.h => async_result.h} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/core/hle/service/ns/{i_async_result.cpp => async_result.cpp} (100%) rename src/core/hle/service/ns/{i_async_result.h => async_result.h} (100%) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 74391b5e65..5f9e9bd654 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -796,6 +796,8 @@ add_library(core STATIC hle/service/ns/application_manager_interface.h hle/service/ns/application_version_interface.cpp hle/service/ns/application_version_interface.h + hle/service/ns/async_result.cpp + hle/service/ns/async_result.h hle/service/ns/content_management_interface.cpp hle/service/ns/content_management_interface.h hle/service/ns/develop_interface.cpp @@ -810,8 +812,6 @@ add_library(core STATIC hle/service/ns/ecommerce_interface.h hle/service/ns/factory_reset_interface.cpp hle/service/ns/factory_reset_interface.h - hle/service/ns/i_async_result.cpp - hle/service/ns/i_async_result.h hle/service/ns/language.cpp hle/service/ns/language.h hle/service/ns/ns.cpp diff --git a/src/core/hle/service/ns/application_manager_interface.h b/src/core/hle/service/ns/application_manager_interface.h index af5ec780af..c4ca66f319 100644 --- a/src/core/hle/service/ns/application_manager_interface.h +++ b/src/core/hle/service/ns/application_manager_interface.h @@ -7,7 +7,7 @@ #pragma once #include "core/hle/service/cmif_types.h" -#include "core/hle/service/ns/i_async_result.h" +#include "core/hle/service/ns/async_result.h" #include "core/hle/service/ns/language.h" #include "core/hle/service/ns/ns_types.h" #include "core/hle/service/os/event.h" diff --git a/src/core/hle/service/ns/i_async_result.cpp b/src/core/hle/service/ns/async_result.cpp similarity index 100% rename from src/core/hle/service/ns/i_async_result.cpp rename to src/core/hle/service/ns/async_result.cpp diff --git a/src/core/hle/service/ns/i_async_result.h b/src/core/hle/service/ns/async_result.h similarity index 100% rename from src/core/hle/service/ns/i_async_result.h rename to src/core/hle/service/ns/async_result.h