2018-06-10 20:46:42 -04:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-04-21 15:30:06 -04:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-10 20:46:42 -04:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Am
|
2018-04-21 15:30:06 -04:00
|
|
|
{
|
|
|
|
class IApplicationCreator : IpcService
|
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
public IApplicationCreator()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
//...
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|