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

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

namespace Service::Audio {

AudInA::AudInA() : ServiceFramework{"audin:a"} {
    // clang-format off
    static const FunctionInfo functions[] = {
        {0, nullptr, "RequestSuspendAudioIns"},
        {1, nullptr, "RequestResumeAudioIns"},
        {2, nullptr, "GetAudioInsProcessMasterVolume"},
        {3, nullptr, "SetAudioInsProcessMasterVolume"},
    };
    // clang-format on

    RegisterHandlers(functions);
}

} // namespace Service::Audio