summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audin_a.cpp
blob: e62a279454a34b900e7e3f81214c2c13ec8836b5 (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
// 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/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