using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
// TODO(jduncanator): Define all fields
[StructLayout(LayoutKind.Explicit)]
struct SoftwareKeyboardConfig
{
///
/// Type of keyboard.
///
[FieldOffset(0x0)]
public SoftwareKeyboardType Type;
///
/// When non-zero, specifies the max string length. When the input is too long, swkbd will stop accepting more input until text is deleted via the B button (Backspace).
///
[FieldOffset(0x3AC)]
public uint StringLengthMax;
///
/// When non-zero, specifies the max string length. When the input is too long, swkbd will display an icon and disable the ok-button.
///
[FieldOffset(0x3B0)]
public uint StringLengthMaxExtended;
///
/// When set, the application will validate the entered text whilst the swkbd is still on screen.
///
[FieldOffset(0x3D0), MarshalAs(UnmanagedType.I1)]
public bool CheckText;
}
}