00001 /* -- 00002 00003 /* memory.c folder ANIMATE Memory allocation functions used by DLL's */ 00004 /* to allocate memory in the main prorgam's address space and use */ 00005 /* the same mechanism */ 00006 00007 00008 void *X__AllocateRam(long size){ 00009 return X__Malloc(size); 00010 } 00011 00012 void X__FreeRam(void *vp){ 00013 X__Free(vp); 00014 } 00015