POINTL: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 12: | Line 12: | ||
*y - Y-coordinate | *y - Y-coordinate | ||
=== Example Code== | === Example Code === | ||
<PRE> | <PRE> | ||
typedef struct _POINTL { | typedef struct _POINTL { | ||
Revision as of 19:49, 25 June 2023
Point structure (long integers).
Type
LONG x; LONG y;
C Declaration Method
typedef struct
Fields
- x - X-coordinate
- y - Y-coordinate
Example Code
typedef struct _POINTL {
LONG x; /* X-coordinate. */
LONG y; /* Y-coordinate. */
} POINTL;
typedef POINTL * PPOINTL ;