00001 // --------------------------------------------------------------------------------------------------------------------------------- 00002 // Copyright 2000, Paul Nettle. All rights reserved. 00003 // 00004 // You are free to use this source code in any commercial or non-commercial product. 00005 // 00006 // nommgr.h - Memory manager & tracking software 00007 // 00008 // The most recent version of this software can be found at: ftp://ftp.GraphicsPapers.com/pub/ProgrammingTools/MemoryManagers/ 00009 // 00010 // [NOTE: Best when viewed with 8-character tabs] 00011 // --------------------------------------------------------------------------------------------------------------------------------- 00012 00013 #ifdef new 00014 #undef new 00015 #endif 00016 00017 #ifdef delete 00018 #undef delete 00019 #endif 00020 00021 #ifdef malloc 00022 #undef malloc 00023 #endif 00024 00025 #ifdef calloc 00026 #undef calloc 00027 #endif 00028 00029 #ifdef realloc 00030 #undef realloc 00031 #endif 00032 00033 #ifdef free 00034 #undef free 00035 #endif 00036 00037 // --------------------------------------------------------------------------------------------------------------------------------- 00038 // nommgr.h - End of file 00039 // ---------------------------------------------------------------------------------------------------------------------------------