12 Aug
2024
12 Aug
'24
10:11 p.m.
Elizabeth Figura (@zfigura) commented about dlls/shell32/enumobjects.c:
+} + +static HRESULT WINAPI object_collection_AddFromArray(IObjectCollection *iface, IObjectArray *source_array) +{ + struct enum_objects *This = impl_from_IObjectCollection(iface); + + FIXME("(%p/%p %p): stub!\n", This, iface, source_array); + + return E_NOTIMPL; +} + +static HRESULT WINAPI object_collection_RemoveObjectAt(IObjectCollection *iface, UINT index) +{ + struct enum_objects *This = impl_from_IObjectCollection(iface); + + FIXME("(%p/%p %i): stub!\n", This, iface, index); Unsigned values use %u. Also, why trace both the object and interface pointer?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6130#note_78491