2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-04-21 21:30:06 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-04-21 21:30:06 +02:00
|
|
|
{
|
|
|
|
class IAllSystemAppletProxiesService : IpcService
|
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
public IAllSystemAppletProxiesService()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 100, OpenSystemAppletProxy }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public long OpenSystemAppletProxy(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new ISystemAppletProxy());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|