aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/acc/acc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-15 21:46:15 -0400
committerGitHub <noreply@github.com>2019-04-15 21:46:15 -0400
commit9186f76b07309cb87dfffd19741d9d8c82752e33 (patch)
treefbd166664700e2ede800df1a3574872cd0e1578b /src/core/hle/service/acc/acc.cpp
parentfc64156533488e73b814c00bb42b5b6079ac8fa8 (diff)
parentca96dc46767afcc6f6d9eedf68938c0a948cfecf (diff)
Merge pull request #2382 from lioncash/table
service: Update service function tables
Diffstat (limited to 'src/core/hle/service/acc/acc.cpp')
-rw-r--r--src/core/hle/service/acc/acc.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 1f8ed265e..ba7d7acbd 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -137,6 +137,7 @@ private:
class IManagerForApplication final : public ServiceFramework<IManagerForApplication> {
public:
IManagerForApplication() : ServiceFramework("IManagerForApplication") {
+ // clang-format off
static const FunctionInfo functions[] = {
{0, &IManagerForApplication::CheckAvailability, "CheckAvailability"},
{1, &IManagerForApplication::GetAccountId, "GetAccountId"},
@@ -145,7 +146,10 @@ public:
{130, nullptr, "GetNintendoAccountUserResourceCacheForApplication"},
{150, nullptr, "CreateAuthorizationRequest"},
{160, nullptr, "StoreOpenContext"},
+ {170, nullptr, "LoadNetworkServiceLicenseKindAsync"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}