Home | History | Annotate | Download | only in os2fslib

Lines Matching refs:ptl

353           ptl.x = ppts->x; ptl.y = ppts->y;                                                                                       \
354 WinMapWindowPoints(pVideo->hidden->hwndClient, HWND_DESKTOP, &ptl, 1); \
355 WinSetPointerPos(HWND_DESKTOP, ptl.x, ptl.y); \
737 POINTL ptl;
740 ptl.x = 0; ptl.y = 0;
741 WinMapWindowPoints(pVideo->hidden->hwndClient, HWND_DESKTOP, &ptl, 1);
744 ptl.x + swpClient.cx/2,
745 ptl.y + swpClient.cy/2);
789 POINTL ptl;
792 ptl.x = 0; ptl.y = 0;
793 WinMapWindowPoints(pVideo->hidden->hwndClient, HWND_DESKTOP, &ptl, 1);
796 ptl.x + swpClient.cx/2,
797 ptl.y + swpClient.cy/2);
833 POINTL ptl;
836 ptl.x = 0; ptl.y = 0;
837 WinMapWindowPoints(pVideo->hidden->hwndClient, HWND_DESKTOP, &ptl, 1);
840 ptl.x + swpClient.cx/2,
841 ptl.y + swpClient.cy/2);
878 POINTL ptl;
881 ptl.x = 0; ptl.y = 0;
882 WinMapWindowPoints(pVideo->hidden->hwndClient, HWND_DESKTOP, &ptl, 1);
885 ptl.x + swpClient.cx/2,
886 ptl.y + swpClient.cy/2);
914 POINTL ptl;
929 ptl.x = 0; ptl.y = 0;
930 WinMapWindowPoints(pVideo->hidden->hwndClient, HWND_DESKTOP, &ptl, 1);
934 ptl.x + swpClient.cx/2,
935 ptl.y + swpClient.cy/2);
2026 POINTL ptl;
2029 ptl.x = 0; ptl.y = 0;
2030 WinMapWindowPoints(_this->hidden->hwndClient, HWND_DESKTOP, &ptl, 1);
2033 ptl.x + swpClient.cx/2,
2034 ptl.y + swpClient.cy/2);
2090 POINTL ptl;
2115 WinQueryPointerPos(HWND_DESKTOP, &ptl);
2116 WinMapWindowPoints(HWND_DESKTOP, _this->hidden->hwndClient, &ptl, 1);
2119 ptl.x = ptl.x * _this->hidden->SrcBufferDesc.uiXResolution / swpClient.cx;
2120 ptl.y = ptl.y * _this->hidden->SrcBufferDesc.uiYResolution / swpClient.cy;
2121 ptl.y = _this->hidden->SrcBufferDesc.uiYResolution - ptl.y - 1;
2122 SDL_PrivateMouseMotion(0, 0, (Sint16) (ptl.x), (Sint16) (ptl.y));