mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 14:07:42 +02:00
19 lines
No EOL
408 B
C#
19 lines
No EOL
408 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.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);
|
|
}
|
|
}
|
|
} |