summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/pctl/pctl_a.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/core/hle/service/pctl/pctl_a.cpp b/src/core/hle/service/pctl/pctl_a.cpp
index 904a31c6b..8d4462773 100644
--- a/src/core/hle/service/pctl/pctl_a.cpp
+++ b/src/core/hle/service/pctl/pctl_a.cpp
@@ -9,11 +9,16 @@
9namespace Service { 9namespace Service {
10namespace PCTL { 10namespace PCTL {
11 11
12class IParentalControlService final : public ServiceFramework<IParentalControlService> {
13public:
14 IParentalControlService() : ServiceFramework("IParentalControlService") {}
15};
16
12void PCTL_A::GetService(Kernel::HLERequestContext& ctx) { 17void PCTL_A::GetService(Kernel::HLERequestContext& ctx) {
13 LOG_WARNING(Service, "(STUBBED) called"); 18 IPC::RequestBuilder rb{ ctx, 2, 0, 0, 1 };
14 IPC::RequestBuilder rb{ctx, 2};
15 rb.Push(RESULT_SUCCESS); 19 rb.Push(RESULT_SUCCESS);
16 // TODO(Subv): This should return an IParentalControlService interface. 20 rb.PushIpcInterface<IParentalControlService>();
21 LOG_DEBUG(Service, "called");
17} 22}
18 23
19PCTL_A::PCTL_A() : ServiceFramework("pctl:a") { 24PCTL_A::PCTL_A() : ServiceFramework("pctl:a") {