aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Sf/Cmif/ServiceDispatchContext.cs
blob: 31be810d3447b14b2fc4cb88d4f51ab65ed33ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Ryujinx.Horizon.Sdk.Sf.Hipc;
using System;

namespace Ryujinx.Horizon.Sdk.Sf.Cmif
{
    ref struct ServiceDispatchContext
    {
        public IServiceObject         ServiceObject;
        public ServerSessionManager   Manager;
        public ServerSession          Session;
        public ServerMessageProcessor Processor;
        public HandlesToClose         HandlesToClose;
        public PointerAndSize         PointerBuffer;
        public ReadOnlySpan<byte>     InMessageBuffer;
        public Span<byte>             OutMessageBuffer;
        public HipcMessage            Request;
    }
}