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