diff options
| author | 2018-08-04 17:54:54 -0400 | |
|---|---|---|
| committer | 2018-08-04 18:01:12 -0400 | |
| commit | de7295618182135e11fa968feba79b8a6b72f0b3 (patch) | |
| tree | 517b07405c3d6d134e7ca6adf733b91e5e999dc9 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #849 from DarkLordZach/xci (diff) | |
| download | yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.gz yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.tar.xz yuzu-de7295618182135e11fa968feba79b8a6b72f0b3.zip | |
service: Add arp services
Adds the basic skeleton of the arp services based off the information
provided by Switch Brew.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 61e0c34a0..31ea79773 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include "core/hle/service/am/am.h" | 19 | #include "core/hle/service/am/am.h" |
| 20 | #include "core/hle/service/aoc/aoc_u.h" | 20 | #include "core/hle/service/aoc/aoc_u.h" |
| 21 | #include "core/hle/service/apm/apm.h" | 21 | #include "core/hle/service/apm/apm.h" |
| 22 | #include "core/hle/service/arp/arp.h" | ||
| 22 | #include "core/hle/service/audio/audio.h" | 23 | #include "core/hle/service/audio/audio.h" |
| 23 | #include "core/hle/service/bcat/bcat.h" | 24 | #include "core/hle/service/bcat/bcat.h" |
| 24 | #include "core/hle/service/bpc/bpc.h" | 25 | #include "core/hle/service/bpc/bpc.h" |
| @@ -207,6 +208,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 207 | AM::InstallInterfaces(*sm, nv_flinger); | 208 | AM::InstallInterfaces(*sm, nv_flinger); |
| 208 | AOC::InstallInterfaces(*sm); | 209 | AOC::InstallInterfaces(*sm); |
| 209 | APM::InstallInterfaces(*sm); | 210 | APM::InstallInterfaces(*sm); |
| 211 | ARP::InstallInterfaces(*sm); | ||
| 210 | Audio::InstallInterfaces(*sm); | 212 | Audio::InstallInterfaces(*sm); |
| 211 | BCAT::InstallInterfaces(*sm); | 213 | BCAT::InstallInterfaces(*sm); |
| 212 | BPC::InstallInterfaces(*sm); | 214 | BPC::InstallInterfaces(*sm); |