mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-19 09:30:17 +00:00
12 lines
275 B
C#
12 lines
275 B
C#
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|
{
|
|
ref struct CmifResponse
|
|
{
|
|
public ReadOnlySpan<byte> Data;
|
|
public ReadOnlySpan<uint> Objects;
|
|
public ReadOnlySpan<int> CopyHandles;
|
|
public ReadOnlySpan<int> MoveHandles;
|
|
}
|
|
}
|