IIpcService.cs 216 B

12345678910
  1. using Ryujinx.HLE.OsHle.Ipc;
  2. using System.Collections.Generic;
  3. namespace Ryujinx.HLE.OsHle.Services
  4. {
  5. interface IIpcService
  6. {
  7. IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
  8. }
  9. }