mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 10:31:13 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
29 lines
639 B
C#
29 lines
639 B
C#
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
{
|
|
/// <summary>
|
|
/// Identifies the software keyboard state.
|
|
/// </summary>
|
|
enum SoftwareKeyboardState
|
|
{
|
|
/// <summary>
|
|
/// swkbd is uninitialized.
|
|
/// </summary>
|
|
Uninitialized,
|
|
|
|
/// <summary>
|
|
/// swkbd is ready to process data.
|
|
/// </summary>
|
|
Ready,
|
|
|
|
/// <summary>
|
|
/// swkbd is awaiting an interactive reply with a validation status.
|
|
/// </summary>
|
|
ValidationPending,
|
|
|
|
/// <summary>
|
|
/// swkbd has completed.
|
|
/// </summary>
|
|
Complete,
|
|
}
|
|
}
|