using System;
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
///
/// Identifies prohibited character sets.
///
[Flags]
enum InvalidCharFlags : uint
{
///
/// No characters are prohibited.
///
None = 0 << 1,
///
/// Prohibits spaces.
///
Space = 1 << 1,
///
/// Prohibits the at (@) symbol.
///
AtSymbol = 1 << 2,
///
/// Prohibits the percent (%) symbol.
///
Percent = 1 << 3,
///
/// Prohibits the forward slash (/) symbol.
///
ForwardSlash = 1 << 4,
///
/// Prohibits the backward slash (\) symbol.
///
BackSlash = 1 << 5,
///
/// Prohibits numbers.
///
Numbers = 1 << 6,
///
/// Prohibits characters outside of those allowed in download codes.
///
DownloadCode = 1 << 7,
///
/// Prohibits characters outside of those allowed in Mii Nicknames.
///
Username = 1 << 8
}
}