summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/final_output_recorder_manager_for_applet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/audio/final_output_recorder_manager_for_applet.cpp')
-rw-r--r--src/core/hle/service/audio/final_output_recorder_manager_for_applet.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/final_output_recorder_manager_for_applet.cpp b/src/core/hle/service/audio/final_output_recorder_manager_for_applet.cpp
new file mode 100644
index 000000000..7e2e42bbe
--- /dev/null
+++ b/src/core/hle/service/audio/final_output_recorder_manager_for_applet.cpp
@@ -0,0 +1,22 @@
+// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "core/hle/service/audio/final_output_recorder_manager_for_applet.h"
+
+namespace Service::Audio {
+
+IFinalOutputRecorderManagerForApplet::IFinalOutputRecorderManagerForApplet(Core::System& system_)
+ : ServiceFramework{system_, "audrec:a"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "RequestSuspend"},
+ {1, nullptr, "RequestResume"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+}
+
+IFinalOutputRecorderManagerForApplet::~IFinalOutputRecorderManagerForApplet() = default;
+
+} // namespace Service::Audio