MapWindowPoints function user32
The MapWindowPoints function converts (maps) a set of points from a coordinate space relative to one window to a coordinate space relative to another window.
int MapWindowPoints(
HWND hWndFrom,
HWND hWndTo,
LPPOINT lpPoints,
UINT cPoints
);
Implementation
int MapWindowPoints(
int hWndFrom,
int hWndTo,
Pointer<POINT> lpPoints,
int cPoints,
) => _MapWindowPoints(hWndFrom, hWndTo, lpPoints, cPoints);