service: Add the lbl service
Adds the skeleton of the lbl service based off the information provided by Switch Brew.
This commit is contained in:
parent
dc4e5f9159
commit
c2c543e8f7
4 changed files with 77 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
|||
#include "core/hle/service/friend/friend.h"
|
||||
#include "core/hle/service/grc/grc.h"
|
||||
#include "core/hle/service/hid/hid.h"
|
||||
#include "core/hle/service/lbl/lbl.h"
|
||||
#include "core/hle/service/ldn/ldn.h"
|
||||
#include "core/hle/service/ldr/ldr.h"
|
||||
#include "core/hle/service/lm/lm.h"
|
||||
|
@ -203,6 +204,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
|
|||
Friend::InstallInterfaces(*sm);
|
||||
GRC::InstallInterfaces(*sm);
|
||||
HID::InstallInterfaces(*sm);
|
||||
LBL::InstallInterfaces(*sm);
|
||||
LDN::InstallInterfaces(*sm);
|
||||
LDR::InstallInterfaces(*sm);
|
||||
LM::InstallInterfaces(*sm);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue