Changeset 21916 for trunk/src/win32k/include/ModuleBase.h
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/win32k/include/ModuleBase.h
r5093 r21916 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.