c++中GetWindowRect函数获得窗口位置

HWND gameh=::FindWindow(NULL,"test"); //test为窗口名称
 RECT r1;
 ::GetWindowRect(gameh,&r1);
cv::Point m ;//左上角坐标
 m.x=r1.left;
m.y=r1.top;

需要添加头文件

#include

Enjoy!

你可能感兴趣的:(c++)