SoftwareKeyboardDictSet.cs 289 B

1234567891011
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
  3. {
  4. [StructLayout(LayoutKind.Sequential, Pack = 4)]
  5. struct SoftwareKeyboardDictSet
  6. {
  7. [MarshalAs(UnmanagedType.ByValArray, SizeConst = 28)]
  8. public uint[] Entries;
  9. }
  10. }