service/audio: Add missing services

Adds the missing audctl service, as well as the :a and :d services for
audin, audout, audrec, and audren.
This commit is contained in:
Lioncash
2018-07-31 19:59:42 -04:00
parent 0a2b219a31
commit bba63b33a1
14 changed files with 289 additions and 2 deletions

View File

@ -0,0 +1,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/auddbg.h"
namespace Service::Audio {
AudDbg::AudDbg(const char* name) : ServiceFramework{name} {
// clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "RequestSuspendForDebug"},
{1, nullptr, "RequestResumeForDebug"},
};
// clang-format on
RegisterHandlers(functions);
}
} // namespace Service::Audio