windows-nt/Source/XPSP1/NT/shell/osshell/control/scrnsave/dolphin/trace.cpp

12 lines
318 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <stdafx.h>
#include "DXSvr.h"
//***************************************************************************************
void __TraceOutput(LPCTSTR pszFormat, ...)
{
TCHAR buffer[256];
wnsprintf(buffer, ARRAYSIZE(buffer), pszFormat, (LPCTSTR)((&pszFormat)+1));
OutputDebugString(buffer);
}