mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 03:47:57 -05:00
service: Add the grc:c service
Adds the basic skeleton for the grc:c service based off the information provided by Switch Brew.
This commit is contained in:
@ -27,6 +27,7 @@
|
||||
#include "core/hle/service/fatal/fatal.h"
|
||||
#include "core/hle/service/filesystem/filesystem.h"
|
||||
#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/ldr/ldr.h"
|
||||
#include "core/hle/service/lm/lm.h"
|
||||
@ -198,6 +199,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
|
||||
Fatal::InstallInterfaces(*sm);
|
||||
FileSystem::InstallInterfaces(*sm);
|
||||
Friend::InstallInterfaces(*sm);
|
||||
GRC::InstallInterfaces(*sm);
|
||||
HID::InstallInterfaces(*sm);
|
||||
LDR::InstallInterfaces(*sm);
|
||||
LM::InstallInterfaces(*sm);
|
||||
|
Reference in New Issue
Block a user