Jump to content

POINTS

From EDM2
Revision as of 23:48, 14 April 2025 by Martini (talk | contribs) (Created page with "Point structure (short integers) == Type == === C Declaration Method === typedef === Example Code=== <pre> typedef struct _POINTS { SHORT x; X-coordinate.: SHORT y; Y-coordinate.: } POINTS; typedef POINTS * PPOINTS ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ;