mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 20:58:39 +00:00
18 lines
485 B
C#
18 lines
485 B
C#
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// A structure that indicates the initialization the inline software keyboard.
|
|||
|
/// </summary>
|
|||
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|||
|
struct SoftwareKeyboardInitialize
|
|||
|
{
|
|||
|
public uint Unknown;
|
|||
|
public byte LibMode;
|
|||
|
public byte FivePlus;
|
|||
|
public byte Padding1;
|
|||
|
public byte Padding2;
|
|||
|
}
|
|||
|
}
|