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