summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pctl/pctl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/pctl/pctl.h')
-rw-r--r--src/core/hle/service/pctl/pctl.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/pctl/pctl.h b/src/core/hle/service/pctl/pctl.h
index f0a84b115..8ddf69128 100644
--- a/src/core/hle/service/pctl/pctl.h
+++ b/src/core/hle/service/pctl/pctl.h
@@ -4,11 +4,13 @@
#pragma once
-#include "core/hle/service/service.h"
+#include "core/hle/service/pctl/module.h"
namespace Service::PCTL {
-/// Registers all PCTL services with the specified service manager.
-void InstallInterfaces(SM::ServiceManager& service_manager);
+class PCTL final : public Module::Interface {
+public:
+ explicit PCTL(std::shared_ptr<Module> module, const char* name);
+};
} // namespace Service::PCTL