Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. ...
  2. SetWindowsHookEx(WH_KEYBOARD_LL, hook_proc(), null, 0);
  3. ...
  4.  
  5. function hook_proc() {
  6. var prevstate;
  7. var newstate;
  8. return function(code, wParam, lParam) {
  9. ...
  10. };
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement