summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-02-22 15:28:15 +0100
committermailwl <mailwl@gmail.com>2018-02-22 15:28:15 +0100
commite4f94ee30bce782eb9a02cd988a9325a9f97e0d6 (patch)
tree9aff20e8bc3f135eb4df6275347ec5ec43923d7d /src/core/hle/service/am/am.h
parentStub am::SetScreenShotPermission, and bsd::StartMonitoring functions (diff)
downloadyuzu-e4f94ee30bce782eb9a02cd988a9325a9f97e0d6.tar
yuzu-e4f94ee30bce782eb9a02cd988a9325a9f97e0d6.tar.gz
yuzu-e4f94ee30bce782eb9a02cd988a9325a9f97e0d6.tar.bz2
yuzu-e4f94ee30bce782eb9a02cd988a9325a9f97e0d6.tar.lz
yuzu-e4f94ee30bce782eb9a02cd988a9325a9f97e0d6.tar.xz
yuzu-e4f94ee30bce782eb9a02cd988a9325a9f97e0d6.tar.zst
yuzu-e4f94ee30bce782eb9a02cd988a9325a9f97e0d6.zip
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r--src/core/hle/service/am/am.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index a6740fb29..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> {