mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-05 23:06:26 +02:00
24 lines
715 B
C#
24 lines
715 B
C#
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|
{
|
|
struct CmifRequestFormat
|
|
{
|
|
#pragma warning disable CS0649
|
|
public int ObjectId;
|
|
public uint RequestId;
|
|
public uint Context;
|
|
public int DataSize;
|
|
public int ServerPointerSize;
|
|
public int InAutoBuffersCount;
|
|
public int OutAutoBuffersCount;
|
|
public int InBuffersCount;
|
|
public int OutBuffersCount;
|
|
public int InOutBuffersCount;
|
|
public int InPointersCount;
|
|
public int OutPointersCount;
|
|
public int OutFixedPointersCount;
|
|
public int ObjectsCount;
|
|
public int HandlesCount;
|
|
public bool SendPid;
|
|
#pragma warning restore CS0649
|
|
}
|
|
}
|