本文介绍了修改键盘钩子的lparam和wparam值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要更新lparam和wparam的值
LRESULT CALLBACK JournalRecordProc(int code,WPARAM wparam,LPARAM lparam);
这样我就可以在按下按键时以及将消息转发到目标窗口之前将字符从"a"更改为"A"

稍后通过键盘钩将小写字母转换为大写字母,然后仅使用C ++/MFC发送目标窗口.



Thankx ...

i need to update the value of lparam and wparam
LRESULT CALLBACK JournalRecordProc(int code,WPARAM wparam,LPARAM lparam);
so that i can change character from ''a'' to ''A'' at the time of keydown and before forwarding the message to the destination window

converting small case character into capital later by using keyboard hook before sending destination window using C++ / MFC only



thankx...

推荐答案


这篇关于修改键盘钩子的lparam和wparam值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 15:59