* builds/win32/ftdebug.c (FT_Message): Send debug output to the

console as well as to the debugger.
This commit is contained in:
Werner Lemberg 2007-06-14 06:56:52 +00:00
parent 46dde4953a
commit 367f301b44
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-06-14 Dmitry Timoshkov <dmitry@codeweavers.com>
* builds/win32/ftdebug.c (FT_Message): Send debug output to the
console as well as to the debugger.
2006-06-14 Werner Lemberg <wl@gnu.org>
* src/autofit/aflatin.c (af_latin_uniranges): Expand structure to

View File

@ -63,6 +63,8 @@
va_start( ap, fmt );
vprintf( fmt, ap );
/* send the string to the debugger as well */
vsprintf( buf, fmt, ap );
OutputDebugStringA( buf );
va_end( ap );