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".