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