123456789101112131415161718192021222324252627282930 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct HARDWAREINPUT
- {
-
-
-
- public int uMsg;
-
-
-
- public short wParamL;
-
-
-
- public short wParamH;
- }
- }
- }
|