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 insertions(+)
create mode 100644 src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs
(limited to 'src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs')
diff --git a/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs
new file mode 100644
index 00000000..38554881
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardDictSet.cs
@@ -0,0 +1,34 @@
+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