mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:38:34 +00:00
19 lines
413 B
C#
19 lines
413 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.Core.OsHle.Ipc
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
} |