Ryujinx/Ryujinx.HLE/OsHle/Services/Ssl/ISslContext.cs
2018-07-19 14:21:05 +02:00

20 lines
491 B
C#

using Ryujinx.HLE.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.OsHle.Services.Ssl
{
class ISslContext : IpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public ISslContext()
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
//...
};
}
}
}