49typedef void * MemoryPool_t;
61MemoryPool_t CreateMemoryPool(
int itemSize,
78int AddExtraMemoryToPool( MemoryPool_t pool,
94MemoryPool_t CreateMemoryPoolStatic(
int ItemSize,
95 void *PreallocatedMemory,
96 int PreallocatedMemorySize,
110int AddExtraMemoryToPoolStatic( MemoryPool_t pool,
111 void *PreallocatedMemory,
112 int PreallocatedMemorySize);
123void *MemoryPoolAllocate(MemoryPool_t pool);
135void MemoryPoolFree(MemoryPool_t pool,
void *memory);