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/SoftwareKeyboardInitialize.cs | 26 ++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs
(limited to 'src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs')
diff --git a/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs
new file mode 100644
index 00000000..764d0e38
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardInitialize.cs
@@ -0,0 +1,26 @@
+using System.Runtime.InteropServices;
+
+namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
+{
+ ///
+ /// A structure that mirrors the parameters used to initialize the keyboard applet.
+ ///
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
+ struct SoftwareKeyboardInitialize
+ {
+ public uint Unknown;
+
+ ///
+ /// The applet mode used when launching the swkb. The bits regarding the background vs foreground mode can be wrong.
+ ///
+ public byte LibMode;
+
+ ///
+ /// [5.0.0+] Set to 0x1 to indicate a firmware version >= 5.0.0.
+ ///
+ public byte FivePlus;
+
+ public byte Padding1;
+ public byte Padding2;
+ }
+}
--
cgit v1.2.3