我正在编写一个程序来使用windows.h中定义的SetCursorPos()
来移动鼠标指针。 SetCursorPos
的参数应为int
。我从矩形获得Point
数据结构。如何转换呢?
在此先感谢:)
答案 0 :(得分:0)
SetCursorPos定义为:
BOOL WINAPI SetCursorPos(
_In_ int X,
_In_ int Y
);
所以你可以使用:
Point p;
....some code
SetCursorPos(p.x,p.y);