Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
|
@ -0,0 +1,26 @@
|
|||
using System;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
||||
{
|
||||
/// <summary>
|
||||
/// Bitmask of commands encoded in the Flags field of the Calc structs.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
enum KeyboardCalcFlags : ulong
|
||||
{
|
||||
Initialize = 0x1,
|
||||
SetVolume = 0x2,
|
||||
Appear = 0x4,
|
||||
SetInputText = 0x8,
|
||||
SetCursorPos = 0x10,
|
||||
SetUtf8Mode = 0x20,
|
||||
SetKeyboardBackground = 0x100,
|
||||
SetKeyboardOptions1 = 0x200,
|
||||
SetKeyboardOptions2 = 0x800,
|
||||
EnableSeGroup = 0x2000,
|
||||
DisableSeGroup = 0x4000,
|
||||
SetBackspaceEnabled = 0x8000,
|
||||
AppearTrigger = 0x10000,
|
||||
MustShow = Appear | SetInputText | AppearTrigger
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue