2 Feb
2024
2 Feb
'24
5:45 p.m.
Esme Povirk (@madewokherd) commented about dlls/gdiplus/gdiplus_private.h:
}
+/* Represents a string section and the font it should use. */ +struct gdip_font_link_section { + struct list entry; + DWORD start; /* The starting index of the string where the font applies. */ + DWORD end; /* The end index of the string. */ + GpFont *font; +}; + +struct gdip_font_link_info { + GDIPCONST GpFont *base_font; + struct list sections; +}; + +struct gdip_font_link_section *get_font_link_section(struct gdip_font_link_info *font_link_info, DWORD index); This function does not exist.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4082#note_59942