Ryujinx/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs

25 lines
549 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
2018-02-05 00:08:20 +01:00
{
struct IpcRecvListBuffDesc
{
public long Position { get; private set; }
public long Size { get; private set; }
2018-02-05 00:08:20 +01:00
public IpcRecvListBuffDesc(long position, long size)
{
Position = position;
Size = size;
}
public IpcRecvListBuffDesc(BinaryReader reader)
2018-02-05 00:08:20 +01:00
{
long value = reader.ReadInt64();
2018-02-05 00:08:20 +01:00
Position = value & 0xffffffffffff;
2018-02-05 00:08:20 +01:00
Size = (ushort)(value >> 48);
2018-02-05 00:08:20 +01:00
}
}
}