diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-04-17 17:37:43 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-04-17 17:37:43 +0200 |
commit | e52a87b98a8aba7df498f4cdb861484ecd0333ca (patch) | |
tree | d23babf7fd3e6b40c77a1ba5141ff3cad6357787 /src/core/hle/service/acc/acc.cpp | |
parent | Merge pull request #342 from bunnei/indexed-verts (diff) | |
download | yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.gz yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.bz2 yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.lz yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.xz yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.zst yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.zip |
Diffstat (limited to 'src/core/hle/service/acc/acc.cpp')
-rw-r--r-- | src/core/hle/service/acc/acc.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
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<IProfile> { 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); } |