Jump to content

POINTL

From EDM2
Revision as of 18:55, 25 May 2024 by Martini (talk | contribs) (Fields)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ;