低级键盘结构
KeyBoardStruct 中 lparam.flags 的用途是什么? 以下语句是什么意思
lparam.flags=0
lparam.flags=1
lparam.flags=32
???????
What is purpose of lparam.flags in KeyBoardStruct ?
what is meaning of following statements
lparam.flags=0
lparam.flags=1
lparam.flags=32
???????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当调用
LowLevelKeyboardProc
回调函数时,lParam
参数是指向KBDLLHOOKSTRUCT
结构。文档告诉我们以下有关该结构的
flags
成员的信息:When the
LowLevelKeyboardProc
callback function is called, thelParam
parameter is a pointer to aKBDLLHOOKSTRUCT
structure.And the documentation tells us the following about the
flags
member of that structure: