mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-19 13:36:53 +02:00
Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
23
src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
Normal file
23
src/Ryujinx.HLE/HOS/Ipc/IpcRecvListBuffDesc.cs
Normal file
|
@ -0,0 +1,23 @@
|
|||
using System.IO;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Ipc
|
||||
{
|
||||
struct IpcRecvListBuffDesc
|
||||
{
|
||||
public ulong Position { get; private set; }
|
||||
public ulong Size { get; private set; }
|
||||
|
||||
public IpcRecvListBuffDesc(ulong position, ulong size)
|
||||
{
|
||||
Position = position;
|
||||
Size = size;
|
||||
}
|
||||
|
||||
public IpcRecvListBuffDesc(ulong packedValue)
|
||||
{
|
||||
Position = packedValue & 0xffffffffffff;
|
||||
|
||||
Size = (ushort)(packedValue >> 48);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue