See Also: Memory Management Functions
Frees a block of memory.
Free( {pSomeAddress} )
Where:
{pSomeAddress} is the Pointer to the memory block to be freed.
Free is used to return allocated memory to the system. Use Free to dispose all allocations made by Alloc.
Boolean bRetVal
Pointer aPointer
Move (Free(aPointer)) to bRetVal
If (bRetVal) Begin
// do something
End