This routine allocates the amount of memory specified and then adds it to the free list. The free list will be extended (if required). If there is not enough memory to complete the call, a null is returned.
Note that FreeAlloc not only allocates the requested memory but also records the memory in the free list.
INPUTS
free
a pointer to a FreeList structure
len
the length of the memory to be recorded; must be > 0
type
the type of memory to be allocated
RESULT
memory
a pointer to the newly allocated memory chunk or zero if the call failed.
NOTES
This function was implemented in all icon.library versions starting with V36. However, it was never documented.