13 lines
253 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01:00
#include "pch.h"
#include "debug.h"
#ifdef _DEBUG
void FAR _cdecl TRACE(LPTSTR lpszFormat, ...)
{
TCHAR szBuf[1024];
int cchAdd;
cchAdd = wvsprintf(szBuf, lpszFormat, (LPSTR)(&lpszFormat + 1));
OutputDebugString(szBuf);
}
#endif