spy++:帮助解释 spy++ 上的消息

huangapple go评论73阅读模式
英文:

spy++: Help interpreting messages on spy++

问题

I was using spy++ to log the keystrokes being sent to a game to simulate it myself using SendMessage() on Python. I have looked at the msdn documentation for WM_KEYUP and WM_KEYDOWN, so I was looking to interpret the lParam values using Spy++.

spy++:帮助解释 spy++ 上的消息

Can someone help me interpret these messages on spy++? I don't know what frepeat, crepeat and the fup values are. I tried Googling them, but couldn't find any source explaining what these parameters are.

英文:

I was using spy++ to log the keystrokes being sent to a game to simulate it myself using SendMessage() on Python. I have looked at the msdn documentation for WM_KEYUP and WM_KEYDOWN, so I was looking to interpret the lParam values using Spy++.

spy++:帮助解释 spy++ 上的消息

Can someone help me interpret these messages on spy++? I don't know what frepeat, crepeat and the fup values are. I tried Googling them, but couldn't find any source explaining what these parameters are.

答案1

得分: 2

Spy++按照它们被记录的顺序记录了WM_KEYDOWN的属性。因此,cRepeat是“重复计数”,fRepeat是“先前的键状态”,而fUp是“转换状态”。

英文:

Spy++ logs the attributes of WM_KEYDOWN in the same order that they are documented. Thus, cRepeat is the "repeat count", fRepeat is the "previous key state", and fUp is the "transition state".

huangapple
  • 本文由 发表于 2020年1月6日 17:36:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/59609684.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定