| 1234567891011121314151617181920212223242526272829 |
- using Ryujinx.HLE.HOS.Ipc;
- using System.Collections.Generic;
- namespace Ryujinx.HLE.HOS.Services.Vi
- {
- class IManagerRootService : IpcService
- {
- private Dictionary<int, ServiceProcessRequest> _commands;
- public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
- public IManagerRootService()
- {
- _commands = new Dictionary<int, ServiceProcessRequest>
- {
- { 2, GetDisplayService }
- };
- }
- public long GetDisplayService(ServiceCtx context)
- {
- int serviceType = context.RequestData.ReadInt32();
- MakeObject(context, new IApplicationDisplayService());
- return 0;
- }
- }
- }
|