Home
last modified time | relevance | path

Searched refs:lpPoints (Results 1 – 8 of 8) sorted by relevance

/reactos/win32ss/user/user32/windows/
H A Dwinpos.c168 MapWindowPoints(HWND hWndFrom, HWND hWndTo, LPPOINT lpPoints, UINT cPoints) in MapWindowPoints() argument
221 lpPoints[i].x += Delta.x; in MapWindowPoints()
222 lpPoints[i].x *= Change; in MapWindowPoints()
223 lpPoints[i].y += Delta.y; in MapWindowPoints()
228 int tmp = min(lpPoints[0].x, lpPoints[1].x); in MapWindowPoints()
229 lpPoints[1].x = max(lpPoints[0].x, lpPoints[1].x); in MapWindowPoints()
230 lpPoints[0].x = tmp; in MapWindowPoints()
/reactos/win32ss/gdi/gdi32/objects/
H A Dcoord.c171 _Inout_updates_(nCount) LPPOINT lpPoints, in DPtoLP()
185 if (lpPoints == NULL) in DPtoLP()
203 return NtGdiTransformPoints(hdc, lpPoints, lpPoints, nCount, GdiDpToLp); in DPtoLP()
210 _Inout_updates_(nCount) LPPOINT lpPoints, in LPtoDP()
223 if (lpPoints == NULL) in LPtoDP()
232 return NtGdiTransformPoints(hdc, lpPoints, lpPoints, nCount, GdiLpToDp); in LPtoDP()
/reactos/win32ss/gdi/ntgdi/
H A Ddcutil.c7 GreDPtoLP(HDC hdc, LPPOINT lpPoints, INT nCount) in GreDPtoLP() argument
15 IntDPtoLP(dc, lpPoints, nCount); in GreDPtoLP()
21 GreLPtoDP(HDC hdc, LPPOINT lpPoints, INT nCount) in GreLPtoDP() argument
29 IntLPtoDP(dc, lpPoints, nCount); in GreLPtoDP()
/reactos/base/applications/mspaint/
H A Ddrawing.cpp68 Poly(HDC hdc, POINT * lpPoints, int nCount, COLORREF fg, COLORREF bg, int thickness, int style, B… in Poly() argument
83 Polygon(hdc, lpPoints, nCount); in Poly()
85 Polyline(hdc, lpPoints, nCount); in Poly()
H A Ddrawing.h18 void Poly(HDC hdc, POINT *lpPoints, int nCount, COLORREF fg, COLORREF bg, int thickness, int style,…
/reactos/win32ss/user/ntuser/
H A Dwinpos.c144 IntMapWindowPoints(PWND FromWnd, PWND ToWnd, LPPOINT lpPoints, UINT cPoints) in IntMapWindowPoints() argument
183 lpPoints[i].x += Delta.x; in IntMapWindowPoints()
184 lpPoints[i].x *= Change; in IntMapWindowPoints()
185 lpPoints[i].y += Delta.y; in IntMapWindowPoints()
190 int tmp = min(lpPoints[0].x, lpPoints[1].x); in IntMapWindowPoints()
191 lpPoints[1].x = max(lpPoints[0].x, lpPoints[1].x); in IntMapWindowPoints()
192 lpPoints[0].x = tmp; in IntMapWindowPoints()
H A Dwindow.h47 INT FASTCALL IntMapWindowPoints(PWND FromWnd, PWND ToWnd, LPPOINT lpPoints, UINT cPoints);
/reactos/sdk/include/psdk/
H A Dwinuser.h5070 _Inout_updates_(cPoints) LPPOINT lpPoints,