1234567891011121314151617181920212223242526272829303132333435363738 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Explicit)]
- public struct INPUT
- {
-
-
-
- [FieldOffset(0)]
- public int type;
-
-
-
- [FieldOffset(4)]
- public MOUSEINPUT mi;
-
-
-
- [FieldOffset(4)]
- public KEYBDINPUT ki;
-
-
-
- [FieldOffset(4)]
- public HARDWAREINPUT hi;
- }
- }
- }
|