2018-02-28 03:31:52 +00:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-03-20 20:00:00 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Ssl
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class ServiceSsl : IpcService
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
|
|
|
public ServiceSsl()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
//{ 0, Function }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|