aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs')
-rw-r--r--Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
new file mode 100644
index 00000000..de112f54
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/KeyboardResult.cs
@@ -0,0 +1,14 @@
+using System;
+
+namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
+{
+ /// <summary>
+ /// The intention of the user when they finish the interaction with the keyboard.
+ /// </summary>
+ enum KeyboardResult
+ {
+ NotSet = 0,
+ Accept = 1,
+ Cancel = 2,
+ }
+} \ No newline at end of file