service/notif: Add notif:a and stub ListAlarmSettings,Initialize

Used by ring fit adventure 1.2.0
This commit is contained in:
german77
2021-12-05 22:55:23 -06:00
committed by Narr the Reg
parent fae07919af
commit ac1bfe228f
6 changed files with 77 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include "core/hle/service/glue/bgtc.h"
#include "core/hle/service/glue/ectx.h"
#include "core/hle/service/glue/glue.h"
#include "core/hle/service/glue/notif.h"
namespace Service::Glue {
@ -24,6 +25,9 @@ void InstallInterfaces(Core::System& system) {
// Error Context
std::make_shared<ECTX_AW>(system)->InstallAsService(system.ServiceManager());
// Notification Services for application
std::make_shared<NOTIF_A>(system)->InstallAsService(system.ServiceManager());
}
} // namespace Service::Glue