http://bugs.winehq.org/show_bug.cgi?id=7571
------- Additional Comments From dmitry@codeweavers.com 2007-20-05 22:59 -------
- return EnumFontFamiliesExA( hDC, &lf, efproc, lpData, 0 );
- return EnumFontFamiliesExA( hDC, &lf, efproc, lpData,
ENUM_FONT_FAMILIES );
I several times noted that introducing Wine own, internal flags to public APIs is not acceptable.
While EnumFontFamilies() enumerated only 3 fonts for RUSSIAN_CHARSET, EnumFontFamiliesEx() enumerated 30.
Are you sure that it's not the other way around? Here is a comment a added to test_EnumFontFamilies():
/* Observed behaviour: EnumFontFamilies enumerates aliases like "Arial Cyr" * while EnumFontFamiliesEx doesn't. */