mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 20:00:47 -07:00
15 lines
294 B
C#
15 lines
294 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
|
|
}
|
|
}
|