Main Page | Class Hierarchy | Class List | File List | Class Members | File Members

debug.cpp

Go to the documentation of this file.
00001 // 00002 // 00003 // 00004 00005 #include "pch.h" 00006 #include "debug.h" 00007 00008 #ifdef _DEBUG 00009 void FAR _cdecl 00010 TRACE( 00011 LPTSTR lpszFormat, 00012 ...) 00013 { 00014 TCHAR szBuf[1024]; 00015 int cchAdd; 00016 00017 cchAdd = wvsprintf(szBuf, lpszFormat, (LPSTR)(&lpszFormat + 1)); 00018 OutputDebugString(szBuf); 00019 } 00020 #endif 00021

Generated on Sat May 15 19:39:39 2004 for test by doxygen 1.3.7