2022-11-24 15:26:29 +01:00
|
|
|
|
using Ryujinx.Common.Memory;
|
|
|
|
|
using System.Runtime.InteropServices;
|
2021-01-11 19:27:55 +01:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
|
|
|
{
|
2021-02-11 01:28:44 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A structure with custom dictionary words for the software keyboard.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 2)]
|
2021-01-11 19:27:55 +01:00
|
|
|
|
struct SoftwareKeyboardDictSet
|
|
|
|
|
{
|
2021-02-11 01:28:44 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A 0x1000-byte aligned buffer position.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ulong BufferPosition;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A 0x1000-byte aligned buffer size.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint BufferSize;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Array of word entries in the buffer.
|
|
|
|
|
/// </summary>
|
2022-11-24 15:26:29 +01:00
|
|
|
|
public Array24<ulong> Entries;
|
2021-02-11 01:28:44 +01:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Number of used entries in the Entries field.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ushort TotalEntries;
|
|
|
|
|
|
|
|
|
|
public ushort Padding1;
|
2021-01-11 19:27:55 +01:00
|
|
|
|
}
|
|
|
|
|
}
|