2018-06-10 18:46:42 -06:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-28 13:58:04 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-10 18:46:42 -06:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Sfdnsres
|
2018-02-28 13:58:04 -07:00
|
|
|
{
|
2018-04-05 22:01:52 -06:00
|
|
|
class IResolver : IpcService
|
2018-02-28 13:58:04 -07:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 12:58:46 -06:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-28 13:58:04 -07:00
|
|
|
|
2018-04-05 22:01:52 -06:00
|
|
|
public IResolver()
|
2018-02-28 13:58:04 -07:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-05 22:01:52 -06:00
|
|
|
//...
|
2018-02-28 13:58:04 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|