Typedefs for memory managment functions.
This module contains typedefs for memory allocation functions similar to the stdlib malloc/realloc/free functions. (../include/deds/memtype.h)
Part of the deds library.
typedef void* (*MX_ALLOC) (size_t bytes);
A stdlib malloc-like function.
typedef void* (*MX_REALLOC) (void* ptr, size_t bytes);
A stdlib realloc-like function.
typedef void (*MX_FREE) (void* ptr);
A stdlib free-like function.
MX_ALLOCATOR
A standard memory alloc/realloc/free tool
Generated by MXDOC 2.2 on Sun Feb 4 15:16:26 2007