Guest User

Untitled

a guest
Jun 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. void pressEnter();
  2. {
  3. INPUT ip;
  4. ip.type = INPUT_KEYBOARD;
  5. ip.ki.time = 0;
  6. ip.ki.dwFlags = KEYEVENTF_UNICODE;
  7. ip.ki.wScan = VK_RETURN; //VK_RETURN is the code of Return key
  8. ip.ki.wVk = 0;
  9. ip.ki.dwExtraInfo = 0;
  10. SendInput(1, &ip, sizeof(INPUT));
  11.  
  12.  
  13. }
Add Comment
Please, Sign In to add comment