2025-04-27 07:49:33 -04:00

12 lines
329 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);
}