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 | 4c16a1a26f3d35c5d3a57a6b1e988d3c3e07a932 (diff) | |
Implemented qlaunch version of the controller applet
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; }; |
