Jump to content

POINTL

From EDM2
Revision as of 20:49, 25 June 2023 by Martini (talk | contribs)

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 ;