Previous Next

POINTL

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

typedef struct _POINTL {
  LONG  x;
  LONG  y;
} POINTL, *PPOINTL;

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 POINTL structure is identical to the POINT structure.

See Also

POINT, POINTS