summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-17 17:38:07 +0100
committerLiam <byteslice@airmail.cc>2024-02-18 16:32:21 +0100
commitae114d2fa1d381603b6908b8dfb7e4878ad44ea4 (patch)
treea8194d05d1cc17bf41eabaf66ec0bb41ca4f5de4 /src/core/hle/service/ns/ns.cpp
parentns: rewrite IPlatformServiceManager (diff)
downloadyuzu-ae114d2fa1d381603b6908b8dfb7e4878ad44ea4.tar
yuzu-ae114d2fa1d381603b6908b8dfb7e4878ad44ea4.tar.gz
yuzu-ae114d2fa1d381603b6908b8dfb7e4878ad44ea4.tar.bz2
yuzu-ae114d2fa1d381603b6908b8dfb7e4878ad44ea4.tar.lz
yuzu-ae114d2fa1d381603b6908b8dfb7e4878ad44ea4.tar.xz
yuzu-ae114d2fa1d381603b6908b8dfb7e4878ad44ea4.tar.zst
yuzu-ae114d2fa1d381603b6908b8dfb7e4878ad44ea4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/ns.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/core/hle/service/ns/ns.cpp b/src/core/hle/service/ns/ns.cpp
index 84961fc0c..b586fbcf0 100644
--- a/src/core/hle/service/ns/ns.cpp
+++ b/src/core/hle/service/ns/ns.cpp
@@ -11,6 +11,7 @@
#include "core/hle/service/filesystem/filesystem.h"
#include "core/hle/service/glue/glue_manager.h"
#include "core/hle/service/ipc_helpers.h"
+#include "core/hle/service/ns/account_proxy_interface.h"
#include "core/hle/service/ns/language.h"
#include "core/hle/service/ns/ns.h"
#include "core/hle/service/ns/ns_results.h"
@@ -21,19 +22,6 @@
namespace Service::NS {
-IAccountProxyInterface::IAccountProxyInterface(Core::System& system_)
- : ServiceFramework{system_, "IAccountProxyInterface"} {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, nullptr, "CreateUserAccount"},
- };
- // clang-format on
-
- RegisterHandlers(functions);
-}
-
-IAccountProxyInterface::~IAccountProxyInterface() = default;
-
IApplicationManagerInterface::IApplicationManagerInterface(Core::System& system_)
: ServiceFramework{system_, "IApplicationManagerInterface"} {
// clang-format off