[PATCH 2/6] gdi32: Use NtGdiEnumFonts for EnumFontFamiliesExW.
Sept. 1, 2021
7:08 a.m.
Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> --- dlls/gdi32/font.c | 100 +++++++++++++++++++++------------------------- dlls/gdi32/text.c | 43 ++++++++++++++++++++ include/ntgdi.h | 9 +++++ 3 files changed, 98 insertions(+), 54 deletions(-)
September 2021
7:13 a.m.
On 9/1/21 2:08 PM, Jacek Caban wrote:
+struct font_enum_entry +{ + DWORD type; + ENUMLOGFONTEXW lf; + NEWTEXTMETRICEXW tm; +};
FWIW, this part is not compatible with native (as indicated by comment not visible in the context). The general behaviour of NtGdiEnumFonts matches what I've seen experimenting with native, but the output format seems similar but different and I considered it not worth figuring. Jacek
1666
Age (days ago)
1666
Last active (days ago)
2 comments
2 participants
participants (2)
-
Huw Davies -
Jacek Caban