friends: Implementation of IServiceCreator (#704)
- Add INotificationService (close #621) - Add IDaemonSuspendSessionService
This commit is contained in:
parent
2cd5d2d184
commit
70bfc01e5f
3 changed files with 70 additions and 1 deletions
27
Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs
Normal file
27
Ryujinx.HLE/HOS/Services/Friend/INotificationService.cs
Normal file
|
@ -0,0 +1,27 @@
|
|||
using Ryujinx.HLE.HOS.Ipc;
|
||||
using Ryujinx.HLE.Utilities;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Friend
|
||||
{
|
||||
class INotificationService : IpcService
|
||||
{
|
||||
private UInt128 _userId;
|
||||
|
||||
private Dictionary<int, ServiceProcessRequest> _commands;
|
||||
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
||||
|
||||
public INotificationService(UInt128 userId)
|
||||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>
|
||||
{
|
||||
//{ 0, GetEvent },
|
||||
//{ 1, Pop },
|
||||
//{ 2, Clear },
|
||||
};
|
||||
|
||||
_userId = userId;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue