virtual void* Realloc(void* oldPtr, UPInt newSize) = 0;
Realloc reallocates memory set by Alloc. Realloc does not support custom alignment specified during allocation.
Parameters |
Description |
void* oldPtr |
Pointer to the block to be reallocated. |
UPInt newSize |
New size of the memory block. |
Pointer to the reallocated block of memory.