mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 01:55:27 +00:00
15 lines
288 B
C#
15 lines
288 B
C#
|
using Ryujinx.Horizon.Common;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Sdk.Sf.Cmif
|
|||
|
{
|
|||
|
struct CmifOutHeader
|
|||
|
{
|
|||
|
#pragma warning disable CS0649
|
|||
|
public uint Magic;
|
|||
|
public uint Version;
|
|||
|
public Result Result;
|
|||
|
public uint Token;
|
|||
|
#pragma warning restore CS0649
|
|||
|
}
|
|||
|
}
|