getcursorpos函数用法
答案:2 悬赏:60 手机版
解决时间 2021-03-24 14:26
- 提问者网友:不要迷恋哥
- 2021-03-23 15:31
getcursorpos函数用法
最佳答案
- 五星知识达人网友:上分大魔王
- 2021-03-23 16:58
获取当前鼠标所在位置函数的例子如下:
#include
#include
int main()
{
POINT curpos;
while(1)
{
GetCursorPos(&curpos);
printf("x:%d,y:%d",curpos.x,curpos.y);
Sleep(300);
#include
#include
int main()
{
POINT curpos;
while(1)
{
GetCursorPos(&curpos);
printf("x:%d,y:%d",curpos.x,curpos.y);
Sleep(300);
printf("
");}
}
他的用法的话,我目前只见过这一种就是我先定义一个变量然后在用着函数把鼠标的位置放到这个变量里边。
全部回答
- 1楼网友:孤老序
- 2021-03-23 17:26
GetCursorPos 要输入坐标的啊
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯