blob: d7c32e755b6b8d7a6ad5c8ed73980f0b6ea55e76 (
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);
}
|