aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs')
-rw-r--r--Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs
new file mode 100644
index 00000000..2940d161
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/InlineKeyboardState.cs
@@ -0,0 +1,14 @@
+namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
+{
+ /// <summary>
+ /// Possible states for the keyboard when running in inline mode.
+ /// </summary>
+ enum InlineKeyboardState : uint
+ {
+ Uninitialized = 0x0,
+ Initializing = 0x1,
+ Ready = 0x2,
+ DataAvailable = 0x3,
+ Completed = 0x4
+ }
+}