Lines Matching refs:pt
227 POINT pt; in WIN_WarpMouse() local
234 pt.x = x; in WIN_WarpMouse()
235 pt.y = y; in WIN_WarpMouse()
236 ClientToScreen(hwnd, &pt); in WIN_WarpMouse()
237 SetCursorPos(pt.x, pt.y); in WIN_WarpMouse()
243 POINT pt; in WIN_WarpMouseGlobal() local
245 pt.x = x; in WIN_WarpMouseGlobal()
246 pt.y = y; in WIN_WarpMouseGlobal()
247 SetCursorPos(pt.x, pt.y); in WIN_WarpMouseGlobal()
278 POINT pt = { 0, 0 }; in WIN_GetGlobalMouseState() local
279 GetCursorPos(&pt); in WIN_GetGlobalMouseState()
280 *x = (int) pt.x; in WIN_GetGlobalMouseState()
281 *y = (int) pt.y; in WIN_GetGlobalMouseState()