[PATCH 2/6] gdi32: Use NtGdiEnumFonts for EnumFontFamiliesExW.
Sept. 1, 2021
12:08 p.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(-)
Sept. 1, 2021
12:13 p.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
1845
Age (days ago)
1845
Last active (days ago)
2 comments
2 participants
participants (2)
-
Huw Davies -
Jacek Caban