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