summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audrec_a.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-01 05:11:04 +0200
committerGitHub <noreply@github.com>2018-08-01 05:11:04 +0200
commit98af2694157f05984d3068989088af43e5f016c6 (patch)
treef889ae07760f445f3b8cdb30dffc1c6a3ae76b98 /src/core/hle/service/audio/audrec_a.cpp
parentMerge pull request #876 from lioncash/include (diff)
parentservice/audio: Add missing services (diff)
downloadyuzu-98af2694157f05984d3068989088af43e5f016c6.tar
yuzu-98af2694157f05984d3068989088af43e5f016c6.tar.gz
yuzu-98af2694157f05984d3068989088af43e5f016c6.tar.bz2
yuzu-98af2694157f05984d3068989088af43e5f016c6.tar.lz
yuzu-98af2694157f05984d3068989088af43e5f016c6.tar.xz
yuzu-98af2694157f05984d3068989088af43e5f016c6.tar.zst
yuzu-98af2694157f05984d3068989088af43e5f016c6.zip
Diffstat (limited to 'src/core/hle/service/audio/audrec_a.cpp')
-rw-r--r--src/core/hle/service/audio/audrec_a.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/audrec_a.cpp b/src/core/hle/service/audio/audrec_a.cpp
new file mode 100644
index 000000000..9c32f9b98
--- /dev/null
+++ b/src/core/hle/service/audio/audrec_a.cpp
@@ -0,0 +1,22 @@
+// 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/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