2018-02-09 19:14:55 -05:00
|
|
|
using System.Collections.Generic;
|
2019-07-11 21:13:43 -04:00
|
|
|
using System.Reflection;
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.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
|
|
|
{
|
2019-07-11 21:13:43 -04:00
|
|
|
IReadOnlyDictionary<int, MethodInfo> Commands { get; }
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
|
|
|
}
|