Important: The information in this document is obsolete and should not be used for new development.
KillPoly
To release the memory occupied by a polygon, use theKillPolyprocedure.
PROCEDURE KillPoly (poly:\xDDPolyHandle);
poly- A handle to the polygon to dispose of.
DESCRIPTION
TheKillPolyprocedure releases the memory used by the polygon whose handle you pass in thepolyparameter. UseKillPolyonly when you're completely through with a polygon.SPECIAL CONSIDERATIONS
TheKillPolyprocedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.SEE ALSO
Listing 3-10 on page 3-26 illustrates how to use this procedure.