blob: 9faa189cd967b2a42f45a8c75e3a637c5e6f175c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using Ryujinx.Common.Memory;
using System.Runtime.InteropServices;
namespace Ryujinx.Input.Motion.CemuHook.Protocol
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct Header
{
public uint MagicString;
public ushort Version;
public ushort Length;
public Array4<byte> Crc32;
public uint Id;
}
}
|