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