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

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

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