POLYGON

From EDM2
Jump to: navigation, search

Polygon structure.

Example Code

typedef struct _POLYGON {
  ULONG       ulPoints;  /*  Number of points in array. */
  PPOINTL     aPointl;   /*  Array of points. */
} POLYGON;

typedef POLYGON *PPOLYGON;