You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
355 B
22 lines
355 B
#include "iisprov.h"
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include "debug.h"
|
|
|
|
#if DBG
|
|
|
|
void __cdecl
|
|
Trace(
|
|
LPCWSTR ptszFormat,
|
|
...)
|
|
{
|
|
WCHAR tszBuff[2048];
|
|
va_list args;
|
|
|
|
va_start(args, ptszFormat);
|
|
vswprintf(tszBuff, ptszFormat, args);
|
|
va_end(args);
|
|
OutputDebugString(tszBuff);
|
|
}
|
|
|
|
#endif // DBG
|