summaryrefslogtreecommitdiff
path: root/src/core/hle/service/npns
diff options
context:
space:
mode:
authorGravatar Lioncash2019-11-12 08:54:58 -0500
committerGravatar Lioncash2019-11-12 10:32:56 -0500
commite21b6ff79ddf7109db6f49e503e2c2e59fe466c7 (patch)
tree1c9437b9426af14d3af0566be6d385aea85d16a9 /src/core/hle/service/npns
parentMerge pull request #3085 from bunnei/web-token-b64 (diff)
downloadyuzu-e21b6ff79ddf7109db6f49e503e2c2e59fe466c7.tar.gz
yuzu-e21b6ff79ddf7109db6f49e503e2c2e59fe466c7.tar.xz
yuzu-e21b6ff79ddf7109db6f49e503e2c2e59fe466c7.zip
service: Update function tables
Keeps the function tables up to date. Updated based off information from Switchbrew.
Diffstat (limited to 'src/core/hle/service/npns')
-rw-r--r--src/core/hle/service/npns/npns.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/npns/npns.cpp b/src/core/hle/service/npns/npns.cpp
index 8751522ca..aa171473b 100644
--- a/src/core/hle/service/npns/npns.cpp
+++ b/src/core/hle/service/npns/npns.cpp
@@ -44,6 +44,10 @@ public:
44 {113, nullptr, "DestroyJid"}, 44 {113, nullptr, "DestroyJid"},
45 {114, nullptr, "AttachJid"}, 45 {114, nullptr, "AttachJid"},
46 {115, nullptr, "DetachJid"}, 46 {115, nullptr, "DetachJid"},
47 {120, nullptr, "CreateNotificationReceiver"},
48 {151, nullptr, "GetStateWithHandover"},
49 {152, nullptr, "GetStateChangeEventWithHandover"},
50 {153, nullptr, "GetDropEventWithHandover"},
47 {201, nullptr, "RequestChangeStateForceTimed"}, 51 {201, nullptr, "RequestChangeStateForceTimed"},
48 {202, nullptr, "RequestChangeStateForceAsync"}, 52 {202, nullptr, "RequestChangeStateForceAsync"},
49 }; 53 };
@@ -74,6 +78,9 @@ public:
74 {104, nullptr, "GetStatistics"}, 78 {104, nullptr, "GetStatistics"},
75 {111, nullptr, "GetJid"}, 79 {111, nullptr, "GetJid"},
76 {120, nullptr, "CreateNotificationReceiver"}, 80 {120, nullptr, "CreateNotificationReceiver"},
81 {151, nullptr, "GetStateWithHandover"},
82 {152, nullptr, "GetStateChangeEventWithHandover"},
83 {153, nullptr, "GetDropEventWithHandover"},
77 }; 84 };
78 // clang-format on 85 // clang-format on
79 86