Alfred Agrell (@Alcaro) commented about dlls/shell32/enumobjects.c:
+{ + struct enum_objects *This = impl_from_IEnumObjects(iface); + + FIXME("(%p/%p %ld, %p)->(%p, %p): stub!\n", This, iface, celt, debugstr_guid(riid), rgelt, celtFetched); + + if (celtFetched) + celtFetched = 0; + + return S_FALSE; +} + +static HRESULT WINAPI enum_objects_Skip(IEnumObjects *iface, ULONG celt) +{ + struct enum_objects *This = impl_from_IEnumObjects(iface); + + FIXME("(%p/%p %ld): stub!\n", This, iface, celt); Trailing whitespace here too. (There may be a duplicate comment on this line, gitlab glitched out somehow and I can't determine if the duplicate actually exists or not.)
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6130#note_76998