namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
///
/// Identifies the text entry mode.
///
enum InputFormMode : uint
{
///
/// Displays the text entry area as a single-line field.
///
SingleLine,
///
/// Displays the text entry area as a multi-line field.
///
MultiLine
}
}