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?