Remove explicit access modifiers
This commit is contained in:
parent
d970e17209
commit
4e007a98cc
6 changed files with 6 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Identifies the initial position of the cursor displayed in the area.
|
/// Identifies the initial position of the cursor displayed in the area.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal enum InitialCursorPosition : uint
|
enum InitialCursorPosition : uint
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Position the cursor at the beginning of the text
|
/// Position the cursor at the beginning of the text
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Identifies the text entry mode.
|
/// Identifies the text entry mode.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal enum InputFormMode : uint
|
enum InputFormMode : uint
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Displays the text entry area as a single-line field.
|
/// Displays the text entry area as a single-line field.
|
||||||
|
|
|
@ -6,7 +6,7 @@ namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
||||||
/// Identifies prohibited character sets.
|
/// Identifies prohibited character sets.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Flags]
|
[Flags]
|
||||||
internal enum InvalidCharFlags : uint
|
enum InvalidCharFlags : uint
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// No characters are prohibited.
|
/// No characters are prohibited.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Identifies the variant of keyboard displayed on screen.
|
/// Identifies the variant of keyboard displayed on screen.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal enum KeyboardMode : uint
|
enum KeyboardMode : uint
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A full alpha-numeric keyboard.
|
/// A full alpha-numeric keyboard.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Identifies the display mode of text in a password field.
|
/// Identifies the display mode of text in a password field.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal enum PasswordMode : uint
|
enum PasswordMode : uint
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Display input characters.
|
/// Display input characters.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Identifies the software keyboard state.
|
/// Identifies the software keyboard state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal enum SoftwareKeyboardState
|
enum SoftwareKeyboardState
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// swkbd is uninitialized.
|
/// swkbd is uninitialized.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue