summaryrefslogtreecommitdiff
path: root/protocols/ConnectionNotify/src/debug.cpp
blob: 8abe549a2221df7e63198a2dd491be658ef1c5a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stdafx.h"

void _OutputDebugString(wchar_t* lpOutputString, ...)
{
	CMStringW format;
	va_list args;
	va_start(args, lpOutputString);
	format.FormatV(lpOutputString, args);
	va_end(args);

	format.AppendChar('\n');
	OutputDebugString(format);
}