summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-28 21:20:43 -0400
committerGravatar Lioncash2018-07-28 21:54:55 -0400
commit6ea416091eb7f0adbf61fd43385775b87b746084 (patch)
treec272a4ec120470197544b3a35b7b785244f55ab6 /src/core/hle/service/service.cpp
parentMerge pull request #847 from lioncash/ncm (diff)
downloadyuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar.gz
yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.tar.xz
yuzu-6ea416091eb7f0adbf61fd43385775b87b746084.zip
service: Add wlan services
Adds the basic skeleton for the wlan services based off the information on Switch Brew.
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 5180a0c93..53236ef53 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -55,6 +55,7 @@
55#include "core/hle/service/ssl/ssl.h" 55#include "core/hle/service/ssl/ssl.h"
56#include "core/hle/service/time/time.h" 56#include "core/hle/service/time/time.h"
57#include "core/hle/service/vi/vi.h" 57#include "core/hle/service/vi/vi.h"
58#include "core/hle/service/wlan/wlan.h"
58 59
59using Kernel::ClientPort; 60using Kernel::ClientPort;
60using Kernel::ServerPort; 61using Kernel::ServerPort;
@@ -225,12 +226,13 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
225 PCTL::InstallInterfaces(*sm); 226 PCTL::InstallInterfaces(*sm);
226 PlayReport::InstallInterfaces(*sm); 227 PlayReport::InstallInterfaces(*sm);
227 PM::InstallInterfaces(*sm); 228 PM::InstallInterfaces(*sm);
229 Set::InstallInterfaces(*sm);
228 Sockets::InstallInterfaces(*sm); 230 Sockets::InstallInterfaces(*sm);
229 SPL::InstallInterfaces(*sm); 231 SPL::InstallInterfaces(*sm);
230 SSL::InstallInterfaces(*sm); 232 SSL::InstallInterfaces(*sm);
231 Time::InstallInterfaces(*sm); 233 Time::InstallInterfaces(*sm);
232 VI::InstallInterfaces(*sm, nv_flinger); 234 VI::InstallInterfaces(*sm, nv_flinger);
233 Set::InstallInterfaces(*sm); 235 WLAN::InstallInterfaces(*sm);
234 236
235 LOG_DEBUG(Service, "initialized OK"); 237 LOG_DEBUG(Service, "initialized OK");
236} 238}