Jump to content

POINTS

From EDM2

Point structure (short integers)

Type

C Declaration Method

typedef

Example Code

typedef struct _POINTS {
  SHORT     x;  /*  X-coordinate. */
  SHORT     y;  /*  Y-coordinate. */
} POINTS;

typedef   POINTS   * PPOINTS ;