mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-08 09:56:27 -05:00
18 lines
605 B
C#
18 lines
605 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;
|
|
}
|
|
} |