- Timestamp:
- Oct 25, 2011, 7:06:33 PM (14 years ago)
- Location:
- branches/gcc-kmk
- Files:
-
- 2 edited
-
include/win/debugtools.h (modified) (3 diffs)
-
src/kernel32/conodin32.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/include/win/debugtools.h
r21717 r21741 9 9 10 10 #ifndef __MISC_H__ 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 11 15 12 16 #ifdef DEBUG … … 52 56 void SYSTEM DecreaseLogCount(); 53 57 void SYSTEM IncreaseLogCount(); 58 59 #ifdef __cplusplus 60 } // extern "C" 61 #endif 54 62 55 63 #endif //__MISC_H__ … … 169 177 # define MESSAGE WriteLog 170 178 #else 171 # define TRACE 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)172 # define TRACE_(ch) 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)173 # define FIXME 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)174 # define FIXME_(ch) 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)175 # define WARN 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)176 # define WARN_(ch) 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)177 # define ERR_(ch) 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)178 # define ERR 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)179 # define DPRINTF 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)180 # define MESSAGE 1 ? (void)0 : (void)((int (*)(c har *, ...)) NULL)179 # define TRACE 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 180 # define TRACE_(ch) 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 181 # define FIXME 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 182 # define FIXME_(ch) 1 ? (void)0 : (void)((int (*)(constchar *, ...)) NULL) 183 # define WARN 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 184 # define WARN_(ch) 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 185 # define ERR_(ch) 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 186 # define ERR 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 187 # define DPRINTF 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 188 # define MESSAGE 1 ? (void)0 : (void)((int (*)(const char *, ...)) NULL) 181 189 #endif 182 190 #undef __GET_DEBUGGING -
branches/gcc-kmk/src/kernel32/conodin32.cpp
r8774 r21741 237 237 if (pNew) 238 238 { 239 pNew->pfnHandler = pfnHandler;239 pNew->pfnHandler = (void *)pfnHandler; 240 240 pNew->pPrev = NULL; 241 241
Note:
See TracChangeset
for help on using the changeset viewer.
