summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-07 23:37:59 +0200
committerGitHub <noreply@github.com>2021-04-07 23:37:59 +0200
commit535e50db1c7fa67402d32b8a910f0431becd095e (patch)
treee6c5fbf8bd873b502d95088b9d17246773574925 /src/core/hle/service/acc/acc.cpp
parentMerge pull request #6130 from degasus/better_assert_handling (diff)
parentdauth_o: Update to 11.x (diff)
downloadyuzu-535e50db1c7fa67402d32b8a910f0431becd095e.tar
yuzu-535e50db1c7fa67402d32b8a910f0431becd095e.tar.gz
yuzu-535e50db1c7fa67402d32b8a910f0431becd095e.tar.bz2
yuzu-535e50db1c7fa67402d32b8a910f0431becd095e.tar.lz
yuzu-535e50db1c7fa67402d32b8a910f0431becd095e.tar.xz
yuzu-535e50db1c7fa67402d32b8a910f0431becd095e.tar.zst
yuzu-535e50db1c7fa67402d32b8a910f0431becd095e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/acc/acc.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 615e20a54..52535ecc0 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -610,12 +610,17 @@ public:
explicit DAUTH_O(Core::System& system_, Common::UUID) : ServiceFramework{system_, "dauth:o"} {
// clang-format off
static const FunctionInfo functions[] = {
- {0, nullptr, "EnsureAuthenticationTokenCacheAsync"}, // [5.0.0-5.1.0] GeneratePostData
- {1, nullptr, "LoadAuthenticationTokenCache"}, // 6.0.0+
- {2, nullptr, "InvalidateAuthenticationTokenCache"}, // 6.0.0+
- {10, nullptr, "EnsureEdgeTokenCacheAsync"}, // 6.0.0+
- {11, nullptr, "LoadEdgeTokenCache"}, // 6.0.0+
- {12, nullptr, "InvalidateEdgeTokenCache"}, // 6.0.0+
+ {0, nullptr, "EnsureAuthenticationTokenCacheAsync"},
+ {1, nullptr, "LoadAuthenticationTokenCache"},
+ {2, nullptr, "InvalidateAuthenticationTokenCache"},
+ {10, nullptr, "EnsureEdgeTokenCacheAsync"},
+ {11, nullptr, "LoadEdgeTokenCache"},
+ {12, nullptr, "InvalidateEdgeTokenCache"},
+ {20, nullptr, "EnsureApplicationAuthenticationCacheAsync"},
+ {21, nullptr, "LoadApplicationAuthenticationTokenCache"},
+ {22, nullptr, "LoadApplicationNetworkServiceClientConfigCache"},
+ {23, nullptr, "IsApplicationAuthenticationCacheAvailable"},
+ {24, nullptr, "InvalidateApplicationAuthenticationCache"},
};
// clang-format on