POLYGON: Difference between revisions
Appearance
Created page with "Polygon structure. ==Example Code== <PRE> typedef struct _POLYGON { ULONG ulPoints; →Number of points in array.: PPOINTL aPointl; /* Array of points. *..." |
(No difference)
|
Latest revision as of 16:44, 8 February 2020
Polygon structure.
Example Code
typedef struct _POLYGON {
ULONG ulPoints; /* Number of points in array. */
PPOINTL aPointl; /* Array of points. */
} POLYGON;
typedef POLYGON *PPOLYGON;