summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-24 06:09:56 +0100
committerGitHub <noreply@github.com>2018-02-24 06:09:56 +0100
commitc45173c9a64d9f2e4430ee5f2463a1db8351c722 (patch)
tree16c49a79d6d8408fb36266fe63d0bf00ec6af25d /src/core/hle/service/am/am.h
parentMerge pull request #217 from shinyquagsire23/time-s-missing (diff)
parentStub more functions (diff)
downloadyuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar.gz
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar.bz2
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar.lz
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar.xz
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.tar.zst
yuzu-c45173c9a64d9f2e4430ee5f2463a1db8351c722.zip
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r--src/core/hle/service/am/am.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index 793ac6555..27dbd8c95 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -36,6 +36,13 @@ private:
class IAudioController final : public ServiceFramework<IAudioController> {
public:
IAudioController();
+
+private:
+ void SetExpectedMasterVolume(Kernel::HLERequestContext& ctx);
+ void GetMainAppletExpectedMasterVolume(Kernel::HLERequestContext& ctx);
+ void GetLibraryAppletExpectedMasterVolume(Kernel::HLERequestContext& ctx);
+
+ u32 volume{100};
};
class IDisplayController final : public ServiceFramework<IDisplayController> {
@@ -62,6 +69,7 @@ private:
void UnlockExit(Kernel::HLERequestContext& ctx);
void GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& ctx);
void CreateManagedDisplayLayer(Kernel::HLERequestContext& ctx);
+ void SetScreenShotPermission(Kernel::HLERequestContext& ctx);
std::shared_ptr<NVFlinger::NVFlinger> nvflinger;
Kernel::SharedPtr<Kernel::Event> launchable_event;