10 Jul
2025
10 Jul
'25
10:39 a.m.
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.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6766#note_109448