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,16 @@
// 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/service.h"
namespace Service::Audio {
class AudCtl final : public ServiceFramework<AudCtl> {
public:
explicit AudCtl();
};
} // namespace Service::Audio