我只想结束一个网页。。你搞个标题我。。
程序代码:#include <windows.h>
#include <stdio.h>
int main(void)
{
HWND hWnd;
RECT rect;
hWnd = FindWindow("IEFrame", "编程论坛 - 中国最大的开发者社区 - Microsoft Internet Explorer");
if (NULL != hWnd)
{
printf("关!\n");
GetWindowRect(hWnd, &rect);
SetCursorPos(rect.right - 10, rect.top + 10);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, 0);
}
return 0;
}
