Changeset 21901 for branches/gcc-kmk/src/win32k/include/ModuleBase.h
- Timestamp:
- Dec 16, 2011, 12:50:20 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/win32k/include/ModuleBase.h
r5093 r21901 55 55 */ 56 56 #define printIPE(a) (ModuleBase::ulInfoLevel >= ModuleBase::Error ? \ 57 ModuleBase::printf("\nerror(%d: "__FUNCTION__"): !Internal Processing Error!\n\t", __LINE__), \57 ModuleBase::printf("\nerror(%d:%s): !Internal Processing Error!\n\t", __LINE__, __FUNCTION__), \ 58 58 ModuleBase::printf a, \ 59 59 ModuleBase::printf("\n") \ 60 60 : (void)0,(void)0,(void)0 ) 61 61 #define printErr(a) (ModuleBase::ulInfoLevel >= ModuleBase::Error ? \ 62 ModuleBase::printf("error(%d: "__FUNCTION__"): ", __LINE__), \62 ModuleBase::printf("error(%d:%s: ", __LINE__, __FUNCTION__), \ 63 63 ModuleBase::printf a \ 64 64 : (void)0,(void)0 ) 65 65 #define printWar(a) (ModuleBase::ulInfoLevel >= ModuleBase::Warning ? \ 66 ModuleBase::printf("warning( "__FUNCTION__"): "), \66 ModuleBase::printf("warning(%s): ", __FUNCTION__), \ 67 67 ModuleBase::printf a \ 68 68 : (void)0,(void)0 )
Note:
See TracChangeset
for help on using the changeset viewer.