summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pctl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/pctl')
-rw-r--r--src/core/hle/service/pctl/pctl.cpp16
-rw-r--r--src/core/hle/service/pctl/pctl.h16
-rw-r--r--src/core/hle/service/pctl/pctl_a.cpp30
-rw-r--r--src/core/hle/service/pctl/pctl_a.h22
4 files changed, 84 insertions, 0 deletions
diff --git a/src/core/hle/service/pctl/pctl.cpp b/src/core/hle/service/pctl/pctl.cpp
new file mode 100644
index 000000000..1b92f9f84
--- /dev/null
+++ b/src/core/hle/service/pctl/pctl.cpp
@@ -0,0 +1,16 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/service/pctl/pctl.h"
+#include "core/hle/service/pctl/pctl_a.h"
+
+namespace Service {
+namespace PCTL {
+
+void InstallInterfaces(SM::ServiceManager& service_manager) {
+ std::make_shared<PCTL_A>()->InstallAsService(service_manager);
+}
+
+} // namespace PCTL
+} // namespace Service
diff --git a/src/core/hle/service/pctl/pctl.h b/src/core/hle/service/pctl/pctl.h
new file mode 100644
index 000000000..132eb0cc1
--- /dev/null
+++ b/src/core/hle/service/pctl/pctl.h
@@ -0,0 +1,16 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service {
+namespace PCTL {
+
+/// Registers all PCTL services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& service_manager);
+
+} // namespace PCTL
+} // namespace Service
diff --git a/src/core/hle/service/pctl/pctl_a.cpp b/src/core/hle/service/pctl/pctl_a.cpp
new file mode 100644
index 000000000..97cd1d2ee
--- /dev/null
+++ b/src/core/hle/service/pctl/pctl_a.cpp
@@ -0,0 +1,30 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "common/logging/log.h"
+#include "core/hle/ipc_helpers.h"
+#include "core/hle/service/pctl/pctl_a.h"
+
+namespace Service {
+namespace PCTL {
+
+void InstallInterfaces(SM::ServiceManager& service_manager) {
+ std::make_shared<PCTL_A>()->InstallAsService(service_manager);
+}
+
+void PCTL_A::GetService(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service, "(STUBBED) called");
+ IPC::RequestBuilder rb{ctx, 1};
+ rb.Push(RESULT_SUCCESS);
+}
+
+PCTL_A::PCTL_A() : ServiceFramework("pctl:a") {
+ static const FunctionInfo functions[] = {
+ {0, &PCTL_A::GetService, "GetService"},
+ };
+ RegisterHandlers(functions);
+}
+
+} // namespace PCTL
+} // namespace Service
diff --git a/src/core/hle/service/pctl/pctl_a.h b/src/core/hle/service/pctl/pctl_a.h
new file mode 100644
index 000000000..b61622cec
--- /dev/null
+++ b/src/core/hle/service/pctl/pctl_a.h
@@ -0,0 +1,22 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service {
+namespace PCTL {
+
+class PCTL_A final : public ServiceFramework<PCTL_A> {
+public:
+ PCTL_A();
+ ~PCTL_A() = default;
+
+private:
+ void GetService(Kernel::HLERequestContext& ctx);
+};
+
+} // namespace PCTL
+} // namespace Service