aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/SoftwareKeyboard/SoftwareKeyboardCustomizeDic.cs
blob: 538fb9274be336d61e4cdfccc73e45deabe3a294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Runtime.InteropServices;

namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
    /// <summary>
    /// A structure used by SetCustomizeDic request to software keyboard.
    /// </summary>
    [StructLayout(LayoutKind.Sequential, Pack = 4)]
    struct SoftwareKeyboardCustomizeDic
    {
        [MarshalAs(UnmanagedType.ByValArray, SizeConst = 112)]
        public byte[] Unknown;
    }
}