mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 06:36:40 +00:00
15 lines
357 B
C#
15 lines
357 B
C#
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Possible states for the keyboard when running in inline mode.
|
|||
|
/// </summary>
|
|||
|
enum InlineKeyboardState : uint
|
|||
|
{
|
|||
|
Uninitialized = 0x0,
|
|||
|
Initializing = 0x1,
|
|||
|
Ready = 0x2,
|
|||
|
DataAvailable = 0x3,
|
|||
|
Completed = 0x4
|
|||
|
}
|
|||
|
}
|