2018-06-11 00:46:42 +00:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-11 00:46:42 +00:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-02-25 04:34:16 +00:00
|
|
|
interface IIpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-06-11 00:46:42 +00:00
|
|
|
IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|