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:
Lioncash 2018-07-26 09:25:54 -04:00
parent 1958d07d7d
commit b28af1f6c9
4 changed files with 50 additions and 0 deletions

View file

@ -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);