Ryujinx/Ryujinx.HLE/OsHle/Services/Ssl/ISslContext.cs
2018-07-14 00:52:32 +02:00

21 lines
No EOL
496 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>()
{
};
}
}
}