From d562ba37a0bc603e9719bb36dc9e7e9bf4406687 Mon Sep 17 00:00:00 2001
From: jduncanator <1518948+jduncanator@users.noreply.github.com>
Date: Tue, 3 Dec 2019 15:00:56 +1100
Subject: Fully reverse swkbd configuration structure and follow-up to swkbd
implementation (#839)
* am: Fully reverse swkbd configuration structure
* Add documentation
* Remove explicit access modifiers
* Fix formatting
* Fix further formatting issues
---
.../HOS/Applets/SoftwareKeyboard/PasswordMode.cs | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs
(limited to 'Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs')
diff --git a/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs
new file mode 100644
index 00000000..fc9e1ff8
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/PasswordMode.cs
@@ -0,0 +1,18 @@
+namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
+{
+ ///
+ /// Identifies the display mode of text in a password field.
+ ///
+ enum PasswordMode : uint
+ {
+ ///
+ /// Display input characters.
+ ///
+ Disabled,
+
+ ///
+ /// Hide input characters.
+ ///
+ Enabled
+ }
+}
--
cgit v1.2.3