summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/auddbg.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/auddbg.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/auddbg.cpp')
-rw-r--r--src/core/hle/service/audio/auddbg.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/auddbg.cpp b/src/core/hle/service/audio/auddbg.cpp
new file mode 100644
index 000000000..b08c21a20
--- /dev/null
+++ b/src/core/hle/service/audio/auddbg.cpp
@@ -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