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 --- .../SoftwareKeyboard/SoftwareKeyboardDictSet.cs | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs') diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs deleted file mode 100644 index 38554881..00000000 --- a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs +++ /dev/null @@ -1,34 +0,0 @@ -using Ryujinx.Common.Memory; -using System.Runtime.InteropServices; - -namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard -{ - /// - /// A structure with custom dictionary words for the software keyboard. - /// - [StructLayout(LayoutKind.Sequential, Pack = 2)] - struct SoftwareKeyboardDictSet - { - /// - /// A 0x1000-byte aligned buffer position. - /// - public ulong BufferPosition; - - /// - /// A 0x1000-byte aligned buffer size. - /// - public uint BufferSize; - - /// - /// Array of word entries in the buffer. - /// - public Array24 Entries; - - /// - /// Number of used entries in the Entries field. - /// - public ushort TotalEntries; - - public ushort Padding1; - } -} -- cgit v1.2.3