Create IApplicationAccessor

This commit is contained in:
greggameplayer 2018-06-09 01:24:35 +02:00 committed by GitHub
parent df33dcc489
commit a707ae8d90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.Services.Am
{
class IApplicationAccessor : IpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public IApplicationAccessor()
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
//...
};
}
}
}