howfq.exe是什么病毒?为什么它会控制鼠标?

来源:百度知道 编辑:UC知道 时间:2024/06/06 16:31:52

我也没见过。可能是HACKER高手自己编的,这类控制鼠标的病毒程序很好设计的。以下是一个这样的程序:
用mouse_event发送一个消息:
mouse_event MOUSEEVENTF_ABSOLUTE+MOUSEEVENTF_LEFTDOWN,Dx,Dy,0,0
其中Dx表示鼠标指针沿x坐标轴方向的位置,Dy表示y方向位置。MOUSEEVENTF_ABSOLUTE指定了Dx和Dy为绝对的屏幕坐标。

你可以用ClientToScreen将客户区坐标转为绝对坐标。语法如下:
BOOL ClientToScreen(
HWND hWnd, // window handle for source coordinates
LPPOINT lpPoint // pointer to structure containing screen coordinates
);

Parameters
hWnd
Handle to the window whose client area is used for the conversion.
lpPoint
Pointer to a POINT structure that contains the client coordinates to be converted. The new screen coordinates are copied into this structure if the function succeeds.
Return Values
If the function succeeds,