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

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

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