service: Add ldr services

Adds the skeleton for the ldr-related services based off the information
provided on Switch Brew.
This commit is contained in:
Lioncash 2018-07-25 22:57:08 -04:00
parent b0adb9a3d9
commit 3fb124961e
4 changed files with 101 additions and 0 deletions

View file

@ -26,6 +26,7 @@
#include "core/hle/service/filesystem/filesystem.h"
#include "core/hle/service/friend/friend.h"
#include "core/hle/service/hid/hid.h"
#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/nfp/nfp.h"
@ -194,6 +195,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
FileSystem::InstallInterfaces(*sm);
Friend::InstallInterfaces(*sm);
HID::InstallInterfaces(*sm);
LDR::InstallInterfaces(*sm);
LM::InstallInterfaces(*sm);
MM::InstallInterfaces(*sm);
NFP::InstallInterfaces(*sm);