1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 22:13:35 +01:00
Ryujinx/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs

19 lines
409 B
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
2018-02-04 23:08:20 +00:00
{
struct IpcRecvListBuffDesc
{
public long Position { get; private set; }
public long Size { get; private set; }
2018-02-04 23:08:20 +00:00
public IpcRecvListBuffDesc(BinaryReader Reader)
2018-02-04 23:08:20 +00:00
{
long Value = Reader.ReadInt64();
2018-02-04 23:08:20 +00:00
Position = Value & 0xffffffffffff;
2018-02-04 23:08:20 +00:00
Size = (ushort)(Value >> 48);
2018-02-04 23:08:20 +00:00
}
}
}