2018-06-11 00:46:42 +00:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-04-21 19:30:06 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-11 00:46:42 +00:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Am
|
2018-04-21 19:30:06 +00: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|