2019-06-17 01:08:32 +02:00
|
|
|
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>
|
|
|
|
{
|
2019-07-02 04:39:22 +02:00
|
|
|
// ...
|
2019-06-17 01:08:32 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|