mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 20:36:40 +00:00
19 lines
544 B
C#
19 lines
544 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|