blob: e23811e036ce075acb4e2fb231e5182caee8d93f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.Services.Ssl
{
class ServiceSsl : IpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public ServiceSsl()
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
//{ 0, Function }
};
}
}
}
|