Answers for "set cursor position cpp"

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

Code answers related to "set cursor position cpp"

Browse Popular Code Answers by Language