blob: 882ccbabe313a4705a0d06c9bed09abc13a3c69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.Input
{
[StructLayout(LayoutKind.Sequential)]
public struct KeyboardHeader
{
public long Timestamp;
public long EntryCount;
public long CurrentEntryIndex;
public long MaxEntries;
}
}
|