12 Aug
2024
12 Aug
'24
10:11 p.m.
Elizabeth Figura (@zfigura) commented about dlls/shell32/enumobjects.c:
+{ + struct enum_objects *This = impl_from_IObjectCollection(iface); + return IEnumObjects_AddRef(&This->IEnumObjects_iface); +} + +static ULONG WINAPI object_collection_Release(IObjectCollection *iface) +{ + struct enum_objects *This = impl_from_IObjectCollection(iface); + return IEnumObjects_Release(&This->IEnumObjects_iface); +} + +static HRESULT WINAPI object_collection_GetCount(IObjectCollection *iface, UINT *count) +{ + struct enum_objects *This = impl_from_IObjectCollection(iface); + + FIXME("(%p/%p)->(%n): stub!\n", This, iface, count); That's not what %n is for.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6130#note_78492