Merge pull request #845 from lioncash/nfc

service: Add nfc services
This commit is contained in:
bunnei 2018-07-27 14:29:27 -07:00 committed by GitHub
commit 0191a1e526
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 243 additions and 0 deletions

View file

@ -35,6 +35,7 @@
#include "core/hle/service/ldr/ldr.h"
#include "core/hle/service/lm/lm.h"
#include "core/hle/service/mm/mm_u.h"
#include "core/hle/service/nfc/nfc.h"
#include "core/hle/service/nfp/nfp.h"
#include "core/hle/service/nifm/nifm.h"
#include "core/hle/service/nim/nim.h"
@ -211,6 +212,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
LDR::InstallInterfaces(*sm);
LM::InstallInterfaces(*sm);
MM::InstallInterfaces(*sm);
NFC::InstallInterfaces(*sm);
NFP::InstallInterfaces(*sm);
NIFM::InstallInterfaces(*sm);
NIM::InstallInterfaces(*sm);