mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 17:07:11 +02:00
20 lines
No EOL
560 B
C#
20 lines
No EOL
560 B
C#
using Ryujinx.HLE.HOS.Kernel.Memory;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|
{
|
|
class KBufferDescriptor
|
|
{
|
|
public ulong ClientAddress { get; }
|
|
public ulong ServerAddress { get; }
|
|
public ulong Size { get; }
|
|
public MemoryState State { get; }
|
|
|
|
public KBufferDescriptor(ulong src, ulong dst, ulong size, MemoryState state)
|
|
{
|
|
ClientAddress = src;
|
|
ServerAddress = dst;
|
|
Size = size;
|
|
State = state;
|
|
}
|
|
}
|
|
} |