i know wat function to use but i can't get it to workd right. i use SetCursorPos()
the only problem is that it sets the cursor not to the windows coordinates but to the screen coordinates. i also tried the ScreenToClient()
but it didn't work ethier.
here is my code
pt.x=113;
pt.y=280;
ScreenToClient(hWnd, &pt);
SetCursorPos(pt.x, pt.y);
any idea? im also using win32. i hope i gave enough information