d254548548
* change hid sharedmem writing to use structures
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;
|
|
}
|
|
}
|