POINTL
Appearance
Point structure (long integers).
Type
LONG x; LONG y;
C Declaration Method
typedef struct
Fields
- x (LONG)
- X-coordinate
- y (LONG)
- Y-coordinate
Example Code
typedef struct _POINTL {
LONG x; /* X-coordinate. */
LONG y; /* Y-coordinate. */
} POINTL;
typedef POINTL * PPOINTL ;