Functions | |
Pointer | Concept_Malloc (Int32 size) |
Memory allocation. More... | |
Pointer | Concept_Realloc (Pointer buffer, Int32 currentSize, Int32 targetSize) |
Memory re allocation. More... | |
void | Concept_Free (Pointer &buffer) |
Memory free. More... | |
void Concept_Free | ( | Pointer & | buffer | ) |
Memory free.
buffer | The memory buffer. |
Pointer Concept_Malloc | ( | Int32 | size | ) |
Memory allocation.
size | The size. |
Memory re allocation.
buffer | The current memory buffer. |
currentSize | The current memory buffer size. |
targetSize | The targeted size. |