typedef struct _POINTL { /* ptl */
LONG x;
LONG y;
} POINTL, *PPOINTL;
The POINTL structure contains the coordinates of a point.
x
Specifies the horizontal coordinate of the point.
y
Specifies the vertical coordinate of the point.