12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct MOUSEINPUT
- {
-
-
-
- public int dx;
-
-
-
- public int dy;
-
-
-
- public int mouseData;
-
-
-
- public int dwFlags;
-
-
-
- public int time;
-
-
-
- public IntPtr dwExtraInfo;
- }
- }
- }
|