summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nifm/nifm.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-25 02:30:58 +0100
committerGitHub <noreply@github.com>2019-11-25 02:30:58 +0100
commit50c7539108492fa5c326e06a823026f15b07d06a (patch)
tree1d7ab9588325efad6ff2fd3445ed13369c2defbf /src/core/hle/service/nifm/nifm.cpp
parentMerge pull request #3155 from bunnei/fix-asynch-gpu-wait (diff)
parentservice: Update function tables (diff)
downloadyuzu-50c7539108492fa5c326e06a823026f15b07d06a.tar
yuzu-50c7539108492fa5c326e06a823026f15b07d06a.tar.gz
yuzu-50c7539108492fa5c326e06a823026f15b07d06a.tar.bz2
yuzu-50c7539108492fa5c326e06a823026f15b07d06a.tar.lz
yuzu-50c7539108492fa5c326e06a823026f15b07d06a.tar.xz
yuzu-50c7539108492fa5c326e06a823026f15b07d06a.tar.zst
yuzu-50c7539108492fa5c326e06a823026f15b07d06a.zip
Diffstat (limited to '')
-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:
IGeneralService::IGeneralService(Core::System& system)
: ServiceFramework("IGeneralService"), system(system) {
+ // clang-format off
static const FunctionInfo functions[] = {
{1, &IGeneralService::GetClientId, "GetClientId"},
{2, &IGeneralService::CreateScanRequest, "CreateScanRequest"},
@@ -246,7 +247,14 @@ IGeneralService::IGeneralService(Core::System& system)
{36, nullptr, "GetCurrentAccessPoint"},
{37, nullptr, "Shutdown"},
{38, nullptr, "GetAllowedChannels"},
+ {39, nullptr, "NotifyApplicationSuspended"},
+ {40, nullptr, "SetAcceptableNetworkTypeFlag"},
+ {41, nullptr, "GetAcceptableNetworkTypeFlag"},
+ {42, nullptr, "NotifyConnectionStateChanged"},
+ {43, nullptr, "SetWowlDelayedWakeTime"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}