19 Aug
2023
19 Aug
'23
8:52 p.m.
Esme Povirk (@madewokherd) commented about dlls/gdiplus/pathiterator.c:
GpStatus WINGDIPAPI GdipPathIterNextPathType(GpPathIterator* iter, INT* result, BYTE* type, INT* start, INT* end) { - FIXME("(%p, %p, %p, %p, %p) stub\n", iter, result, type, start, end); + INT i, count; + TRACE("(%p, %p, %p, %p, %p)\n", iter, result, type, start, end);
if (!iter || !result || !type || !start || !end) return InvalidParameter;
- return NotImplemented; + i = iter->pathtype_pos; + count = iter->subpath_pos; I don't think the name `count` is accurate, and it's been confusing me. I'd say this is a "stop index", not a "count".
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3581#note_42779