24 Jul
2023
24 Jul
'23
6:13 p.m.
Gabriel Ivăncescu (@insn) commented about dlls/mshtml/mutation.c:
+ This->node = NULL; + } + release_dispex(&This->dispex); + IDispatch_Release(This->callback); + This->callback = NULL; + free(This); + } + + return ref; +} + +static HRESULT WINAPI MutationObserver_GetTypeInfoCount(IWineMSHTMLMutationObserver *iface, UINT *pctinfo) +{ + struct mutation_observer *This = impl_from_IWineMSHTMLMutationObserver(iface); + FIXME("(%p)->(%p)\n", This, pctinfo); + return E_NOTIMPL; Why not forward this as well?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3391#note_40002