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

19 lines
409 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(BinaryReader Reader)
{
long Value = Reader.ReadInt64();
Position = Value & 0xffffffffffff;
Size = (ushort)(Value >> 48);
2018-02-05 00:08:20 +01:00
}
}
}