mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:58:40 +00:00
17 lines
498 B
C#
17 lines
498 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Sdk.Sf.Hipc
|
|||
|
{
|
|||
|
ref struct HipcMessageData
|
|||
|
{
|
|||
|
public Span<HipcStaticDescriptor> SendStatics;
|
|||
|
public Span<HipcBufferDescriptor> SendBuffers;
|
|||
|
public Span<HipcBufferDescriptor> ReceiveBuffers;
|
|||
|
public Span<HipcBufferDescriptor> ExchangeBuffers;
|
|||
|
public Span<uint> DataWords;
|
|||
|
public Span<HipcReceiveListEntry> ReceiveList;
|
|||
|
public Span<int> CopyHandles;
|
|||
|
public Span<int> MoveHandles;
|
|||
|
}
|
|||
|
}
|