aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/psc/pm_module.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-21 21:55:03 -0500
committerLiam <byteslice@airmail.cc>2024-02-21 22:26:12 -0500
commit6c2d6cff19dbd466269dd33bfef8756da68da6be (patch)
tree539d7052ea656d4e29267bd266c78ec2c93c32ef /src/core/hle/service/psc/pm_module.h
parent8bbc209950178ca7258bfc22a08101cb30c29a58 (diff)
psc: move IPmControl, IPmModule, IPmService
Diffstat (limited to 'src/core/hle/service/psc/pm_module.h')
-rw-r--r--src/core/hle/service/psc/pm_module.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/psc/pm_module.h b/src/core/hle/service/psc/pm_module.h
new file mode 100644
index 000000000..b3a2d2584
--- /dev/null
+++ b/src/core/hle/service/psc/pm_module.h
@@ -0,0 +1,16 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service::PSC {
+
+class IPmModule final : public ServiceFramework<IPmModule> {
+public:
+ explicit IPmModule(Core::System& system_);
+ ~IPmModule() override;
+};
+
+} // namespace Service::PSC