mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-06 07:17:53 +00:00
19f8f86bdb
These two service functions are literally hardcoded to always return these values without any other error checking.
21 lines
483 B
C++
21 lines
483 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service::Audio {
|
|
|
|
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
|