能力值:
( LV6,RANK:90 )
|
-
-
2 楼
DWORD GetWindowThreadProcessId(
HWND hWnd,
LPDWORD lpdwProcessId
);
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
谢谢楼上的朋友,我已经用这个函数实现功能了,源码如下:
CPoint ptMouse(0, 0);
GetCursorPos(&ptMouse);
HWND hWnd = ::WindowFromPoint(ptMouse);
if(hWnd == NULL)
{
return 0;
}
DWORD dwPrcessID = 0;
GetWindowThreadProcessId(hWnd, &dwPrcessID);
|
能力值:
(RANK:1010 )
|
-
-
4 楼
楼主的习惯很好
|
|
|