diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2023-10-16 21:12:55 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-17 05:12:55 +0200 |
| commit | bcce184e60a0adeac287e38ebdd2af078cd91423 (patch) | |
| tree | 5a6ea3d1580b1c48046cc4213d984c928bdaadd1 /src/core/hle/service/acc/acc.h | |
| parent | 8becf13e8be13332f284b6861fd24f47fc5f20e4 (diff) | |
service: acc: Implement functions needed for profile select (#11653)
Diffstat (limited to 'src/core/hle/service/acc/acc.h')
| -rw-r--r-- | src/core/hle/service/acc/acc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h index 6b4735c2f..0395229b4 100644 --- a/src/core/hle/service/acc/acc.h +++ b/src/core/hle/service/acc/acc.h @@ -33,10 +33,13 @@ public: void TrySelectUserWithoutInteraction(HLERequestContext& ctx); void IsUserAccountSwitchLocked(HLERequestContext& ctx); void InitializeApplicationInfoV2(HLERequestContext& ctx); + void BeginUserRegistration(HLERequestContext& ctx); + void CompleteUserRegistration(HLERequestContext& ctx); void GetProfileEditor(HLERequestContext& ctx); void ListQualifiedUsers(HLERequestContext& ctx); void ListOpenContextStoredUsers(HLERequestContext& ctx); void StoreSaveDataThumbnailApplication(HLERequestContext& ctx); + void GetBaasAccountManagerForSystemService(HLERequestContext& ctx); void StoreSaveDataThumbnailSystem(HLERequestContext& ctx); private: |
