Ryujinx/Ryujinx.Core/OsHle/Ipc/IpcRecvListBuffDesc.cs

19 lines
413 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System.IO;
namespace Ryujinx.Core.OsHle.Ipc
2018-02-05 00:08:20 +01:00
{
struct IpcRecvListBuffDesc
{
public long Position { get; private set; }
public short Size { get; private set; }
public IpcRecvListBuffDesc(BinaryReader Reader)
{
long Value = Reader.ReadInt64();
Position = Value & 0xffffffffffff;
Size = (short)(Value >> 48);
}
}
}