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 theKillPoly
procedure.
PROCEDURE KillPoly (poly:\xDDPolyHandle);
poly
- A handle to the polygon to dispose of.
DESCRIPTION
TheKillPoly
procedure releases the memory used by the polygon whose handle you pass in thepoly
parameter. UseKillPoly
only when you're completely through with a polygon.SPECIAL CONSIDERATIONS
TheKillPoly
procedure 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.