如题日志钩子当钩取的是鼠标消息时EVENTMSG结构的UINT paramL; UINT paramH; 参数代表什么,
MSDN上我并没有找到相关的文档,想知道当钩取的到鼠标消息时,EVENTMSG结构中的paramL和paramH代表的是什么,其实我主要想得到的是这是的鼠标点的坐标,我知道可以用鼠标 钩子做到这一点,但是日志钩子应该怎么做?

解决方案 »

  1.   

    Additional information about the message. The exact meaning depends on the message value.如果message=WM_MOUSEMOVE
    wParam
    Indicates whether various virtual keys are down. This parameter can be one or more of the following values.
    lParam
    The low-order word specifies the x-coordinate of the cursor. The coordinate is relative to the upper-left corner of the client area.The high-order word specifies the y-coordinate of the cursor. The coordinate is relative to the upper-left corner of the client area.
    其他的类似
      

  2.   

    你这孩子天天没事就看MSDN啊~~