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