Answers for "get mouse position in c++"

C++
0

How to get cursor position c++

POINT p;
if (GetCursorPos(&p))
{
    //cursor position now in p.x and p.y
}
Posted by: Guest on August-09-2021

Browse Popular Code Answers by Language