16 May
2025
16 May
'25
5:44 p.m.
Alfred Agrell (@Alcaro) commented about dlls/shell32/shellord.c:
+ return E_NOINTERFACE; +} + +static ULONG WINAPI IDummyDropSource_AddRef(IDropSource *iface) +{ + IDummySource *This = impl_from_IDropSource(iface); + TRACE("(%p)->(%lu)\n", This, This->Ref); + return InterlockedIncrement(&This->Ref); +} + +static ULONG WINAPI IDummyDropSource_Release(IDropSource *iface) +{ + ULONG refcount; + IDummySource *This = impl_from_IDropSource(iface); + TRACE("(%p)->(%lu)\n", This, This->Ref); + refcount = InterlockedDecrement(&This->Ref); Is that double space intentional?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8063#note_103642