2018-08-16 17:47:36 -06:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-04-21 17:04:43 -06:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 17:47:36 -06:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
2018-04-21 17:04:43 -06:00
|
|
|
{
|
|
|
|
class ISystemUpdateInterface : IpcService
|
|
|
|
{
|
2018-12-04 13:23:37 -07:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-04-21 17:04:43 -06:00
|
|
|
|
2018-12-04 13:23:37 -07:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-04-21 17:04:43 -06:00
|
|
|
|
|
|
|
public ISystemUpdateInterface()
|
|
|
|
{
|
2018-12-04 13:23:37 -07:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-04-21 17:04:43 -06:00
|
|
|
{
|
|
|
|
//...
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|