From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs (limited to 'Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs') diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs b/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs deleted file mode 100644 index e28244d4..00000000 --- a/Ryujinx.HLE/HOS/Kernel/Ipc/KBufferDescriptor.cs +++ /dev/null @@ -1,20 +0,0 @@ -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; - } - } -} \ No newline at end of file -- cgit v1.2.3