mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 08:05:46 +00:00
service: Add mii services
Adds the skeleton for the mii services based off information provided by Switch Brew
This commit is contained in:
parent
dc4e5f9159
commit
f46bfdd77d
6 changed files with 128 additions and 0 deletions
|
@ -32,6 +32,7 @@
|
|||
#include "core/hle/service/ldn/ldn.h"
|
||||
#include "core/hle/service/ldr/ldr.h"
|
||||
#include "core/hle/service/lm/lm.h"
|
||||
#include "core/hle/service/mii/mii.h"
|
||||
#include "core/hle/service/mm/mm_u.h"
|
||||
#include "core/hle/service/nfp/nfp.h"
|
||||
#include "core/hle/service/nifm/nifm.h"
|
||||
|
@ -206,6 +207,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
|
|||
LDN::InstallInterfaces(*sm);
|
||||
LDR::InstallInterfaces(*sm);
|
||||
LM::InstallInterfaces(*sm);
|
||||
Mii::InstallInterfaces(*sm);
|
||||
MM::InstallInterfaces(*sm);
|
||||
NFP::InstallInterfaces(*sm);
|
||||
NIFM::InstallInterfaces(*sm);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue