We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// FIXME Should this fall though? comments are highly suspicious. It seems that there should not be a fall-through in these places.
// FIXME Should this fall though?
Please describe the logic of the subtractions made for numpad keys 1 to 9
eg *nativeKeyCode -= ((VC_KP_1 - VC_1) - (VC_KP_4 - VC_4) ); // 0x4D - 0x46
*nativeKeyCode -= ((VC_KP_1 - VC_1) - (VC_KP_4 - VC_4) ); // 0x4D - 0x46
Why are these not all just like the code for keypad 0?
jnativehook/src/main/jni/jni_Converter.c
Lines 142 to 166 in dd4a524
The text was updated successfully, but these errors were encountered:
No branches or pull requests
// FIXME Should this fall though?
comments are highly suspicious. It seems that there should not be a fall-through in these places.Please describe the logic of the subtractions made for numpad keys 1 to 9
eg
*nativeKeyCode -= ((VC_KP_1 - VC_1) - (VC_KP_4 - VC_4) ); // 0x4D - 0x46
Why are these not all just like the code for keypad 0?
jnativehook/src/main/jni/jni_Converter.c
Lines 142 to 166 in dd4a524
The text was updated successfully, but these errors were encountered: