Signed-off-by: Jacek Caban jacek@codeweavers.com --- dlls/gdi32/font.c | 100 +++++++++++++++++++++------------------------- dlls/gdi32/text.c | 43 ++++++++++++++++++++ include/ntgdi.h | 9 +++++ 3 files changed, 98 insertions(+), 54 deletions(-)
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