diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-10 20:48:37 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-11 08:47:00 +0200 |
commit | ca96dc46767afcc6f6d9eedf68938c0a948cfecf (patch) | |
tree | 280b50ba4626e7e437ae1f560cf2b4effb3650c9 /src/core/hle/service/pctl | |
parent | Merge pull request #2354 from lioncash/header (diff) | |
download | yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.gz yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.bz2 yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.lz yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.xz yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.zst yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.zip |
Diffstat (limited to 'src/core/hle/service/pctl')
-rw-r--r-- | src/core/hle/service/pctl/module.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/service/pctl/module.cpp b/src/core/hle/service/pctl/module.cpp index 6081f41e1..c75b4ee34 100644 --- a/src/core/hle/service/pctl/module.cpp +++ b/src/core/hle/service/pctl/module.cpp @@ -12,10 +12,10 @@ namespace Service::PCTL { class IParentalControlService final : public ServiceFramework<IParentalControlService> { public: IParentalControlService() : ServiceFramework("IParentalControlService") { + // clang-format off static const FunctionInfo functions[] = { {1, &IParentalControlService::Initialize, "Initialize"}, - {1001, &IParentalControlService::CheckFreeCommunicationPermission, - "CheckFreeCommunicationPermission"}, + {1001, &IParentalControlService::CheckFreeCommunicationPermission, "CheckFreeCommunicationPermission"}, {1002, nullptr, "ConfirmLaunchApplicationPermission"}, {1003, nullptr, "ConfirmResumeApplicationPermission"}, {1004, nullptr, "ConfirmSnsPostPermission"}, @@ -30,6 +30,7 @@ public: {1013, nullptr, "ConfirmStereoVisionPermission"}, {1014, nullptr, "ConfirmPlayableApplicationVideoOld"}, {1015, nullptr, "ConfirmPlayableApplicationVideo"}, + {1016, nullptr, "ConfirmShowNewsPermission"}, {1031, nullptr, "IsRestrictionEnabled"}, {1032, nullptr, "GetSafetyLevel"}, {1033, nullptr, "SetSafetyLevel"}, @@ -45,6 +46,7 @@ public: {1045, nullptr, "UpdateFreeCommunicationApplicationList"}, {1046, nullptr, "DisableFeaturesForReset"}, {1047, nullptr, "NotifyApplicationDownloadStarted"}, + {1048, nullptr, "NotifyNetworkProfileCreated"}, {1061, nullptr, "ConfirmStereoVisionRestrictionConfigurable"}, {1062, nullptr, "GetStereoVisionRestriction"}, {1063, nullptr, "SetStereoVisionRestriction"}, @@ -63,6 +65,7 @@ public: {1411, nullptr, "GetPairingAccountInfo"}, {1421, nullptr, "GetAccountNickname"}, {1424, nullptr, "GetAccountState"}, + {1425, nullptr, "RequestPostEvents"}, {1432, nullptr, "GetSynchronizationEvent"}, {1451, nullptr, "StartPlayTimer"}, {1452, nullptr, "StopPlayTimer"}, |