misc: Some dependencies cleanup (#4507)
* Remove dependencies on libraries provided by .NET standard library * Use System.IO.Hashing instead of Crc32.NET
This commit is contained in:
parent
23c844b2aa
commit
d56d335c0b
5 changed files with 14 additions and 20 deletions
|
@ -1,14 +1,15 @@
|
|||
using System.Runtime.InteropServices;
|
||||
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 uint MagicString;
|
||||
public ushort Version;
|
||||
public ushort Length;
|
||||
public uint Crc32;
|
||||
public uint Id;
|
||||
public Array4<byte> Crc32;
|
||||
public uint Id;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue