Zhiyi Zhang (@zhiyi) commented about dlls/wintypes/propertyset.c:
*out = iface;
IUnknown_AddRef( (IUnknown *)*out );
return S_OK;
- }
- FIXME( "%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid( iid ) );
- return E_NOINTERFACE;
+}
+static ULONG STDMETHODCALLTYPE propertyset_AddRef( IPropertySet *iface ) +{
- struct propertyset *impl;
- TRACE( "(%p)\n", iface );
- impl = impl_from_IPropertySet( iface );
Let's use "struct propertyset *impl = impl_from_IPropertySet( iface );". Same at other places.