1 Aug
2025
1 Aug
'25
7:20 a.m.
Alfred Agrell (@Alcaro) commented about dlls/dwrite/main.c:
+{ + FIXME("%p, %p stub!\n", iface, context); + return E_NOTIMPL; +} + +static HRESULT WINAPI font_download_queue_CancelDownload(IDWriteFontDownloadQueue *iface) { - FIXME("%p, %p: stub\n", iface, queue); + FIXME("%p stub!\n", iface); + return E_NOTIMPL; +}
+static UINT64 WINAPI font_download_queue_GetGenerationCount(IDWriteFontDownloadQueue *iface) +{ + FIXME("%p stub!\n", iface); return E_NOTIMPL; This function doesn't return HRESULT, so 0 would look cleaner to me.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8689#note_111784