Skip to content

Commit

Permalink
Now really preventing the key pressed from being propagated to anothe…
Browse files Browse the repository at this point in the history
…r window after terminating the process (proper r18).
  • Loading branch information
stefansundin committed Aug 19, 2008
1 parent 1f76335 commit ec7ae96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyhook.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ _declspec(dllexport) LRESULT CALLBACK KeyboardProc(int nCode, WPARAM wParam, LPA
}

//Prevent this keypress from being propagated to the window selected after the kill
return 0;
return 1;
}
}

Expand Down

0 comments on commit ec7ae96

Please sign in to comment.