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