summaryrefslogtreecommitdiff
path: root/src/core/hle/service/nifm
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/nifm
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/nifm')
-rw-r--r--src/core/hle/service/nifm/nifm.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index 01d557c7a..2e53b3221 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -208,6 +208,7 @@ private:
208 208
209IGeneralService::IGeneralService(Core::System& system) 209IGeneralService::IGeneralService(Core::System& system)
210 : ServiceFramework("IGeneralService"), system(system) { 210 : ServiceFramework("IGeneralService"), system(system) {
211 // clang-format off
211 static const FunctionInfo functions[] = { 212 static const FunctionInfo functions[] = {
212 {1, &IGeneralService::GetClientId, "GetClientId"}, 213 {1, &IGeneralService::GetClientId, "GetClientId"},
213 {2, &IGeneralService::CreateScanRequest, "CreateScanRequest"}, 214 {2, &IGeneralService::CreateScanRequest, "CreateScanRequest"},
@@ -246,7 +247,14 @@ IGeneralService::IGeneralService(Core::System& system)
246 {36, nullptr, "GetCurrentAccessPoint"}, 247 {36, nullptr, "GetCurrentAccessPoint"},
247 {37, nullptr, "Shutdown"}, 248 {37, nullptr, "Shutdown"},
248 {38, nullptr, "GetAllowedChannels"}, 249 {38, nullptr, "GetAllowedChannels"},
250 {39, nullptr, "NotifyApplicationSuspended"},
251 {40, nullptr, "SetAcceptableNetworkTypeFlag"},
252 {41, nullptr, "GetAcceptableNetworkTypeFlag"},
253 {42, nullptr, "NotifyConnectionStateChanged"},
254 {43, nullptr, "SetWowlDelayedWakeTime"},
249 }; 255 };
256 // clang-format on
257
250 RegisterHandlers(functions); 258 RegisterHandlers(functions);
251} 259}
252 260