mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-13 10:07:43 +02:00
13 lines
334 B
C#
13 lines
334 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
|
|
}
|
|
}
|