diff options
author | Franco M <francomaro@gmail.com> | 2023-10-17 06:01:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-17 06:01:41 +0200 |
commit | 668a10f9b932dcde43768c12833a3b7af7f47ef6 (patch) | |
tree | 5504ba5ea85137b7192dcc5f60522666682fd5b0 /src/core/hle/service/acc/acc.h | |
parent | Moved check. (diff) | |
parent | service: acc: Implement functions needed for profile select (#11653) (diff) | |
download | yuzu-668a10f9b932dcde43768c12833a3b7af7f47ef6.tar yuzu-668a10f9b932dcde43768c12833a3b7af7f47ef6.tar.gz yuzu-668a10f9b932dcde43768c12833a3b7af7f47ef6.tar.bz2 yuzu-668a10f9b932dcde43768c12833a3b7af7f47ef6.tar.lz yuzu-668a10f9b932dcde43768c12833a3b7af7f47ef6.tar.xz yuzu-668a10f9b932dcde43768c12833a3b7af7f47ef6.tar.zst yuzu-668a10f9b932dcde43768c12833a3b7af7f47ef6.zip |
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: |