Implemented INotificationService

This commit is contained in:
David Marcec 2019-06-24 12:26:45 +10:00
parent a866b5864b
commit 0a47457838
5 changed files with 127 additions and 1 deletions

View file

@ -10,7 +10,7 @@ Friend::Friend(std::shared_ptr<Module> module, const char* name)
: Interface(std::move(module), name) {
static const FunctionInfo functions[] = {
{0, &Friend::CreateFriendService, "CreateFriendService"},
{1, nullptr, "CreateNotificationService"},
{1, &Friend::CreateNotificationService, "CreateNotificationService"},
{2, nullptr, "CreateDaemonSuspendSessionService"},
};
RegisterHandlers(functions);