POINTSTOPOINT
The POINTSTOPOINT
macro copies the contents of a POINTS
POINTSTOPOINT(
POINT pt, |
// POINT structure |
POINTS pts |
// POINTS structure |
); |
|
Parameters
pt
Specifies the
POINT
pts
Specifies the
POINTS
Remarks
The POINTSTOPOINT
macro is defined as follows:
#define POINTSTOPOINT(pt, pts) { (pt).x = (SHORT)
LOWORD(pts); \
(pt).y = (SHORT)
HIWORD(pts);}
See Also