mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 18:07:57 -05:00
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:
@ -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);
|
||||
|
Reference in New Issue
Block a user