windows-nt/Source/XPSP1/NT/shell/osshell/control/scrnsave/dolphin/trace.cpp
2020-09-26 16:20:57 +08:00

12 lines
318 B
C++

#include <stdafx.h>
#include "DXSvr.h"
//***************************************************************************************
void __TraceOutput(LPCTSTR pszFormat, ...)
{
TCHAR buffer[256];
wnsprintf(buffer, ARRAYSIZE(buffer), pszFormat, (LPCTSTR)((&pszFormat)+1));
OutputDebugString(buffer);
}