2018-02-20 12:09:23 -08:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
2018-02-09 16:14:55 -08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-03-20 13:00:00 -07:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Ns
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2018-03-19 11:58:46 -07:00
|
|
|
class ServiceNs : IpcService
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 11:58:46 -07:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2018-02-25 10:58:16 -08:00
|
|
|
public ServiceNs()
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-04 15:16:59 -07:00
|
|
|
{ 2, CountAddOnContent }
|
2018-02-09 16:14:55 -08:00
|
|
|
};
|
|
|
|
}
|
2018-04-04 15:16:59 -07:00
|
|
|
|
|
|
|
public static long CountAddOnContent(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-09 16:14:55 -08:00
|
|
|
}
|
|
|
|
}
|