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?