diff options
| -rw-r--r-- | src/core/hle/service/acc/acc.cpp | 7 | ||||
| -rw-r--r-- | src/core/hle/service/acc/acc.h | 1 | ||||
| -rw-r--r-- | src/core/hle/service/acc/acc_u0.cpp | 1 |
3 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index eae5ec346..4af2c3a8d 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp | |||
| @@ -824,6 +824,13 @@ void Module::Interface::IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx | |||
| 824 | rb.Push(is_locked); | 824 | rb.Push(is_locked); |
| 825 | } | 825 | } |
| 826 | 826 | ||
| 827 | void Module::Interface::InitializeApplicationInfoV2(Kernel::HLERequestContext& ctx) { | ||
| 828 | LOG_WARNING(Service_ACC, "(STUBBED) called"); | ||
| 829 | |||
| 830 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 831 | rb.Push(ResultSuccess); | ||
| 832 | } | ||
| 833 | |||
| 827 | void Module::Interface::GetProfileEditor(Kernel::HLERequestContext& ctx) { | 834 | void Module::Interface::GetProfileEditor(Kernel::HLERequestContext& ctx) { |
| 828 | IPC::RequestParser rp{ctx}; | 835 | IPC::RequestParser rp{ctx}; |
| 829 | Common::UUID user_id = rp.PopRaw<Common::UUID>(); | 836 | Common::UUID user_id = rp.PopRaw<Common::UUID>(); |
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h index a83a480cd..f7e9bc4f8 100644 --- a/src/core/hle/service/acc/acc.h +++ b/src/core/hle/service/acc/acc.h | |||
| @@ -33,6 +33,7 @@ public: | |||
| 33 | void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx); | 33 | void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx); |
| 34 | void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx); | 34 | void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx); |
| 35 | void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx); | 35 | void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx); |
| 36 | void InitializeApplicationInfoV2(Kernel::HLERequestContext& ctx); | ||
| 36 | void GetProfileEditor(Kernel::HLERequestContext& ctx); | 37 | void GetProfileEditor(Kernel::HLERequestContext& ctx); |
| 37 | void ListQualifiedUsers(Kernel::HLERequestContext& ctx); | 38 | void ListQualifiedUsers(Kernel::HLERequestContext& ctx); |
| 38 | void LoadOpenContext(Kernel::HLERequestContext& ctx); | 39 | void LoadOpenContext(Kernel::HLERequestContext& ctx); |
diff --git a/src/core/hle/service/acc/acc_u0.cpp b/src/core/hle/service/acc/acc_u0.cpp index ed241647c..df77c58f0 100644 --- a/src/core/hle/service/acc/acc_u0.cpp +++ b/src/core/hle/service/acc/acc_u0.cpp | |||
| @@ -34,6 +34,7 @@ ACC_U0::ACC_U0(std::shared_ptr<Module> module_, std::shared_ptr<ProfileManager> | |||
| 34 | {140, &ACC_U0::InitializeApplicationInfoRestricted, "InitializeApplicationInfoRestricted"}, // 6.0.0+ | 34 | {140, &ACC_U0::InitializeApplicationInfoRestricted, "InitializeApplicationInfoRestricted"}, // 6.0.0+ |
| 35 | {141, &ACC_U0::ListQualifiedUsers, "ListQualifiedUsers"}, // 6.0.0+ | 35 | {141, &ACC_U0::ListQualifiedUsers, "ListQualifiedUsers"}, // 6.0.0+ |
| 36 | {150, &ACC_U0::IsUserAccountSwitchLocked, "IsUserAccountSwitchLocked"}, // 6.0.0+ | 36 | {150, &ACC_U0::IsUserAccountSwitchLocked, "IsUserAccountSwitchLocked"}, // 6.0.0+ |
| 37 | {160, &ACC_U0::InitializeApplicationInfoV2, "InitializeApplicationInfoV2"}, | ||
| 37 | }; | 38 | }; |
| 38 | // clang-format on | 39 | // clang-format on |
| 39 | 40 | ||