Setup.h

Go to the documentation of this file.
00001 
00002 //Luke Lenhart, 2007
00003 //See /docs/License.txt for details on how this code may be used.
00004 
00005 #pragma once
00006 
00007 // -- -- -- Framework Setup -- -- --
00009 namespace MPMA
00010 {
00014     class InitAndShutdown
00015     {
00016     public:
00017         InitAndShutdown();
00018         ~InitAndShutdown();
00019     };
00020 
00021     //Internal framework use only: registers init and shutdown callbacks
00022     void Internal_AddInitCallback(void (*pfunc)(), int priority);
00023     void Internal_AddShutdownCallback(void (*pfunc)(), int priority);
00024 }
00025 
00026 
00027 // -- -- -- Options -- -- --
00028 
00029 // -- Profiler --
00030 
00032 #define PROFILE_RELEASE
00033 
00034 
00035 // -- Memory Manager --
00036 
00038 //#define ENABLE_MEMMAN_TRACE_IN_RELEASE
00039 
00041 #define SAVE_ALLOC_CALL_STACK
00042 
00044 //#define MEM_TRACK_OLD_FREE
00045 
00046 
00047 // -- Debug --
00048 
00050 #define DEBUG_CALLSTACK_ENABLED
00051 
00053 #define DEBUGROUTER_ENABLED
00054 
00056 #define DEBUGROUTER_BUFFER_SIZE (8*1024)
00057 
00058 
00059 // -- Platform-specific --
00060 
00062 #define WIN32_ALLOW_STACK_WALK

Generated on Sat Aug 9 15:05:05 2008 for MPMA Framework by  doxygen 1.5.6