mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-04 00:47:44 +02:00
15 lines
359 B
C#
15 lines
359 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct KeyboardEntry
|
|
{
|
|
public long SamplesTimestamp;
|
|
public long SamplesTimestamp2;
|
|
public long Modifier;
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray , SizeConst = 0x8)]
|
|
public int[] Keys;
|
|
}
|
|
}
|