mem.h

Go to the documentation of this file.
00001 /* mem.c located in folder COMMON                                  */
00002 
00003 // This file is used to define the dynamic memory allocation functions.
00004 
00005 
00006 #define X__Malloc(s)    LocalAlloc(LMEM_FIXED,s)
00007 #define X__Free(p)      LocalFree((HLOCAL)p)
00008 #define X__Realloc(p,s) LocalReAlloc((HLOCAL)p,s,LMEM_MOVEABLE)
00009 //#define X__Malloc(s)    malloc(s)
00010 //#define X__Free(s)      free(s)
00011 //#define X__Realloc(p,s) realloc(p,s)

Generated on Sun Apr 27 14:20:10 2014 for OpenFX by  doxygen 1.5.6