mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-15 18:27:44 +02:00
14 lines
315 B
C#
14 lines
315 B
C#
using Ryujinx.Horizon.Common;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|
{
|
|
struct CmifOutHeader
|
|
{
|
|
#pragma warning disable CS0649 // Field is never assigned to
|
|
public uint Magic;
|
|
public uint Version;
|
|
public Result Result;
|
|
public uint Token;
|
|
#pragma warning restore CS0649
|
|
}
|
|
}
|