我制作了一个小程序,用于检测鼠标在多屏幕配置下从屏幕移动到另一个屏幕,并且它被windows defender检测为Windows 10上的木马。在我的电脑上,Windows防御者和我的防病毒软件都没有检测到(Windows 7专业版64)。 我只使用了一些功能:
GetCursorPos(&P);
...
HWND hwnd = WindowFromPoint(P);
HWND hparent = GetParent(hwnd);
while (hparent)
{
hwnd = hparent;
hparent = GetParent(hwnd);
}
SetForegroundWindow(hwnd);
该代码中是否存在可疑的内容?
由于