Point structure (long integers).
LONG x; LONG y;
typedef struct
typedef struct _POINTL { LONG x; /* X-coordinate. */ LONG y; /* Y-coordinate. */ } POINTL; typedef POINTL * PPOINTL ;