friends: Implementation of IServiceCreator (#704)

- Add INotificationService (close #621)
- Add IDaemonSuspendSessionService
This commit is contained in:
Ac_K 2019-06-17 01:08:32 +02:00 committed by Thomas Guillemard
parent 2cd5d2d184
commit 70bfc01e5f
3 changed files with 70 additions and 1 deletions

View file

@ -0,0 +1,20 @@
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Friend
{
class IDaemonSuspendSessionService : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public IDaemonSuspendSessionService()
{
_commands = new Dictionary<int, ServiceProcessRequest>
{
//...
};
}
}
}