Changeset 513 for OCO/branches/DAZ/include/dbgos2.h
- Timestamp:
- Jul 12, 2010, 12:57:31 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OCO/branches/DAZ/include/dbgos2.h
r507 r513 24 24 /* dprintf is used to output info into the log for the debug version */ 25 25 #ifdef DEBUG 26 #define DBGCALLCONV FAR 27 26 28 #define dprintf(a) PrintfOut a 27 29 #define dprintf1(a) if(dbglevel >= 1) PrintfOut a … … 29 31 #define dprintf3(a) if(dbglevel >= 3) PrintfOut a 30 32 #define dprintf4(a) if(dbglevel >= 4) PrintfOut a 33 34 #define DebugInt3() //_asm int 3 DAZ temporarily taken out of debug build to prevent traps 35 31 36 #else 37 // notdef DEBUG 38 #define DBGCALLCONV NEAR 39 32 40 #define dprintf(a) // 33 41 #define dprintf1(a) // … … 35 43 #define dprintf3(a) // 36 44 #define dprintf4(a) // 37 #endif38 45 39 #ifdef DEBUG40 #define DebugInt3() //_asm int 3 DAZ temporarily taken out of debug build to prevent traps41 #else42 46 #define DebugInt3() //_asm int 3 43 #endif44 47 45 #ifdef DEBUG46 #define DBGCALLCONV FAR47 #else48 #define DBGCALLCONV NEAR49 48 #endif 50 49
Note:
See TracChangeset
for help on using the changeset viewer.