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

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

namespace Service::Audio {

AudRecA::AudRecA() : ServiceFramework{"audrec:a"} {
    // clang-format off
    static const FunctionInfo functions[] = {
        {0, nullptr, "RequestSuspendFinalOutputRecorders"},
        {1, nullptr, "RequestResumeFinalOutputRecorders"},
    };
    // clang-format on

    RegisterHandlers(functions);
}

} // namespace Service::Audio