Advertisement
Guest User

Untitled

a guest
Jul 12th, 2016
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.82 KB | None | 0 0
  1. class Program
  2.     {    
  3.  
  4.         static void Main(string[] args)
  5.         {
  6.             var pInputs = new[] {
  7.                 new INPUT
  8.                 {
  9.                     type = InputType.KEYBOARD,
  10.                     U = new InputUnion
  11.                     {
  12.                         ki = { wScan = ScanCodeShort.KEY_H, wVk = VirtualKeyShort.KEY_H }
  13.                     }
  14.                 },
  15.                 new INPUT
  16.                 {
  17.                     type = InputType.KEYBOARD,
  18.                     U = new InputUnion
  19.                     {
  20.                         ki = { wScan = ScanCodeShort.KEY_H, wVk = VirtualKeyShort.KEY_H, dwFlags = KEYEVENTF.KEYUP }
  21.                     }
  22.                 },
  23.                 new INPUT
  24.                 {
  25.                     type = InputType.KEYBOARD,
  26.                     U = new InputUnion
  27.                     {
  28.                         ki = { wScan = ScanCodeShort.KEY_I, wVk = VirtualKeyShort.KEY_I }
  29.                     }
  30.                 },
  31.                 new INPUT
  32.                 {
  33.                     type = InputType.KEYBOARD,
  34.                     U = new InputUnion
  35.                     {
  36.                         ki = { wScan = ScanCodeShort.KEY_I, wVk = VirtualKeyShort.KEY_I, dwFlags = KEYEVENTF.KEYUP }
  37.                     }
  38.                 }
  39.             };
  40.  
  41.  
  42.             Process[] processes = Process.GetProcessesByName("notepad");
  43.  
  44.             if (processes.Length == 0)
  45.                 throw new Exception("Could not find the notepad process; is notepad running?");
  46.  
  47.             IntPtr WindowHandle = processes[0].MainWindowHandle;
  48.             ForceForegroundWindow(WindowHandle);
  49.  
  50.             Thread.Sleep(2500);
  51.             SendInput((uint)pInputs.Length, pInputs, INPUT.Size);
  52.         }
  53.  
  54.         private static void ForceForegroundWindow(IntPtr hWnd)
  55.         {
  56.  
  57.             uint foreThread = GetWindowThreadProcessId(GetForegroundWindow(), IntPtr.Zero);
  58.             uint appThread = GetCurrentThreadId();
  59.             if (foreThread != appThread)
  60.             {
  61.                 var t = AttachThreadInput(foreThread, appThread, true);
  62.                 Console.WriteLine(t);
  63.                 SetForegroundWindow(hWnd);
  64.                 BringWindowToTop(hWnd);
  65.                 ShowWindow(hWnd, ShowWindowCommands.Show);
  66.                 var t2 = AttachThreadInput(foreThread, appThread, false);
  67.                 Console.WriteLine(t2);
  68.             }
  69.             else
  70.             {
  71.                 BringWindowToTop(hWnd);
  72.                 ShowWindow(hWnd, ShowWindowCommands.Show);
  73.             }
  74.         }
  75.  
  76.         [DllImport("kernel32.dll")]
  77.         static extern uint GetCurrentThreadId();
  78.  
  79.         [DllImport("user32.dll")]
  80.         private static extern IntPtr GetForegroundWindow();
  81.  
  82.         [DllImport("user32.dll", SetLastError = true)]
  83.         static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);
  84.  
  85.         // When you don't want the ProcessId, use this overload and pass IntPtr.Zero for the second parameter
  86.         [DllImport("user32.dll")]
  87.         static extern uint GetWindowThreadProcessId(IntPtr hWnd, IntPtr ProcessId);
  88.  
  89.         [DllImport("user32.dll")]
  90.         static extern bool AttachThreadInput(uint idAttach, uint idAttachTo, bool fAttach);
  91.  
  92.         [DllImport("user32.dll")]
  93.         [return: MarshalAs(UnmanagedType.Bool)]
  94.         static extern bool ShowWindow(IntPtr hWnd, ShowWindowCommands nCmdShow);
  95.  
  96.         [DllImport("user32.dll", SetLastError = true)]
  97.         static extern bool BringWindowToTop(IntPtr hWnd);
  98.  
  99.         [DllImport("user32.dll", SetLastError = true)]
  100.         static extern bool BringWindowToTop(HandleRef hWnd);
  101.  
  102.         [DllImport("user32.dll")]
  103.         static extern uint SendInput(uint nInputs, [MarshalAs(UnmanagedType.LPArray), In] INPUT[] pInputs, int cbSize);
  104.  
  105.         [DllImport("user32.dll")]
  106.         [return: MarshalAs(UnmanagedType.Bool)]
  107.         static extern bool SetForegroundWindow(IntPtr hWnd);
  108.  
  109.         [DllImport("user32.dll", SetLastError = true)]
  110.         static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
  111.  
  112.  
  113.         [DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
  114.         static extern IntPtr FindWindowByCaption(IntPtr ZeroOnly, string lpWindowName);
  115.  
  116.         [StructLayout(LayoutKind.Sequential)]
  117.         public struct INPUT
  118.         {
  119.             internal InputType type;
  120.             internal InputUnion U;
  121.             internal static int Size
  122.             {
  123.                 get { return Marshal.SizeOf(typeof(INPUT)); }
  124.             }
  125.         }
  126.  
  127.         internal enum InputType : uint
  128.         {
  129.             MOUSE = 0,
  130.             KEYBOARD = 1,
  131.             HARDWARE = 2
  132.         }
  133.  
  134.         [StructLayout(LayoutKind.Explicit)]
  135.         internal struct InputUnion
  136.         {
  137.             [FieldOffset(0)]
  138.             internal MOUSEINPUT mi;
  139.             [FieldOffset(0)]
  140.             internal KEYBDINPUT ki;
  141.             [FieldOffset(0)]
  142.             internal HARDWAREINPUT hi;
  143.         }
  144.  
  145.         [StructLayout(LayoutKind.Sequential)]
  146.         internal struct KEYBDINPUT
  147.         {
  148.             internal VirtualKeyShort wVk;
  149.             internal ScanCodeShort wScan;
  150.             internal KEYEVENTF dwFlags;
  151.             internal int time;
  152.             internal UIntPtr dwExtraInfo;
  153.         }
  154.  
  155.         [StructLayout(LayoutKind.Sequential)]
  156.         internal struct HARDWAREINPUT
  157.         {
  158.             internal int uMsg;
  159.             internal short wParamL;
  160.             internal short wParamH;
  161.         }
  162.  
  163.         [StructLayout(LayoutKind.Sequential)]
  164.         internal struct MOUSEINPUT
  165.         {
  166.             internal int dx;
  167.             internal int dy;
  168.             internal int mouseData;
  169.             internal MOUSEEVENTF dwFlags;
  170.             internal uint time;
  171.             internal UIntPtr dwExtraInfo;
  172.         }
  173.  
  174.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement