Ryujinx/Ryujinx.HLE/OsHle/Services/Ssl/ISslContext.cs

21 lines
491 B
C#
Raw Normal View History

2018-07-13 22:52:32 +00:00
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>()
{
2018-07-17 23:23:06 +00:00
//...
2018-07-13 22:52:32 +00:00
};
}
}
2018-07-17 23:23:06 +00:00
}