summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-09-22 05:46:38 +0200
committergerman77 <juangerman-13@hotmail.com>2023-09-24 04:14:37 +0200
commit6e1b113c896815ae1b347ce772af201e3ab3c524 (patch)
tree6e1bc50115ec634a0c4f105b10e9d685bf44329d /src/core/hle/service/am/am.h
parentservice: am: Implement stuff needed for Mii Edit (diff)
downloadyuzu-6e1b113c896815ae1b347ce772af201e3ab3c524.tar
yuzu-6e1b113c896815ae1b347ce772af201e3ab3c524.tar.gz
yuzu-6e1b113c896815ae1b347ce772af201e3ab3c524.tar.bz2
yuzu-6e1b113c896815ae1b347ce772af201e3ab3c524.tar.lz
yuzu-6e1b113c896815ae1b347ce772af201e3ab3c524.tar.xz
yuzu-6e1b113c896815ae1b347ce772af201e3ab3c524.tar.zst
yuzu-6e1b113c896815ae1b347ce772af201e3ab3c524.zip
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r--src/core/hle/service/am/am.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index 3d5eae44e..5b97eb5e3 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -120,6 +120,9 @@ class IDisplayController final : public ServiceFramework<IDisplayController> {
public:
explicit IDisplayController(Core::System& system_);
~IDisplayController() override;
+
+private:
+ void TakeScreenShotOfOwnLayer(HLERequestContext& ctx);
};
class IDebugFunctions final : public ServiceFramework<IDebugFunctions> {
@@ -303,7 +306,9 @@ public:
private:
void PopInData(HLERequestContext& ctx);
+ void PushOutData(HLERequestContext& ctx);
void GetLibraryAppletInfo(HLERequestContext& ctx);
+ void ExitProcessAndReturn(HLERequestContext& ctx);
void GetCallerAppletIdentityInfo(HLERequestContext& ctx);
void PushInShowMiiEditData();