intm_numMemoryBlocks;///< Number of memory blocks to use.
void*m_memoryBlocks[m_maxNumBlocks];///< Pointers to provided memory blocks or NULL if you want the system to allocate them for you with the System Allocator.
size_tm_memoryBlocksByteSize[m_maxNumBlocks];///< Sizes of different memory blocks, if m_memoryBlock is 0 the block will be allocated for you with the System Allocator.
boolm_isMultithreadAlloc;///< Set to true to enable multi threading safe allocation.
intm_numMemoryBlocks=1;///< Number of memory blocks to use.
void*m_memoryBlocks[m_maxNumBlocks]={};///< Pointers to provided memory blocks or NULL if you want the system to allocate them for you with the System Allocator.
size_tm_memoryBlocksByteSize[m_maxNumBlocks]={4*1024};///< Sizes of different memory blocks, if m_memoryBlock is 0 the block will be allocated for you with the System Allocator.
boolm_isMultithreadAlloc=true;///< Set to true to enable multi threading safe allocation.