Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Turbo Pascal - <b> release release marked heap space pp 120</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 RELEASE                  Release Marked Heap Space                   pp 120

 Syntax:  Release (PtrVar) ;

 Type:    Pointer

 Form:    Procedure

 Purpose: Release a point in heap space where all data from the marked point
          and higher are to be released from allocation.

 Notes:   Dispose and Mark/Release must NOT be used in the same program.
          Use DISPOSE to release only the memory allocated to the variable.
          PtrVar is a pointer variable.


 ----------------------------------------------------------------------------


 Usage:
       VAR
          PtrVar : ^Integer ;

       BEGIN
          Release (PtrVar)  ;
       END.

See Also: Dispose FreeMem GetMem Mark New

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson