Free a memory block with given size
Source position: exec.pas line 1768
procedure ExecFreeMem( |
MemoryBlock: Pointer; |
ByteSize: LongWord |
); |
MemoryBlock |
|
A pointer to the memory block to free |
ByteSize |
|
The size of the desired block in bytes. (The operating system will automatically round this number to a multiple of the system memory chunk size) |
Free a memory block allocated using ExecAllocMem(), program should not access this memory area anymore. If a memory block is freed twice an Guru will appear AN_FreeTwice. if a wrong pointer is passed a AN_MemCorrupt is fired. The original name FreeMem is colliding with the RTL Freemem.
|
Allocate memory given certain requirements |