2018-11-18 19:37:41 +00:00
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-05 00:52:39 +00:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
|
|
|
|
{
|
|
|
|
|
class IApplicationManagerInterface : IpcService
|
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
|
private bool IsInitialized;
|
2018-11-18 19:37:41 +00:00
|
|
|
|
|
|
|
|
|
public IApplicationManagerInterface()
|
|
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
2018-11-18 19:37:41 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|