diff options
author | FrozenAra <macjordan02@googlemail.com> | 2023-11-01 01:09:33 +0100 |
---|---|---|
committer | FrozenAra <macjordan02@googlemail.com> | 2023-11-19 18:38:58 +0100 |
commit | cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7 (patch) | |
tree | dfcff7952ed84cea825e1144284d82505ec09731 /src/core/hle/service/am/am.h | |
parent | Merge pull request #12055 from german77/activate (diff) | |
download | yuzu-cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7.tar yuzu-cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7.tar.gz yuzu-cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7.tar.bz2 yuzu-cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7.tar.lz yuzu-cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7.tar.xz yuzu-cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7.tar.zst yuzu-cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7.zip |
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r-- | src/core/hle/service/am/am.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h index 8f8cb8a9e..905a71b9f 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h @@ -87,6 +87,7 @@ public: private: void GetAppletResourceUserId(HLERequestContext& ctx); + void GetAppletResourceUserIdOfCallerApplet(HLERequestContext& ctx); void AcquireForegroundRights(HLERequestContext& ctx); }; @@ -345,6 +346,7 @@ private: void PopInData(HLERequestContext& ctx); void PushOutData(HLERequestContext& ctx); void GetLibraryAppletInfo(HLERequestContext& ctx); + void GetMainAppletIdentityInfo(HLERequestContext& ctx); void ExitProcessAndReturn(HLERequestContext& ctx); void GetCallerAppletIdentityInfo(HLERequestContext& ctx); void GetDesirableKeyboardLayout(HLERequestContext& ctx); @@ -355,6 +357,7 @@ private: void PushInShowCabinetData(); void PushInShowMiiEditData(); void PushInShowSoftwareKeyboard(); + void PushInShowController(); std::deque<std::vector<u8>> queue_data; }; |