Browse Source
Merge pull request #7283 from Morph1984/stub-160
service: acc: Stub acc:u0 '160'
pull/15/merge
Fernando S
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
9 additions and
0 deletions
-
src/core/hle/service/acc/acc.cpp
-
src/core/hle/service/acc/acc.h
-
src/core/hle/service/acc/acc_u0.cpp
|
|
|
@ -826,6 +826,13 @@ void Module::Interface::IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx |
|
|
|
rb.Push(is_locked); |
|
|
|
} |
|
|
|
|
|
|
|
void Module::Interface::Unknown160(Kernel::HLERequestContext& ctx) { |
|
|
|
LOG_WARNING(Service_ACC, "(STUBBED) called"); |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
|
rb.Push(ResultSuccess); |
|
|
|
} |
|
|
|
|
|
|
|
void Module::Interface::GetProfileEditor(Kernel::HLERequestContext& ctx) { |
|
|
|
IPC::RequestParser rp{ctx}; |
|
|
|
Common::UUID user_id = rp.PopRaw<Common::UUID>(); |
|
|
|
|
|
|
|
@ -33,6 +33,7 @@ public: |
|
|
|
void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx); |
|
|
|
void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx); |
|
|
|
void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx); |
|
|
|
void Unknown160(Kernel::HLERequestContext& ctx); |
|
|
|
void GetProfileEditor(Kernel::HLERequestContext& ctx); |
|
|
|
void ListQualifiedUsers(Kernel::HLERequestContext& ctx); |
|
|
|
void LoadOpenContext(Kernel::HLERequestContext& ctx); |
|
|
|
|
|
|
|
@ -34,6 +34,7 @@ ACC_U0::ACC_U0(std::shared_ptr<Module> module_, std::shared_ptr<ProfileManager> |
|
|
|
{140, &ACC_U0::InitializeApplicationInfoRestricted, "InitializeApplicationInfoRestricted"}, // 6.0.0+
|
|
|
|
{141, &ACC_U0::ListQualifiedUsers, "ListQualifiedUsers"}, // 6.0.0+
|
|
|
|
{150, &ACC_U0::IsUserAccountSwitchLocked, "IsUserAccountSwitchLocked"}, // 6.0.0+
|
|
|
|
{160, &ACC_U0::Unknown160, "Unknown160"}, |
|
|
|
}; |
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
|