service/audctl: Implement GetTargetVolumeMin() and GetTargetVolumeMax()

These two service functions are literally hardcoded to always return
these values without any other error checking.
This commit is contained in:
Lioncash
2019-04-18 15:57:16 -04:00
parent 83b830eb2f
commit 19f8f86bdb
2 changed files with 32 additions and 2 deletions

View File

@ -12,6 +12,10 @@ class AudCtl final : public ServiceFramework<AudCtl> {
public:
explicit AudCtl();
~AudCtl() override;
private:
void GetTargetVolumeMin(Kernel::HLERequestContext& ctx);
void GetTargetVolumeMax(Kernel::HLERequestContext& ctx);
};
} // namespace Service::Audio