12 lines
318 B
C++
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);
|
|
}
|