14 Jul
2025
14 Jul
'25
9:34 a.m.
Nikolay Sivov (@nsivov) commented about dlls/propsys/propsys_main.c:
+ +static HRESULT WINAPI propdesc_GetEditInvitation( IPropertyDescription *iface, LPWSTR *invite ) +{ + FIXME( "(%p, %p) stub!\n", iface, invite ); + return E_NOTIMPL; +} + +static HRESULT WINAPI propdesc_GetTypeFlags( IPropertyDescription *iface, PROPDESC_TYPE_FLAGS mask, + PROPDESC_TYPE_FLAGS *flags ) +{ + struct property_description *propdesc = impl_from_IPropertyDescription( iface ); + + TRACE( "(%p, %#x, %p)\n", iface, mask, flags ); + *flags = mask & propdesc->type_flags; + return E_NOTIMPL; +} Do you need this? And why E_NOTIMPL?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6892#note_109730