2018-06-11 02:46:42 +02:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-04-22 06:21:49 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-11 02:46:42 +02:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Caps
|
2018-04-22 06:21:49 +02:00
|
|
|
{
|
|
|
|
class IScreenshotService : IpcService
|
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
public IScreenshotService()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
//...
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|