blob: 53c8c8950412b31d5db700dc0935e33bccfb207c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
{
/// <summary>
/// A structure used by SetCustomizeDic request to software keyboard.
/// </summary>
[StructLayout(LayoutKind.Sequential, Size = 0x70)]
struct SoftwareKeyboardCustomizeDic
{
// Unknown
}
}
|