mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
12 lines
289 B
C#
12 lines
289 B
C#
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|||
|
{
|
|||
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
|||
|
struct SoftwareKeyboardDictSet
|
|||
|
{
|
|||
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 28)]
|
|||
|
public uint[] Entries;
|
|||
|
}
|
|||
|
}
|