summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/audio/audctl.h
blob: a27ff6cfe249b5914b3340b447fe8602e8418354 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                                               




                                     



                



                                                      
                                           
                       



                                                            


                             
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "core/hle/service/service.h"

namespace Core {
class System;
}

namespace Service::Audio {

class AudCtl final : public ServiceFramework<AudCtl> {
public:
    explicit AudCtl(Core::System& system_);
    ~AudCtl() override;

private:
    void GetTargetVolumeMin(Kernel::HLERequestContext& ctx);
    void GetTargetVolumeMax(Kernel::HLERequestContext& ctx);
};

} // namespace Service::Audio