Updated ACC with more service names
This commit is contained in:
@@ -38,7 +38,10 @@ class IProfile final : public ServiceFramework<IProfile> {
|
|||||||
public:
|
public:
|
||||||
IProfile() : ServiceFramework("IProfile") {
|
IProfile() : ServiceFramework("IProfile") {
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
|
{0, nullptr, "Get"},
|
||||||
{1, &IProfile::GetBase, "GetBase"},
|
{1, &IProfile::GetBase, "GetBase"},
|
||||||
|
{10, nullptr, "GetImageSize"},
|
||||||
|
{11, nullptr, "LoadImage"},
|
||||||
};
|
};
|
||||||
RegisterHandlers(functions);
|
RegisterHandlers(functions);
|
||||||
}
|
}
|
||||||
@@ -59,6 +62,11 @@ public:
|
|||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, &IManagerForApplication::CheckAvailability, "CheckAvailability"},
|
{0, &IManagerForApplication::CheckAvailability, "CheckAvailability"},
|
||||||
{1, &IManagerForApplication::GetAccountId, "GetAccountId"},
|
{1, &IManagerForApplication::GetAccountId, "GetAccountId"},
|
||||||
|
{2, nullptr, "EnsureIdTokenCacheAsync"},
|
||||||
|
{3, nullptr, "LoadIdTokenCache"},
|
||||||
|
{130, nullptr, "GetNintendoAccountUserResourceCacheForApplication"},
|
||||||
|
{150, nullptr, "CreateAuthorizationRequest"},
|
||||||
|
{160, nullptr, "StoreOpenContext"},
|
||||||
};
|
};
|
||||||
RegisterHandlers(functions);
|
RegisterHandlers(functions);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user