aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/IIpcService.cs
blob: f6bafe978d6b5096b9cc76d158fdacd983b7a51c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;

namespace Ryujinx.HLE.HOS.Services
{
    interface IIpcService
    {
        IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
    }
}