Previous Next

POINTS

The POINTS structure defines the x- and y-coordinates of a point.

typedef struct tagPOINTS {
  SHORT  x;
  SHORT  y;
} POINTS, *PPOINTS, *LPPOINTS;

Members

x
Specifies the x-coordinate of the point.
y
Specifies the y-coordinate of the point.

Headers

Declared in windef.h. Include windows.h.

Comments

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.

See Also

POINT, POINTL