Ryujinx/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs

29 lines
748 B
C#
Raw Normal View History

using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Vi
{
class ISystemRootService : IpcService
{
2018-12-01 20:01:59 +00:00
private Dictionary<int, ServiceProcessRequest> _commands;
2018-12-01 20:01:59 +00:00
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public ISystemRootService()
{
2018-12-01 20:01:59 +00:00
_commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 1, GetDisplayService }
};
}
2018-12-01 20:01:59 +00:00
public long GetDisplayService(ServiceCtx context)
{
2018-12-01 20:01:59 +00:00
int serviceType = context.RequestData.ReadInt32();
2018-12-01 20:01:59 +00:00
MakeObject(context, new IApplicationDisplayService());
return 0;
}
}
}