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