summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/account_proxy_interface.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/account_proxy_interface.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 'src/core/hle/service/ns/account_proxy_interface.cpp')
-rw-r--r--src/core/hle/service/ns/account_proxy_interface.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/account_proxy_interface.cpp b/src/core/hle/service/ns/account_proxy_interface.cpp
new file mode 100644
index 000000000..e5041af66
--- /dev/null
+++ b/src/core/hle/service/ns/account_proxy_interface.cpp
@@ -0,0 +1,21 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/ns/account_proxy_interface.h"
+
+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;
+
+} // namespace Service::NS