mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 19:58:32 +00:00
d56d335c0b
* Remove dependencies on libraries provided by .NET standard library * Use System.IO.Hashing instead of Crc32.NET
15 lines
365 B
C#
15 lines
365 B
C#
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;
|
|
}
|
|
} |