This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Runtime.InteropServices;
namespace WindowsInput
{
// Token: 0x02000003 RID: 3
[StructLayout(LayoutKind.Explicit)]
internal struct MOUSEKEYBDHARDWAREINPUT
{
// Token: 0x04000004 RID: 4
[FieldOffset(0)]
public MOUSEINPUT Mouse;
// Token: 0x04000005 RID: 5
[FieldOffset(0)]
public KEYBDINPUT Keyboard;
// Token: 0x04000006 RID: 6
[FieldOffset(0)]
public HARDWAREINPUT Hardware;
}
}