2018-02-20 20:09:23 +00:00
|
|
|
using Ryujinx.Core.OsHle.Handles;
|
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-02-25 04:34:16 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.IpcServices.Hid
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-02-25 04:34:16 +00:00
|
|
|
class IAppletResource : IIpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
2018-02-21 21:56:52 +00:00
|
|
|
private HSharedMem Handle;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
|
|
|
public IAppletResource(HSharedMem Handle)
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 0, GetSharedMemoryHandle }
|
|
|
|
};
|
|
|
|
|
|
|
|
this.Handle = Handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long GetSharedMemoryHandle(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Context.Ns.Os.HidHandle);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|