summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audout_a.cpp
blob: 19825fd5d2a04bb397a5d2fdbe6719aa0c2d93fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

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

namespace Service::Audio {

AudOutA::AudOutA(Core::System& system_) : ServiceFramework{system_, "audout:a"} {
    // clang-format off
    static const FunctionInfo functions[] = {
        {0, nullptr, "RequestSuspendAudioOuts"},
        {1, nullptr, "RequestResumeAudioOuts"},
        {2, nullptr, "GetAudioOutsProcessMasterVolume"},
        {3, nullptr, "SetAudioOutsProcessMasterVolume"},
        {4, nullptr, "GetAudioOutsProcessRecordVolume"},
        {5, nullptr, "SetAudioOutsProcessRecordVolume"},
    };
    // clang-format on

    RegisterHandlers(functions);
}

AudOutA::~AudOutA() = default;

} // namespace Service::Audio