2019-01-05 21:26:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2022-11-24 14:26:29 +00:00
|
|
|
|
using System.Runtime.CompilerServices;
|
2019-01-05 21:26:16 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Common
|
|
|
|
|
{
|
2019-02-11 12:00:32 +00:00
|
|
|
|
public static class BinaryReaderExtensions
|
2019-01-05 21:26:16 +00:00
|
|
|
|
{
|
2019-02-11 12:00:32 +00:00
|
|
|
|
public unsafe static T ReadStruct<T>(this BinaryReader reader)
|
2022-11-24 14:26:29 +00:00
|
|
|
|
where T : unmanaged
|
2019-01-05 21:26:16 +00:00
|
|
|
|
{
|
2022-11-24 14:26:29 +00:00
|
|
|
|
return MemoryMarshal.Cast<byte, T>(reader.ReadBytes(Unsafe.SizeOf<T>()))[0];
|
2019-06-27 11:11:51 +00:00
|
|
|
|
}
|
2019-01-05 21:26:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|