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