| 12345678910111213141516171819202122 |
- // 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(Core::System& system_) : ServiceFramework{system_, "audrec:a"} {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, nullptr, "RequestSuspend"},
- {1, nullptr, "RequestResume"},
- };
- // clang-format on
- RegisterHandlers(functions);
- }
- AudRecA::~AudRecA() = default;
- } // namespace Service::Audio
|