added class stub for HID:User service

This commit is contained in:
bunnei 2014-04-16 20:58:36 -04:00
parent b8851305bd
commit bb5bc2df25
5 changed files with 80 additions and 0 deletions

View file

@ -10,6 +10,7 @@
#include "core/hle/service/service.h"
#include "core/hle/service/apt.h"
#include "core/hle/service/gsp.h"
#include "core/hle/service/hid.h"
#include "core/hle/service/srv.h"
namespace Service {
@ -78,6 +79,7 @@ void Init() {
g_manager->AddService(new SRV::Interface);
g_manager->AddService(new APT_U::Interface);
g_manager->AddService(new GSP_GPU::Interface);
g_manager->AddService(new HID_User::Interface);
NOTICE_LOG(HLE, "Services initialized OK");
}