Index: rostests/winetests/gdi32/font.c =================================================================== --- rostests/winetests/gdi32/font.c (revision 74981) +++ rostests/winetests/gdi32/font.c (working copy) @@ -21,6 +21,7 @@ #include #include +#include #include "windef.h" #include "winbase.h" @@ -3179,7 +3180,7 @@ EnumFontFamiliesExA(hdc, &enum_font, enum_font_data_proc, (LPARAM)&efd, 0); ReleaseDC(0, hdc); - trace("'%s' has %d charsets.\n", target.lfFaceName, efd.total); + printf("'%s' has %d charsets.\n", target.lfFaceName, efd.total); if (efd.total < 2) ok(0, "EnumFontFamilies is broken. Expected >= 2, got %d.\n", efd.total); else @@ -3792,6 +3793,9 @@ cmap_type cmap_type; BOOL sys_lang_non_english; +printf("Beginning Test of FontName/Charset/Height/Weight/Italic/Underline/Strikeout:\n %s/%d/%d/%d/%d/%d/%d\n", + font_name, lf->lfCharSet, lf->lfHeight, lf->lfWeight, lf->lfItalic, lf->lfUnderline, lf->lfStrikeOut); + sys_lang_non_english = PRIMARYLANGID(GetSystemDefaultLangID()) != LANG_ENGLISH; hdc = GetDC(0); @@ -4027,7 +4031,7 @@ lf.lfCharSet = DEFAULT_CHARSET; enumed = 0; EnumFontFamiliesExA(hdc, &lf, enum_truetype_font_proc, (LPARAM)&enumed, 0); - trace("Tested metrics of %d truetype fonts\n", enumed); + printf("Tested metrics of %d truetype fonts\n", enumed); ReleaseDC(0, hdc); }