123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct KEYBDINPUT
- {
-
-
-
- public short wVk;
-
-
-
- public short wScan;
-
-
-
- public int dwFlags;
-
-
-
- public int time;
-
-
-
- public IntPtr dwExtraInfo;
- }
- }
- }
|