using System.Runtime.InteropServices; namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard { /// /// A structure used by SetUserWordInfo request to the software keyboard. /// [StructLayout(LayoutKind.Sequential, Pack = 4)] struct SoftwareKeyboardUserWord { [MarshalAs(UnmanagedType.ByValArray, SizeConst = 100)] public byte[] Unknown; } }