mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-15 18:27:44 +02:00
12 lines
272 B
C#
12 lines
272 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;
|
|
}
|
|
}
|