using Ryujinx.Core.OsHle.Ipc; using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Vi { class IApplicationRootService : IpcService { private Dictionary m_Commands; public override IReadOnlyDictionary Commands => m_Commands; public IApplicationRootService() { m_Commands = new Dictionary() { { 0, GetDisplayService } }; } public long GetDisplayService(ServiceCtx Context) { int ServiceType = Context.RequestData.ReadInt32(); MakeObject(Context, new IApplicationDisplayService()); return 0; } } }