From e52a87b98a8aba7df498f4cdb861484ecd0333ca Mon Sep 17 00:00:00 2001 From: Hexagon12 Date: Tue, 17 Apr 2018 18:37:43 +0300 Subject: Various service name fixes - part 2 (rebased) (#322) * Updated ACC with more service names * Updated SVC with more service names * Updated set with more service names * Updated sockets with more service names * Updated SPL with more service names * Updated time with more service names * Updated vi with more service names --- src/core/hle/service/acc/acc.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/core/hle/service/acc') diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index cfb6e05a5..949bf06b3 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp @@ -38,7 +38,10 @@ class IProfile final : public ServiceFramework { public: IProfile() : ServiceFramework("IProfile") { static const FunctionInfo functions[] = { + {0, nullptr, "Get"}, {1, &IProfile::GetBase, "GetBase"}, + {10, nullptr, "GetImageSize"}, + {11, nullptr, "LoadImage"}, }; RegisterHandlers(functions); } @@ -59,6 +62,11 @@ public: static const FunctionInfo functions[] = { {0, &IManagerForApplication::CheckAvailability, "CheckAvailability"}, {1, &IManagerForApplication::GetAccountId, "GetAccountId"}, + {2, nullptr, "EnsureIdTokenCacheAsync"}, + {3, nullptr, "LoadIdTokenCache"}, + {130, nullptr, "GetNintendoAccountUserResourceCacheForApplication"}, + {150, nullptr, "CreateAuthorizationRequest"}, + {160, nullptr, "StoreOpenContext"}, }; RegisterHandlers(functions); } -- cgit v1.2.3