Important: The information in this document is obsolete and should not be used for new development.
SetEmptyRgn
To set an existing region to be empty, use theSetEmptyRgn
procedure.
PROCEDURE SetEmptyRgn (rgn:\xDDRgnHandle);
rgn
- A handle to the region to be made empty.
DESCRIPTION
TheSetEmptyRgn
procedure destroys the previous structure of the region whose handle you pass in thergn
parameter; it then sets the new structure to the empty region defined by the rectangle (0,0,0,0).SPECIAL CONSIDERATIONS
TheSetEmptyRgn
procedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.