Ryujinx/Ryujinx.HLE/OsHle/Services/Ssl/ISslContext.cs
greggameplayer ccdb912dc7
add comment
2018-07-18 01:23:06 +02:00

21 lines
518 B
C#

using Ryujinx.HLE.Logging;
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>()
{
//...
};
}
}
}