mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 11:26:24 +02:00
13 lines
331 B
C#
13 lines
331 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
{
|
|
/// <summary>
|
|
/// A structure used by SetUserWordInfo request to the software keyboard.
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential, Size = 0x64)]
|
|
struct SoftwareKeyboardUserWord
|
|
{
|
|
// Unknown
|
|
}
|
|
}
|