blob: eebcdfbe56029ce402a2c16b8fe81303b199d00b (
plain)
1
2
3
4
5
6
7
8
9
10
|
using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices
{
interface IIpcService
{
IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
}
}
|