The POINTS structure defines the x- and y-coordinates of a point.
typedef struct tagPOINTS {
SHORT x;
SHORT y;
} POINTS, *PPOINTS, *LPPOINTS;
Declared in windef.h. Include windows.h.
The POINTS structure is similar to the POINT and POINTL structures. The difference is that the members of the POINTS structure are of type SHORT, while those of the other two structures are of type LONG.