diff options
| author | st4rk <zeromythos@ufrn.edu.br> | 2018-01-21 19:03:36 -0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-01-21 22:03:36 -0500 |
| commit | 07355cf7cc114d27c34d2b61a35f929a6db3f8fb (patch) | |
| tree | 35381b658ed1f3014813aecd7c58ac289de41032 /src/core/hle/service/audio/audio.cpp | |
| parent | fdbb039427b077ef92532f07e4b4e730457a1057 (diff) | |
Added stubs for audio services. (#116)
* stubs for audout:u, audin:u, audrec:u, audren:u, codecctl and decoding tables with nullptr for future implementations
* fixing the changes requested (remove private, explicit)
Diffstat (limited to 'src/core/hle/service/audio/audio.cpp')
| -rw-r--r-- | src/core/hle/service/audio/audio.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/audio.cpp b/src/core/hle/service/audio/audio.cpp index 2b4c6c5d0..3f7fb44eb 100644 --- a/src/core/hle/service/audio/audio.cpp +++ b/src/core/hle/service/audio/audio.cpp @@ -2,14 +2,22 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include "core/hle/service/audio/audin_u.h" #include "core/hle/service/audio/audio.h" #include "core/hle/service/audio/audout_u.h" +#include "core/hle/service/audio/audrec_u.h" +#include "core/hle/service/audio/audren_u.h" +#include "core/hle/service/audio/codecctl.h" namespace Service { namespace Audio { void InstallInterfaces(SM::ServiceManager& service_manager) { std::make_shared<AudOutU>()->InstallAsService(service_manager); + std::make_shared<AudInU>()->InstallAsService(service_manager); + std::make_shared<AudRecU>()->InstallAsService(service_manager); + std::make_shared<AudRenU>()->InstallAsService(service_manager); + std::make_shared<CodecCtl>()->InstallAsService(service_manager); } } // namespace Audio |
